asherah 4.0.31 → 4.0.33
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/npm/index.js +17 -0
- package/package.json +10 -10
package/npm/index.js
CHANGED
|
@@ -125,6 +125,23 @@ const CONFIG_MAP = {
|
|
|
125
125
|
DisableZeroCopy: 'disableZeroCopy',
|
|
126
126
|
NullDataCheck: 'nullDataCheck',
|
|
127
127
|
EnableCanaries: 'enableCanaries',
|
|
128
|
+
// KMS: AWS
|
|
129
|
+
KmsKeyId: 'kmsKeyId',
|
|
130
|
+
// KMS: Secrets Manager
|
|
131
|
+
SecretsManagerSecretId: 'secretsManagerSecretId',
|
|
132
|
+
// KMS: Vault Transit
|
|
133
|
+
VaultAddr: 'vaultAddr',
|
|
134
|
+
VaultToken: 'vaultToken',
|
|
135
|
+
VaultAuthMethod: 'vaultAuthMethod',
|
|
136
|
+
VaultAuthRole: 'vaultAuthRole',
|
|
137
|
+
VaultAuthMount: 'vaultAuthMount',
|
|
138
|
+
VaultApproleRoleId: 'vaultApproleRoleId',
|
|
139
|
+
VaultApproleSecretId: 'vaultApproleSecretId',
|
|
140
|
+
VaultClientCert: 'vaultClientCert',
|
|
141
|
+
VaultClientKey: 'vaultClientKey',
|
|
142
|
+
VaultK8sTokenPath: 'vaultK8sTokenPath',
|
|
143
|
+
VaultTransitKey: 'vaultTransitKey',
|
|
144
|
+
VaultTransitMount: 'vaultTransitMount',
|
|
128
145
|
};
|
|
129
146
|
|
|
130
147
|
// Legacy/debug metastore aliases (match Go behavior)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "asherah",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.33",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Asherah application-layer encryption for Node.js with automatic key rotation, powered by the native Rust implementation.",
|
|
6
6
|
"author": "Jay Gowdy",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"test:unit": "node test/roundtrip.js",
|
|
62
62
|
"test:e2e": "node test/e2e-consumer.js",
|
|
63
63
|
"test:e2e-aws": "node test/e2e-aws.js",
|
|
64
|
-
"test:bun": "bun test/roundtrip.js"
|
|
64
|
+
"test:bun": "bun test/roundtrip.js && bun test/e2e-consumer.js && bun test/bun-compat.js"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
67
|
"@napi-rs/cli": "^2.18.0"
|
|
@@ -70,13 +70,13 @@
|
|
|
70
70
|
"node": ">= 18"
|
|
71
71
|
},
|
|
72
72
|
"optionalDependencies": {
|
|
73
|
-
"asherah-darwin-arm64": "4.0.
|
|
74
|
-
"asherah-darwin-x64": "4.0.
|
|
75
|
-
"asherah-linux-x64-gnu": "4.0.
|
|
76
|
-
"asherah-linux-arm64-gnu": "4.0.
|
|
77
|
-
"asherah-linux-x64-musl": "4.0.
|
|
78
|
-
"asherah-linux-arm64-musl": "4.0.
|
|
79
|
-
"asherah-windows-x64": "4.0.
|
|
80
|
-
"asherah-windows-arm64": "4.0.
|
|
73
|
+
"asherah-darwin-arm64": "4.0.33",
|
|
74
|
+
"asherah-darwin-x64": "4.0.33",
|
|
75
|
+
"asherah-linux-x64-gnu": "4.0.33",
|
|
76
|
+
"asherah-linux-arm64-gnu": "4.0.33",
|
|
77
|
+
"asherah-linux-x64-musl": "4.0.33",
|
|
78
|
+
"asherah-linux-arm64-musl": "4.0.33",
|
|
79
|
+
"asherah-windows-x64": "4.0.33",
|
|
80
|
+
"asherah-windows-arm64": "4.0.33"
|
|
81
81
|
}
|
|
82
82
|
}
|