oauth2-cli 1.1.0 → 1.1.2
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 +16 -9
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -2,34 +2,41 @@
|
|
|
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
|
-
## [1.1.
|
|
5
|
+
## [1.1.2](https://github.com/battis/oauth2-cli/compare/oauth2-cli/1.1.1...oauth2-cli/1.1.2) (2026-03-06)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* bump @battis/typescript-tricks to 0.7.8 ([228e155](https://github.com/battis/oauth2-cli/commit/228e1552a1ae368cc33344b487c9c08bda6ba01e))
|
|
11
|
+
|
|
12
|
+
## [1.1.1](https://github.com/battis/oauth2-cli/compare/oauth2-cli/1.1.0...oauth2-cli/1.1.1) (2026-03-06)
|
|
6
13
|
|
|
14
|
+
Bump to requestish@01.1.6
|
|
15
|
+
|
|
16
|
+
## [1.1.0](https://github.com/battis/oauth2-cli/compare/oauth2-cli/1.0.3...oauth2-cli/1.1.0) (2026-03-05)
|
|
7
17
|
|
|
8
18
|
### Features
|
|
9
19
|
|
|
10
|
-
|
|
11
|
-
|
|
20
|
+
- added prepareRequest hook ([3deaaaa](https://github.com/battis/oauth2-cli/commit/3deaaaa1ec8939b507953f436f0cd500f01736e8))
|
|
21
|
+
- make URLSearchParams even more 'ish', accepting all JSON primitives ([b1c2a25](https://github.com/battis/oauth2-cli/commit/b1c2a25c29267c070070f7cd304bb31f854485e4))
|
|
12
22
|
|
|
13
23
|
## [1.0.3](https://github.com/battis/oauth2-cli/compare/oauth2-cli/1.0.2...oauth2-cli/1.0.3) (2026-03-04)
|
|
14
24
|
|
|
15
|
-
|
|
16
25
|
### Bug Fixes
|
|
17
26
|
|
|
18
|
-
|
|
27
|
+
- allow requestish.Body.ish request bodies as intended ([f12a2ce](https://github.com/battis/oauth2-cli/commit/f12a2ceb1c517f6fd90b33c8c71da7f987af640d))
|
|
19
28
|
|
|
20
29
|
## [1.0.2](https://github.com/battis/oauth2-cli/compare/oauth2-cli/1.0.1...oauth2-cli/1.0.2) (2026-03-03)
|
|
21
30
|
|
|
22
|
-
|
|
23
31
|
### Bug Fixes
|
|
24
32
|
|
|
25
|
-
|
|
33
|
+
- remove extraneous debugging output ([30e7fba](https://github.com/battis/oauth2-cli/commit/30e7fba402cba03b876b31f6cee9c612504fd98c))
|
|
26
34
|
|
|
27
35
|
## [1.0.1](https://github.com/battis/oauth2-cli/compare/oauth2-cli/1.0.0...oauth2-cli/1.0.1) (2026-03-03)
|
|
28
36
|
|
|
29
|
-
|
|
30
37
|
### Bug Fixes
|
|
31
38
|
|
|
32
|
-
|
|
39
|
+
- catch error in isAuthorized() if _not_ authorized ([0699e6e](https://github.com/battis/oauth2-cli/commit/0699e6e92c7498cd0544dea66f637a54f2abb828))
|
|
33
40
|
|
|
34
41
|
## [1.0.0](https://github.com/battis/oauth2-cli/compare/oauth2-cli/0.8.9...oauth2-cli/1.0.0) (2026-02-20)
|
|
35
42
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oauth2-cli",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.2",
|
|
4
4
|
"description": "Acquire API access tokens via OAuth 2.0 / OpenID Connect within CLI tools",
|
|
5
5
|
"homepage": "https://github.com/battis/oauth2-cli/tree/main/packages/oauth2-cli#readme",
|
|
6
6
|
"repository": {
|
|
@@ -23,15 +23,15 @@
|
|
|
23
23
|
"open": "^11.0.0",
|
|
24
24
|
"openid-client": "^6.8.2",
|
|
25
25
|
"ora": "^9.3.0",
|
|
26
|
-
"gcrtl": "0.1.
|
|
27
|
-
"requestish": "0.1.
|
|
26
|
+
"gcrtl": "0.1.9",
|
|
27
|
+
"requestish": "0.1.7"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@battis/descriptive-types": "^0.2.6",
|
|
31
|
-
"@battis/typescript-tricks": "^0.7.
|
|
31
|
+
"@battis/typescript-tricks": "^0.7.8",
|
|
32
32
|
"@tsconfig/node24": "^24.0.4",
|
|
33
33
|
"@types/express": "^5.0.6",
|
|
34
|
-
"@types/node": "^24.
|
|
34
|
+
"@types/node": "^24.12.0",
|
|
35
35
|
"commit-and-tag-version": "^12.6.1",
|
|
36
36
|
"del-cli": "^7.0.0",
|
|
37
37
|
"npm-run-all": "^4.1.5",
|