@qui-cli/env-1password 1.2.5 → 1.2.7
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/1Password.js +1 -1
- package/package.json +9 -7
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
|
+
## [1.2.7](https://github.com/battis/qui-cli/compare/env-1password/1.2.6...env-1password/1.2.7) (2026-01-17)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* turn OFF logging wile retrieving 1Password service account token ([4d4fcf6](https://github.com/battis/qui-cli/commit/4d4fcf68491be2333a93102923a2bd07c6f48242))
|
|
11
|
+
|
|
12
|
+
## [1.2.6](https://github.com/battis/qui-cli/compare/env-1password/1.2.5...env-1password/1.2.6) (2026-01-12)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* include all peer dependencies ([4f386dd](https://github.com/battis/qui-cli/commit/4f386dd47861b91611c2fde49f55ee2955feaa05))
|
|
18
|
+
|
|
5
19
|
## [1.2.5](https://github.com/battis/qui-cli/compare/env-1password/1.2.4...env-1password/1.2.5) (2026-01-02)
|
|
6
20
|
|
|
7
21
|
|
package/dist/1Password.js
CHANGED
|
@@ -20,7 +20,7 @@ export async function configure(proposal = {}) {
|
|
|
20
20
|
const silent = Shell.isSilent();
|
|
21
21
|
const showCommands = Shell.commandsShown();
|
|
22
22
|
const logging = Shell.isLogging();
|
|
23
|
-
Shell.configure({ silent: true, showCommands: false, logging:
|
|
23
|
+
Shell.configure({ silent: true, showCommands: false, logging: false });
|
|
24
24
|
const { stdout, stderr } = Shell.exec(`op item get ${config.opAccount ? `--account "${config.opAccount}" ` : ''}--reveal --fields credential "${config.opItem}"`);
|
|
25
25
|
if (stdout.length) {
|
|
26
26
|
config.opToken = stdout.trim();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qui-cli/env-1password",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.7",
|
|
4
4
|
"description": "@qui-cli Plugin: Standardized environment configuration",
|
|
5
5
|
"homepage": "https://github.com/battis/qui-cli/tree/main/packages/env-1password#readme",
|
|
6
6
|
"repository": {
|
|
@@ -19,7 +19,8 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@1password/sdk": "^0.3.1",
|
|
21
21
|
"@battis/import-package-json": "^0.1.7",
|
|
22
|
-
"dotenv": "^17.2.3"
|
|
22
|
+
"dotenv": "^17.2.3",
|
|
23
|
+
"@qui-cli/colors": "3.2.2"
|
|
23
24
|
},
|
|
24
25
|
"devDependencies": {
|
|
25
26
|
"@tsconfig/node20": "^20.1.8",
|
|
@@ -28,17 +29,18 @@
|
|
|
28
29
|
"del-cli": "^6.0.0",
|
|
29
30
|
"npm-run-all": "^4.1.5",
|
|
30
31
|
"typescript": "^5.9.3",
|
|
31
|
-
"@qui-cli/colors": "3.2.1",
|
|
32
32
|
"@qui-cli/log": "4.0.2",
|
|
33
|
-
"@qui-cli/
|
|
33
|
+
"@qui-cli/plugin": "4.0.0",
|
|
34
34
|
"@qui-cli/root": "3.0.6",
|
|
35
35
|
"@qui-cli/shell": "3.1.1",
|
|
36
|
-
"@qui-cli/
|
|
36
|
+
"@qui-cli/env": "5.0.3"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
39
|
"@qui-cli/env": ">=5",
|
|
40
|
+
"@qui-cli/log": ">=3",
|
|
40
41
|
"@qui-cli/plugin": ">=3",
|
|
41
|
-
"@qui-cli/root": ">=3"
|
|
42
|
+
"@qui-cli/root": ">=3",
|
|
43
|
+
"@qui-cli/shell": ">=3"
|
|
42
44
|
},
|
|
43
45
|
"target": "node",
|
|
44
46
|
"scripts": {
|
|
@@ -46,6 +48,6 @@
|
|
|
46
48
|
"build": "run-s build:*",
|
|
47
49
|
"build:clean": "run-s clean",
|
|
48
50
|
"build:compile": "tsc",
|
|
49
|
-
"
|
|
51
|
+
"version": "commit-and-tag-version"
|
|
50
52
|
}
|
|
51
53
|
}
|