diff --git a/CHANGELOG.md b/CHANGELOG.md index 9bf559b..f438a27 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,18 @@ -## [unreleased] +## [6.11.0] (2023-12-29) ### Feature + +- add `audience` and `resource` to OAuth2 token exchange flow (#248) +- allow intercepting and modification of OAuth2 Request before sending using `oauht2_interceptRequest` (#605) - allow configuration of local cache store (#241) ### Fix -- escaping of `\{\{2\}\}` did not work (Anweber/vscode-httpyac#244) -- support only `http-client.env.json` and `http-client.private.env.json` files for intellij environments (Anweber/vscode-httpyac#245) +- escaping of `\{\{2\}\}` did not work (#244) +- support only `http-client.env.json` and `http-client.private.env.json` files for intellij environments (#245) +- add support to set requestUnauthorized to OAuth2 Requests (#605) +- allow empty string in input and list provider (#247) +- parsing issue with multiline url parsing with only variable content (#249) ## [6.10.0] (2023-11-13) diff --git a/package-lock.json b/package-lock.json index e626e46..78591a0 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,17 +1,17 @@ { "name": "vscode-httpyac", - "version": "6.10.0", + "version": "6.11.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "vscode-httpyac", - "version": "6.10.0", + "version": "6.11.0", "license": "MIT", "dependencies": { "filesize": "^10.1.0", "httpsnippet": "^3.0.1", - "httpyac": "^6.10.0", + "httpyac": "^6.11.0", "lodash": "^4.17.21", "mime-types": "^2.1.35", "uuid": "^9.0.1" @@ -2915,9 +2915,9 @@ } }, "node_modules/httpyac": { - "version": "6.10.0", - "resolved": "https://registry.npmjs.org/httpyac/-/httpyac-6.10.0.tgz", - "integrity": "sha512-MBk3cxzziVCARbZU+Ei3NyZzKwIYyi6WPDTOF3ci5hChPWapNgqgUZcOtXskQZ2nNC/8X76MDcUsqcwvCpwD9A==", + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/httpyac/-/httpyac-6.11.0.tgz", + "integrity": "sha512-A791WRNb+DQaWh4nfKy1xZtoSpQvc6GNZ7bPzn6b+5JgSzCKoYt9t2gqCWn5pumGLCigAt9K5efdHrDDARmnHg==", "dependencies": { "@cloudamqp/amqp-client": "^2.1.1", "@grpc/grpc-js": "^1.9.9", @@ -2949,7 +2949,7 @@ "uuid": "^9.0.1", "ws": "^8.14.2", "xmldom-format": "^1.1.1", - "xpath": "^0.0.33" + "xpath": "^0.0.34" }, "bin": { "httpyac": "bin/httpyac.js" @@ -5169,9 +5169,9 @@ "integrity": "sha512-1nrF7EjSnF2eXsgSWdotcMuESYtUvhWWYPSFkHjJNTKRPL94rdEkhk14vMui/ghYIipjL0qKmVornp5iVTf6PA==" }, "node_modules/xpath": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/xpath/-/xpath-0.0.33.tgz", - "integrity": "sha512-NNXnzrkDrAzalLhIUc01jO2mOzXGXh1JwPgkihcLLzw98c0WgYDmmjSh1Kl3wzaxSVWMuA+fe0WTWOBDWCBmNA==", + "version": "0.0.34", + "resolved": "https://registry.npmjs.org/xpath/-/xpath-0.0.34.tgz", + "integrity": "sha512-FxF6+rkr1rNSQrhUNYrAFJpRXNzlDoMxeXN5qI84939ylEv3qqPFKa85Oxr6tDaJKqwW6KKyo2v26TSv3k6LeA==", "engines": { "node": ">=0.6.0" } diff --git a/package.json b/package.json index a4b5cc2..e50db0e 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "license": "MIT", "publisher": "anweber", "description": "Quickly and easily send REST, Soap, GraphQL, GRPC, MQTT, RabbitMQ and WebSocket requests directly within Visual Studio Code", - "version": "6.10.0", + "version": "6.11.0", "homepage": "https://github.com/AnWeber/vscode-httpyac", "repository": { "type": "git", @@ -1544,7 +1544,7 @@ "dependencies": { "filesize": "^10.1.0", "httpsnippet": "^3.0.1", - "httpyac": "^6.10.0", + "httpyac": "^6.11.0", "lodash": "^4.17.21", "mime-types": "^2.1.35", "uuid": "^9.0.1"