From bdf1309f003c0b164d93844776f153686af9c87a Mon Sep 17 00:00:00 2001 From: Huachao Mao Date: Wed, 31 Jul 2019 15:58:23 +0800 Subject: [PATCH] Bump version to 0.22.0 --- CHANGELOG.md | 11 +++++++ README.md | 76 +++++++++++++++++++++++++++++++++------------ images/loading.gif | Bin 14763 -> 0 bytes package.json | 2 +- 4 files changed, 68 insertions(+), 21 deletions(-) delete mode 100644 images/loading.gif diff --git a/CHANGELOG.md b/CHANGELOG.md index e6dc6ea5..113c99f8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +## 0.22.0 (2019/7/31) +* __Feature__: [Add support for `GraphQL`](https://github.com/Huachao/vscode-restclient/pull/384) ([@ferronrsmith](https://github.com/ferronrsmith)) +* __Feature__: [Add new system variable - local machine environment variable](https://github.com/Huachao/vscode-restclient/pull/366) ([@mtnrbq](https://github.com/mtnrbq)) +* __Improvement__: [Reduce the extension size by excluding unnecessary images](https://github.com/Huachao/vscode-restclient/pull/397) ([@badre429](https://github.com/badre429)) +* __Improvement__: Reduce the extension size by excluding `node_modules` directory +* __Improvement__: Replace spinner with octicon animation +* __Improvement__: Upgrade httpsnippet package to support new languages and frameworks, e.g., `PowerShell`, `Fetch API` +* __Bug Fix__: [Do not swallow last character in datetime format string](https://github.com/Huachao/vscode-restclient/issues/367) +* __Bug Fix__: [Allow request body file path contains whitespaces](https://github.com/Huachao/vscode-restclient/issues/376) +* __Bug Fix__: [Support extract JSON body with pure string payload with `$`](https://github.com/Huachao/vscode-restclient/issues/266) + ## 0.21.3 (2019/5/15) * __Breaking Change__: Remove support for setting `rest-client.showEnvironmentStatusBarItem` in favor of automatically hide status bar for non-http file feature * __Feature__: [Support custom display formats in datetime system variable](https://github.com/Huachao/vscode-restclient/pull/361) ([@connelhooley](https://github.com/connelhooley)) diff --git a/README.md b/README.md index a4de2cdd..9dc35565 100644 --- a/README.md +++ b/README.md @@ -6,9 +6,10 @@ REST Client allows you to send HTTP request and view the response in Visual Stud ## Main Features * Send/Cancel/Rerun __HTTP request__ in editor and view response in a separate pane with syntax highlight -* Send __CURL command__ in editor and copy HTTP request as `CURL command` +* Send __GraphQL query__ and author __GraphQL variables__ in editor +* Send __cURL command__ in editor and copy HTTP request as `cURL command` * Auto save and view/clear request history -* Support _MULTIPLE_ requests in the same file (separated by `###` delimiter) +* Organize _MULTIPLE_ requests in the same file (separated by `###` delimiter) * View image response directly in pane * Save raw response and response body only to local disk * Fold and unfold response body @@ -25,7 +26,7 @@ REST Client allows you to send HTTP request and view the response in Visual Stud - Auto completion and hover support for both __environment__, __file__ and __request__ custom variables - Diagnostic support for __request__ and __file__ custom variables - Go to definition and find all references support _ONLY_ for __file__ custom variables - - Provide system dynamic variables `{{$guid}}`, `{{$randomInt min max}}`, `{{$timestamp [offset option]}}`, `{{$datetime rfc1123|iso8601 [offset option]}}`, and `{{$aadToken [new] [public|cn|de|us|ppe] [] [aud:]}}` + - Provide system dynamic variables `{{$guid}}`, `{{$randomInt min max}}`, `{{$timestamp [offset option]}}`, `{{$datetime rfc1123|iso8601 [offset option]}}`, `{{$processEnv [%]envVarName}}`, and `{{$aadToken [new] [public|cn|de|us|ppe] [] [aud:]}}` - Easily create/update/delete environments and environment variables in setting file - File variables can reference both custom and system variables - Support environment switch @@ -60,18 +61,18 @@ content-type: application/json "time": "Wed, 21 Oct 2015 18:27:50 GMT" } ``` -Once you prepared a request, click the `Send Request` link above the request, or use shortcut `Ctrl+Alt+R`(`Cmd+Alt+R` for macOS), or right-click in the editor and then select `Send Request` in the menu, or press `F1` and then select/type `Rest Client: Send Request`, the response will be previewed in a separate __webview__ panel of Visual Studio Code. If you'd like to use the full power of searching, selecting or manipulating in Visual Studio Code, you can also preview response in __an untitled document__ by setting `rest-client.previewResponseInUntitledDocument` to `true`, by default the value is `false`. When a request is issued, ![cloud upload](https://raw.githubusercontent.com/Huachao/vscode-restclient/master/images/loading.gif) will be displayed in the status bar, after receiving the response, the icon will be changed to the duration and response size. +Once you prepared a request, click the `Send Request` link above the request, or use shortcut `Ctrl+Alt+R`(`Cmd+Alt+R` for macOS), or right-click in the editor and then select `Send Request` in the menu, or press `F1` and then select/type `Rest Client: Send Request`, the response will be previewed in a separate __webview__ panel of Visual Studio Code. If you'd like to use the full power of searching, selecting or manipulating in Visual Studio Code, you can also preview response in __an untitled document__ by setting `rest-client.previewResponseInUntitledDocument` to `true`. Once a request is issued, a waiting spin icon will be displayed in the status bar until the response is received. After that the icon will be replaced with the total duration and response size. -You can view the breakdown of the response time when hovering over the duration status bar, you could view the duration details of _Socket_, _DNS_, _TCP_, _First Byte_ and _Download_. +You can view the breakdown of the response time when hovering over the total duration in status bar, you could view the duration details of _Socket_, _DNS_, _TCP_, _First Byte_ and _Download_. -When hovering over the response size status bar, you could view the breakdown response size details of _headers_ and _body_. +When hovering over the response size in status bar, you could view the breakdown response size details of _headers_ and _body_. > All the shortcuts in REST Client Extension are __ONLY__ available for file language mode `http` and `plaintext`. > __Send Request__ link above each request will only be visible when the request file is in `http` mode, more details can be found in [http language section](#http-language). ### Select Request Text -You may even want to save numerous requests in the same file and execute any of them as you wish easily. REST Client extension could recognize any line begins with three or more consecutive `#` as a delimiter between requests. Place the cursor anywhere between the delimiters, issuing the request as above, and it will first parse the text between the delimiters as request and then send it out. +You may even want to save numerous requests in the same file and execute any of them as you wish easily. REST Client extension could recognize requests separated by lines begin with three or more consecutive `#` as a delimiter. Place the cursor anywhere between the delimiters, issuing the request as above, and the underlying request will be sent out. ```http GET https://example.com/comments/1 HTTP/1.1 @@ -89,7 +90,7 @@ content-type: application/json "time": "Wed, 21 Oct 2015 18:27:50 GMT" } ``` -`REST Client Extension` also provides another flexibility that you can use mouse to highlight the text in file as request text. +REST Client extension also provides the flexibility that you can send the request with your selected text in editor. ## Install Press `F1`, type `ext install` then search for `rest-client`. @@ -146,7 +147,7 @@ Authorization: token xxx ``` -You can also specify file path to use as a body, which starts with `< `, the file path can be either in absolute or relative(relative to workspace root or current http file) formats: +You can also specify file path to use as a body, which starts with `< `, the file path(*whitepsaces* should be preserved) can be either in absolute or relative(relative to workspace root or current http file) formats: ```http POST https://example.com/comments HTTP/1.1 Content-Type: application/xml @@ -191,8 +192,44 @@ name=foo > When your mouse is over the document link, you can `Ctrl+Click`(`Cmd+Click` for macOS) to open the file in a new tab. -## Making CURL Request -![CURL Request](https://raw.githubusercontent.com/Huachao/vscode-restclient/master/images/curl-request.png) +## Making GraphQL Request +With [GraphQL](https://www.graphql.com/) support in REST Client extension, you can author and send `GraphQL` query using the request body. Besides that you can also author GraphQL variables in the request body. GraphQL variables part in request body is optional, you also need to add a **blank line** between GraphQL query and variables if you need it. + +You can specify a request as `GraphQL Request` by adding a custom request header `X-Request-Type: GraphQL` in your headers. The following code illustrates this: +```http +POST https://api.github.com/graphql +Content-Type: application/json +Authorization: Bearer xxx +X-REQUEST-TYPE: GraphQL + +query ($name: String!, $owner: String!) { + repository(name: $name, owner: $owner) { + name + fullName: nameWithOwner + description + diskUsage + forkCount + stargazers(first: 5) { + totalCount + nodes { + login + name + } + } + watchers { + totalCount + } + } +} + +{ + "name": "vscode-restclient", + "owner": "Huachao" +} +``` + +## Making cURL Request +![cURL Request](https://raw.githubusercontent.com/Huachao/vscode-restclient/master/images/curl-request.png) We add the capability to directly run [curl request](https://curl.haxx.se/) in REST Client extension. The issuing request command is the same as raw HTTP one. REST Client will automatically parse the request with specified parser. `REST Client` doesn't fully support all the options of `cURL`, since underneath we use `request` library to send request which doesn't accept all the `cURL` options. Supported options are listed below: @@ -211,7 +248,7 @@ Sometimes you may want to get the curl format of an http request quickly and sav Once you want to cancel a processing request, use shortcut `Ctrl+Alt+K`(`Cmd+Alt+K` for macOS), or press `F1` and then select/type `Rest Client: Cancel Request`. ## Rerun Last Request -Sometimes you may want to refresh the API response, now you could do it simply using shortcut `Ctrl+Alt+L`(`Cmd+Alt+L` for macOS), or press `F1` and then select/type `Rest Client: Rerun Last Request` to rerun last request. +Sometimes you may want to refresh the API response, now you could do it simply using shortcut `Ctrl+Alt+L`(`Cmd+Alt+L` for macOS), or press `F1` and then select/type `Rest Client: Rerun Last Request` to rerun the last request. ## Request History ![request-history](https://raw.githubusercontent.com/Huachao/vscode-restclient/master/images/request-history.png) @@ -242,7 +279,7 @@ HTTP Basic Auth is a widely used protocol for simple username/password authentic 1. Add the value of Authorization header in the base64 encoding of `username:password`. 2. Add the value of Authorization header in the raw value of `username` and `password`, which is separated by space. REST Client extension will do the base64 encoding automatically. -The corresponding examples are as follows, they are totally equivalent: +The corresponding examples are as follows, they are equivalent: ```http GET https://httpbin.org//basic-auth/user/passwd HTTP/1.1 Authorization: Basic dXNlcjpwYXNzd2Q= @@ -294,7 +331,7 @@ Azure AD is Microsoft’s multi-tenant, cloud-based directory and identity manag ## Generate Code Snippet ![Generate Code Snippet](https://raw.githubusercontent.com/Huachao/vscode-restclient/master/images/code-snippet.gif) -Once you’ve finalized your request in REST Client extension, you might want to make the same request from your own source code. We allow you to generate snippets of code in various languages and libraries that will help you achieve this. Once you prepared a request as previously, use shortcut `Ctrl+Alt+C`(`Cmd+Alt+C` for macOS), or right-click in the editor and then select `Generate Code Snippet` in the menu, or press `F1` and then select/type `Rest Client: Generate Code Snippet`, it will pop up the language pick list, as well as library list. After you selected the code snippet language/library you want, the generated code snippet will be previewed in a separate panel of Visual Studio Code, you can click the `Copy Code Snippet` icon in the tab title to copy it to clipboard. +Once you’ve finalized your request in REST Client extension, you might want to make the same request from your source code. We allow you to generate snippets of code in various languages and libraries that will help you achieve this. Once you prepared a request as previously, use shortcut `Ctrl+Alt+C`(`Cmd+Alt+C` for macOS), or right-click in the editor and then select `Generate Code Snippet` in the menu, or press `F1` and then select/type `Rest Client: Generate Code Snippet`, it will pop up the language pick list, as well as library list. After you selected the code snippet language/library you want, the generated code snippet will be previewed in a separate panel of Visual Studio Code, you can click the `Copy Code Snippet` icon in the tab title to copy it to clipboard. ## HTTP Language Add language support for HTTP request, with features like __syntax highlight__, __auto completion__, __code lens__ and __comment support__, when writing HTTP request in Visual Studio Code. By default, the language association will be automatically activated in two cases: @@ -480,18 +517,17 @@ For example: Define a shell environment variable in `.bashrc` or similar on wind } ``` - You can refer directly to the key (e.g. ```PRODSECRET```) in the script, for example if running in the production environment + You can refer directly to the key (e.g. `PRODSECRET`) in the script, for example if running in the production environment ```http - ### Lookup PRODSECRET from local machine environment + # Lookup PRODSECRET from local machine environment GET https://{{host}}/{{version}}/values/item1?user={{$processEnv USERNAME}} Authorization: {{$processEnv PRODSECRET}} ``` - or, it can be rewritten to indirectly refer to the key using an extension environment setting (e.g. ```%secret```) to be environment independent using the optional ```%``` modifier. + or, it can be rewritten to indirectly refer to the key using an extension environment setting (e.g. `%secretKey`) to be environment independent using the optional `%` modifier. ```http - ### Use secretKey from extension environment settings to determine - ### which local machine environment variable to use + # Use secretKey from extension environment settings to determine which local machine environment variable to use GET https://{{host}}/{{version}}/values/item1?user={{$processEnv USERNAME}} - Authorization: {{$processEnv %secret}} + Authorization: {{$processEnv %secretKey}} ``` `envVarName`: Mandatory. Specifies the local machine environment variable diff --git a/images/loading.gif b/images/loading.gif deleted file mode 100644 index 7b1a39572c29b256fe17071d56d3b591b40a0bb3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 14763 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 Q+1uZ?zGHafDoE>p0H1y+rvLx| diff --git a/package.json b/package.json index 2e1c29fc..2241c53e 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.21.3", + "version": "0.22.0", "publisher": "humao", "author": { "name": "Huachao Mao",