@oauth2-cli/qui-cli 0.7.13 → 0.7.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/dist/Client.js +11 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [0.7.15](https://github.com/battis/oauth2-cli/compare/qui-cli-plugin/0.7.14...qui-cli-plugin/0.7.15) (2026-02-19)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* further debugging log refinement ([26bad46](https://github.com/battis/oauth2-cli/commit/26bad46741fc0b2075099054e7127e90a1a4a002))
|
|
11
|
+
|
|
12
|
+
## [0.7.14](https://github.com/battis/oauth2-cli/compare/qui-cli-plugin/0.7.13...qui-cli-plugin/0.7.14) (2026-02-19)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* further refinement in debug logging ([568e563](https://github.com/battis/oauth2-cli/commit/568e563bc0a918cd9741951654db685488f10330))
|
|
18
|
+
|
|
5
19
|
## [0.7.13](https://github.com/battis/oauth2-cli/compare/qui-cli-plugin/0.7.12...qui-cli-plugin/0.7.13) (2026-02-19)
|
|
6
20
|
|
|
7
21
|
Incorporates oauth2-cli@0.8.8
|
package/dist/Client.js
CHANGED
|
@@ -23,8 +23,17 @@ export class Client extends OAuth2CLI.Client {
|
|
|
23
23
|
}
|
|
24
24
|
async handleAuthorizationCodeRedirect(request, session) {
|
|
25
25
|
Log.debug(`Handling ${this.clientName()} Authorization Code flow redirect`, {
|
|
26
|
-
request
|
|
27
|
-
|
|
26
|
+
request: {
|
|
27
|
+
url: request.url,
|
|
28
|
+
method: request.method,
|
|
29
|
+
headers: request.headers,
|
|
30
|
+
body: request.body
|
|
31
|
+
},
|
|
32
|
+
session: {
|
|
33
|
+
code_verifier: session.code_verifier,
|
|
34
|
+
state: session.state,
|
|
35
|
+
inject: session.inject
|
|
36
|
+
}
|
|
28
37
|
});
|
|
29
38
|
return super.handleAuthorizationCodeRedirect(request, session);
|
|
30
39
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oauth2-cli/qui-cli",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.15",
|
|
4
4
|
"description": "@qui-cli/plugin wrapper for oauth2-cli",
|
|
5
5
|
"homepage": "https://github.com/battis/oauth2-cli/tree/main/packages/qui-cli#readme",
|
|
6
6
|
"repository": {
|
|
@@ -17,8 +17,8 @@
|
|
|
17
17
|
"types": "./dist/index.d.ts",
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@qui-cli/colors": "^3.2.3",
|
|
20
|
-
"
|
|
21
|
-
"
|
|
20
|
+
"oauth2-cli": "0.8.9",
|
|
21
|
+
"requestish": "0.1.1"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"@battis/descriptive-types": "^0.2.6",
|