diff --git a/CHANGELOG.md b/CHANGELOG.md index a14b7939..15f8c954 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## 0.20.3 (2018/11/1) +* __Bug Fix__: [Cannot read property 'toLowerCase' of null](https://github.com/Huachao/vscode-restclient/issues/219) +* __Bug Fix__: [Fix incorrect JSON body rendering for variable reference syntax](https://github.com/Huachao/vscode-restclient/issues/264) +* __Bug Fix__: [Do not decode percent encoding in response body](https://github.com/Huachao/vscode-restclient/issues/280) +* __Bug Fix__: [Do not use system environment variables if proxy setting already set](https://github.com/Huachao/vscode-restclient/issues/273) +* __Bug Fix__: [Handle compressed responses](https://github.com/Huachao/vscode-restclient/issues/282) +* __Improvement__: Use new `setTextDocumentLanguage` API to refacotr text document view rendering + ## 0.20.2 (2018/10/10) * __Bug Fix__: [Recognize file variable value contains whitespaces](https://github.com/Huachao/vscode-restclient/issues/264) diff --git a/README.md b/README.md index 35304664..1f841fb4 100644 --- a/README.md +++ b/README.md @@ -489,7 +489,7 @@ exchange | Preview the whole HTTP exchange(request and response) ## Settings * `rest-client.followredirect`: Follow HTTP 3xx responses as redirects. (Default is __true__) -* `rest-client.defaultHeaders`: If particular headers are omitted in request header, these will be added as headers for each request. (Default is `{ "User-Agent": "vscode-restclient" }`) +* `rest-client.defaultHeaders`: If particular headers are omitted in request header, these will be added as headers for each request. (Default is `{ "User-Agent": "vscode-restclient", "Accept-Encoding": "gzip" }`) * `rest-client.timeoutinmilliseconds`: Timeout in milliseconds. 0 for infinity. (Default is __0__) * `rest-client.showResponseInDifferentTab`: Show response in different tab. (Default is __false__) * `rest-client.rememberCookiesForSubsequentRequests`: Save cookies from `Set-Cookie` header in response and use for subsequent requests. (Default is __true__) diff --git a/package.json b/package.json index 3fa1c9c4..07027984 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "rest-client", "displayName": "REST Client", "description": "REST Client for Visual Studio Code", - "version": "0.20.2", + "version": "0.20.3", "publisher": "humao", "author": { "name": "Huachao Mao",