@oauth2-cli/qui-cli-plugin 0.2.7 → 0.3.0

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,6 +2,17 @@
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.3.0](https://github.com/battis/oauth2-cli/compare/qui-cli-plugin/0.2.7...qui-cli-plugin/0.3.0) (2025-12-24)
6
+
7
+
8
+ ### ⚠ BREAKING CHANGES
9
+
10
+ * resolve 1Password secret references successfully
11
+
12
+ ### Bug Fixes
13
+
14
+ * resolve 1Password secret references successfully ([c4446e1](https://github.com/battis/oauth2-cli/commit/c4446e197a66271dac3ea8d58ff44725cc6be1db))
15
+
5
16
  ## [0.2.7](https://github.com/battis/oauth2-cli/compare/qui-cli-plugin/0.2.6...qui-cli-plugin/0.2.7) (2025-12-23)
6
17
 
7
18
 
@@ -3,5 +3,5 @@ export declare class EnvironmentStorage implements TokenStorage {
3
3
  private tokenEnvVar;
4
4
  constructor(tokenEnvVar?: string);
5
5
  load(): Promise<Token | undefined>;
6
- save(tokens: Token): Promise<Token>;
6
+ save(tokens: Token): Promise<void>;
7
7
  }
@@ -20,6 +20,5 @@ export class EnvironmentStorage {
20
20
  }
21
21
  async save(tokens) {
22
22
  await Env.set({ key: this.tokenEnvVar, value: JSON.stringify(tokens) });
23
- return tokens;
24
23
  }
25
24
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oauth2-cli/qui-cli-plugin",
3
- "version": "0.2.7",
3
+ "version": "0.3.0",
4
4
  "description": "@battis/qui-cli.plugin wrapper for oauth2-cli",
5
5
  "homepage": "https://github.com/battis/oauth2-cli/tree/main/packages/qui-cli-plugin#readme",
6
6
  "repository": {
@@ -17,12 +17,12 @@
17
17
  "types": "./dist/index.d.ts",
18
18
  "dependencies": {
19
19
  "openid-client": "^6.8.1",
20
- "oauth2-cli": "0.2.3"
20
+ "oauth2-cli": "0.3.0"
21
21
  },
22
22
  "devDependencies": {
23
23
  "@battis/descriptive-types": "^0.2.6",
24
24
  "@qui-cli/colors": "^3.1.1",
25
- "@qui-cli/env-1password": "^1.2.0",
25
+ "@qui-cli/env-1password": "^1.2.2",
26
26
  "@qui-cli/plugin": "^4.0.0",
27
27
  "@qui-cli/root": "^3.0.4",
28
28
  "@tsconfig/node20": "^20.1.8",