@shipfox/api-secrets 11.0.0 → 12.0.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/.turbo/turbo-build.log
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
$ shipfox-swc
|
|
2
|
-
Successfully compiled: 53 files with swc (
|
|
2
|
+
Successfully compiled: 53 files with swc (204.86ms)
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @shipfox/api-secrets
|
|
2
2
|
|
|
3
|
+
## 12.0.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [f78740d]
|
|
8
|
+
- Updated dependencies [4eb18b8]
|
|
9
|
+
- Updated dependencies [f13e8bb]
|
|
10
|
+
- Updated dependencies [8cc5a36]
|
|
11
|
+
- Updated dependencies [032d316]
|
|
12
|
+
- Updated dependencies [cb0abfa]
|
|
13
|
+
- @shipfox/inter-module@0.2.3
|
|
14
|
+
- @shipfox/node-fastify@0.4.1
|
|
15
|
+
- @shipfox/node-module@1.0.5
|
|
16
|
+
- @shipfox/api-projects-dto@12.0.0
|
|
17
|
+
- @shipfox/node-postgres@0.5.0
|
|
18
|
+
- @shipfox/api-auth-context@12.0.0
|
|
19
|
+
- @shipfox/api-secrets-dto@12.0.0
|
|
20
|
+
- @shipfox/node-drizzle@0.3.5
|
|
21
|
+
- @shipfox/node-outbox@0.2.6
|
|
22
|
+
|
|
3
23
|
## 11.0.0
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
- **Store resolver**: `resolveSecretStore` supports the built-in `local` store and rejects unknown store names with `UnknownSecretStoreError`.
|
|
12
12
|
- **Domain errors**: Typed errors let route layers map validation, cap, crypto, and config failures to client responses.
|
|
13
13
|
|
|
14
|
-
## Installation
|
|
14
|
+
## Installation and setup
|
|
15
15
|
|
|
16
16
|
Install the package from the registry:
|
|
17
17
|
|
|
@@ -104,7 +104,7 @@ Startup checks each KEK as a canonical base64 value for a 32-byte key. It also r
|
|
|
104
104
|
|
|
105
105
|
Keys must match `^[A-Z_][A-Z0-9_]*$`. Keys and namespaces may be at most 128 characters. Namespaces may be empty or a lowercase slug path.
|
|
106
106
|
|
|
107
|
-
## Data
|
|
107
|
+
## Data model
|
|
108
108
|
|
|
109
109
|
This module owns tables with the `secrets_` prefix.
|
|
110
110
|
|
|
@@ -181,7 +181,7 @@ Secret decryption failures collapse to `SecretDecryptionError`. The error does n
|
|
|
181
181
|
|
|
182
182
|
Deleting a workspace data key makes existing secrets unreadable. Reads fail closed instead of returning unauthenticated plaintext.
|
|
183
183
|
|
|
184
|
-
## Behavior
|
|
184
|
+
## Behavior notes
|
|
185
185
|
|
|
186
186
|
- **Scope precedence:** project-scoped rows override workspace-scoped rows on reads and namespace lists.
|
|
187
187
|
- **Exact deletes:** deletes target only the exact scope passed by the caller. Deleting a project secret does not delete the workspace fallback.
|