@cipherstash/stack 1.0.0-rc.2 → 1.0.0-rc.3
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/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @cipherstash/stack
|
|
2
2
|
|
|
3
|
+
## 1.0.0-rc.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 8b2551a: Fix "Failed to load native binding" on project-local installs of the CLI/SDK
|
|
8
|
+
(npm). `@cipherstash/auth` was pinned at 0.41.0 while the six
|
|
9
|
+
`@cipherstash/auth-*` platform bindings declared in stack/stash/wizard's
|
|
10
|
+
optionalDependencies were pinned at 0.42.0. Because auth pins its bindings as
|
|
11
|
+
exact-version optional peer dependencies, the skew made npm nest per-consumer
|
|
12
|
+
binding copies that the hoisted `auth` package could not resolve — any command
|
|
13
|
+
or import touching auth then died at startup. All seven packages now move in
|
|
14
|
+
lockstep at 0.42.0, Dependabot is barred from bumping any of them
|
|
15
|
+
independently, and a supply-chain CI test fails on any future skew.
|
|
16
|
+
|
|
3
17
|
## 1.0.0-rc.2
|
|
4
18
|
|
|
5
19
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cipherstash/stack",
|
|
3
|
-
"version": "1.0.0-rc.
|
|
3
|
+
"version": "1.0.0-rc.3",
|
|
4
4
|
"description": "CipherStash Stack for TypeScript and JavaScript",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"encrypted",
|
|
@@ -193,9 +193,9 @@
|
|
|
193
193
|
"devDependencies": {
|
|
194
194
|
"@cipherstash/eql": "3.0.0",
|
|
195
195
|
"@clack/prompts": "^1.7.0",
|
|
196
|
-
"@clerk/backend": "3.11.
|
|
197
|
-
"@supabase/postgrest-js": "2.110.
|
|
198
|
-
"@supabase/supabase-js": "^2.110.
|
|
196
|
+
"@clerk/backend": "3.11.3",
|
|
197
|
+
"@supabase/postgrest-js": "2.110.2",
|
|
198
|
+
"@supabase/supabase-js": "^2.110.2",
|
|
199
199
|
"@types/pg": "^8.20.0",
|
|
200
200
|
"@types/uuid": "^11.0.0",
|
|
201
201
|
"dotenv": "17.4.2",
|
|
@@ -216,7 +216,7 @@
|
|
|
216
216
|
},
|
|
217
217
|
"dependencies": {
|
|
218
218
|
"@byteslice/result": "0.2.0",
|
|
219
|
-
"@cipherstash/auth": "0.
|
|
219
|
+
"@cipherstash/auth": "0.42.0",
|
|
220
220
|
"@cipherstash/protect-ffi": "0.29.0",
|
|
221
221
|
"evlog": "1.11.0",
|
|
222
222
|
"uuid": "14.0.1",
|