@oauth2-cli/qui-cli 1.0.1 → 1.0.3

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 CHANGED
@@ -2,13 +2,25 @@
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.0.1](https://github.com/battis/oauth2-cli/compare/qui-cli-plugin/1.0.0...qui-cli-plugin/1.0.1) (2026-02-20)
5
+ ## [1.0.3](https://github.com/battis/oauth2-cli/compare/qui-cli-plugin/1.0.2...qui-cli-plugin/1.0.3) (2026-03-03)
6
+
7
+ ### Bug Fixes
8
+
9
+ - remove extraneous debugging output ([30e7fba](https://github.com/battis/oauth2-cli/commit/30e7fba402cba03b876b31f6cee9c612504fd98c))
10
+
11
+ ## [1.0.2](https://github.com/battis/oauth2-cli/compare/qui-cli-plugin/1.0.1...qui-cli-plugin/1.0.2) (2026-03-03)
6
12
 
13
+ ### Bug Fixes
14
+
15
+ - catch error in isAuthorized() if _not_ authorized ([0699e6e](https://github.com/battis/oauth2-cli/commit/0699e6e92c7498cd0544dea66f637a54f2abb828))
16
+ - man.heading can be optional ([eaf199f](https://github.com/battis/oauth2-cli/commit/eaf199fd567634dfc82eee43ae33e83be7dc68b4))
17
+
18
+ ## [1.0.1](https://github.com/battis/oauth2-cli/compare/qui-cli-plugin/1.0.0...qui-cli-plugin/1.0.1) (2026-02-20)
7
19
 
8
20
  ### Bug Fixes
9
21
 
10
- * do not suppress scope by default ([d87d910](https://github.com/battis/oauth2-cli/commit/d87d910765c3b93fd150aad8fc417848531f1675))
11
- * use name in usage section heading if no heading configured ([7271d53](https://github.com/battis/oauth2-cli/commit/7271d5315bbb8f0f38864201fe45a70541c8b165))
22
+ - do not suppress scope by default ([d87d910](https://github.com/battis/oauth2-cli/commit/d87d910765c3b93fd150aad8fc417848531f1675))
23
+ - use name in usage section heading if no heading configured ([7271d53](https://github.com/battis/oauth2-cli/commit/7271d5315bbb8f0f38864201fe45a70541c8b165))
12
24
 
13
25
  ## [1.0.0](https://github.com/battis/oauth2-cli/compare/qui-cli-plugin/0.7.16...qui-cli-plugin/1.0.0) (2026-02-20)
14
26
 
@@ -16,7 +16,7 @@ type Hints = Record<EnvironmentKey, string>;
16
16
  type EnvVarSuppression = Record<EnvironmentKey, boolean>;
17
17
  /** Custom usage information to present to user */
18
18
  type Usage = {
19
- heading: string;
19
+ heading?: string;
20
20
  text?: string[];
21
21
  };
22
22
  /** Plugin configuration */
@@ -16,7 +16,7 @@ type Hints = Record<EnvironmentKey, string>;
16
16
  type EnvVarSuppression = Record<EnvironmentKey, boolean>;
17
17
  /** Custom usage information to present to user */
18
18
  type Usage = {
19
- heading: string;
19
+ heading?: string;
20
20
  text?: string[];
21
21
  };
22
22
  /** Plugin configuration */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oauth2-cli/qui-cli",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
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,7 +17,7 @@
17
17
  "types": "./dist/index.d.ts",
18
18
  "dependencies": {
19
19
  "@qui-cli/colors": "^3.2.3",
20
- "oauth2-cli": "1.0.0",
20
+ "oauth2-cli": "1.0.2",
21
21
  "requestish": "0.1.3"
22
22
  },
23
23
  "devDependencies": {