@bman654/clodex 1.2.1 → 1.2.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/README.md +6 -1
- package/dist/cli.js +184 -87
- package/dist/cli.js.map +1 -1
- package/docs/credential-helpers.md +6 -4
- package/package.json +1 -1
|
@@ -18,8 +18,9 @@ OS keyring or an environment variable.
|
|
|
18
18
|
|
|
19
19
|
Changing `CLODEX_CREDENTIAL_HELPER` to a different path does not redirect old
|
|
20
20
|
references. Clodex refuses the operation before starting the new helper. Restore
|
|
21
|
-
the prior path to read or delete the old credential
|
|
22
|
-
|
|
21
|
+
the prior path to read or delete the old credential. Reauthentication creates a
|
|
22
|
+
reference owned by the new helper, but does not delete the credential from the
|
|
23
|
+
previous store; remove that credential with the previous backend's tooling.
|
|
23
24
|
|
|
24
25
|
Clodex verifies the selected store with a disposable write, read, and delete
|
|
25
26
|
before starting device authorization. It also reads back real credential
|
|
@@ -71,5 +72,6 @@ executable wrapper. Clodex intentionally does not evaluate a shell command from
|
|
|
71
72
|
this setting.
|
|
72
73
|
|
|
73
74
|
Existing `keyring:` and `env:` provider references retain their original
|
|
74
|
-
behavior. Enabling a helper affects newly saved credentials
|
|
75
|
-
|
|
75
|
+
behavior. Enabling a helper affects newly saved credentials. Reauthentication
|
|
76
|
+
stores future credentials in the helper-backed store while the previous store
|
|
77
|
+
remains unchanged until its credential is explicitly removed.
|