@theholocron/holocron-plugin-doppler 3.28.1 → 3.29.1
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/README.md +5 -5
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -16,14 +16,14 @@ pnpm add -D @theholocron/holocron-plugin-doppler@alpha
|
|
|
16
16
|
|
|
17
17
|
## Auth
|
|
18
18
|
|
|
19
|
-
Token resolution order
|
|
20
|
-
`.notes/tech-auth-bootstrap.spec.md`):
|
|
19
|
+
Token resolution order:
|
|
21
20
|
|
|
22
21
|
1. `--token <TOKEN>` flag on the holocron invocation
|
|
23
22
|
2. `HOLOCRON_DOPPLER_TOKEN` env var (preferred — explicit intent)
|
|
24
23
|
3. `DOPPLER_TOKEN` env var (Doppler-native, works in CI)
|
|
25
|
-
4.
|
|
26
|
-
5. `
|
|
24
|
+
4. Keyring `doppler.<org>` — tried first when an org is active via `--org`, `HOLOCRON_ORG`, or `org` in `holocron.config.ts`
|
|
25
|
+
5. Keyring `doppler` — unnamespaced fallback; set via `holocron auth set doppler <token>`
|
|
26
|
+
6. `AuthError` naming all five options + the bootstrap hint
|
|
27
27
|
|
|
28
28
|
## Manual setup (one-time, per operator)
|
|
29
29
|
|
|
@@ -52,7 +52,7 @@ holocron auth check doppler
|
|
|
52
52
|
**CI**: the keyring is not available in headless containers. Expose
|
|
53
53
|
the token as a GitHub Actions secret and set `HOLOCRON_DOPPLER_TOKEN`
|
|
54
54
|
(or `DOPPLER_TOKEN`) in the workflow env. Steps 1–3 of the auth
|
|
55
|
-
precedence still work;
|
|
55
|
+
precedence still work; steps 4–5 quietly fall through.
|
|
56
56
|
|
|
57
57
|
## Config
|
|
58
58
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theholocron/holocron-plugin-doppler",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.29.1",
|
|
4
4
|
"description": "Holocron plugin for Doppler. Implements the vault capability against Doppler's REST API — projects, configs, secrets, plus verifyToken + AUTH_HINT for `holocron auth`.",
|
|
5
5
|
"homepage": "https://github.com/theholocron/holocron/tree/main/packages/holocron-plugin-doppler#readme",
|
|
6
6
|
"bugs": "https://github.com/theholocron/holocron/issues",
|
|
@@ -22,14 +22,14 @@
|
|
|
22
22
|
},
|
|
23
23
|
"peerDependencies": {
|
|
24
24
|
"@theholocron/doppler-client": "^1.9.0",
|
|
25
|
-
"@theholocron/cli": "3.
|
|
25
|
+
"@theholocron/cli": "3.29.1"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@theholocron/doppler-client": "^1.9.0",
|
|
29
|
-
"@theholocron/eslint-config": "^7.
|
|
30
|
-
"@theholocron/tsconfig": "^7.
|
|
31
|
-
"@theholocron/tsdown-config": "^7.
|
|
32
|
-
"@theholocron/vitest-config": "^7.
|
|
29
|
+
"@theholocron/eslint-config": "^7.20.0",
|
|
30
|
+
"@theholocron/tsconfig": "^7.20.0",
|
|
31
|
+
"@theholocron/tsdown-config": "^7.20.0",
|
|
32
|
+
"@theholocron/vitest-config": "^7.20.0",
|
|
33
33
|
"@types/node": "^26",
|
|
34
34
|
"@vitest/coverage-v8": "^4.1.10",
|
|
35
35
|
"@vitest/eslint-plugin": "^1.6.27",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"tsx": "4.22.4",
|
|
41
41
|
"typescript": "^5.9.3",
|
|
42
42
|
"vitest": "^4.1.10",
|
|
43
|
-
"@theholocron/cli": "3.
|
|
43
|
+
"@theholocron/cli": "3.29.1"
|
|
44
44
|
},
|
|
45
45
|
"publishConfig": {
|
|
46
46
|
"access": "public"
|