@byok-sdk/cloud-dataplane 0.4.0 → 0.4.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 +3 -3
- package/package.json +16 -16
package/README.md
CHANGED
|
@@ -129,7 +129,7 @@ credential-provider chain is installed.
|
|
|
129
129
|
|
|
130
130
|
Schema is authored in the repository's `deploy/sql/` directory as plain SQL
|
|
131
131
|
files named `NNNN_description.sql`. The four-digit prefix is the only ordering
|
|
132
|
-
authority — the same one `
|
|
132
|
+
authority — the same one `bun run check:deploy-sql` enforces in CI.
|
|
133
133
|
|
|
134
134
|
Those files ship inside this package: the build copies them into `dist/sql/`,
|
|
135
135
|
and `migrationsDir()` returns that directory from wherever the package is
|
|
@@ -188,7 +188,7 @@ The suites need a real Postgres, and get one from the repository's
|
|
|
188
188
|
docker compose -f docker-compose.test.yml up -d --wait
|
|
189
189
|
export BYOK_TEST_POSTGRES_URL=postgres://byok:byok@127.0.0.1:5433/byok_test
|
|
190
190
|
export BYOK_TEST_S3_ENDPOINT=http://127.0.0.1:9100
|
|
191
|
-
|
|
191
|
+
bun run --filter @byok-sdk/cloud-dataplane test
|
|
192
192
|
```
|
|
193
193
|
|
|
194
194
|
Both variables, one gate: the compose file starts Postgres and MinIO together,
|
|
@@ -221,4 +221,4 @@ test rather than a step someone remembers. What runs:
|
|
|
221
221
|
|
|
222
222
|
## License
|
|
223
223
|
|
|
224
|
-
MIT. Node.js 22.
|
|
224
|
+
MIT. Node.js 22.22.0 or newer.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@byok-sdk/cloud-dataplane",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.1",
|
|
4
4
|
"description": "BYOK SDK hosted data plane: canonical Postgres + R2 stores, migrations, truth transactions, and maintenance",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
},
|
|
15
15
|
"homepage": "https://github.com/Ancienttwo/byok-sdk#readme",
|
|
16
16
|
"engines": {
|
|
17
|
-
"node": ">=22.
|
|
17
|
+
"node": ">=22.22.0"
|
|
18
18
|
},
|
|
19
19
|
"sideEffects": false,
|
|
20
20
|
"main": "./dist/index.js",
|
|
@@ -35,19 +35,6 @@
|
|
|
35
35
|
"publishConfig": {
|
|
36
36
|
"access": "public"
|
|
37
37
|
},
|
|
38
|
-
"dependencies": {
|
|
39
|
-
"aws4fetch": "1.0.20",
|
|
40
|
-
"fast-xml-parser": "^5.10.1",
|
|
41
|
-
"pg": "^8.22.0",
|
|
42
|
-
"@byok-sdk/cloud": "0.4.0",
|
|
43
|
-
"@byok-sdk/protocol": "0.4.0",
|
|
44
|
-
"@byok-sdk/core": "0.4.0"
|
|
45
|
-
},
|
|
46
|
-
"devDependencies": {
|
|
47
|
-
"@types/pg": "^8.20.4",
|
|
48
|
-
"undici": "8.9.0",
|
|
49
|
-
"@byok-sdk/conformance": "0.0.0"
|
|
50
|
-
},
|
|
51
38
|
"scripts": {
|
|
52
39
|
"build": "tsup && tsc -p tsconfig.build.json && node scripts/copy-migrations.mjs",
|
|
53
40
|
"dev": "tsup --watch",
|
|
@@ -55,5 +42,18 @@
|
|
|
55
42
|
"test:watch": "vitest",
|
|
56
43
|
"typecheck": "tsc --noEmit",
|
|
57
44
|
"clean": "rm -rf dist"
|
|
45
|
+
},
|
|
46
|
+
"dependencies": {
|
|
47
|
+
"@byok-sdk/cloud": "0.4.0",
|
|
48
|
+
"@byok-sdk/core": "0.4.0",
|
|
49
|
+
"@byok-sdk/protocol": "0.4.0",
|
|
50
|
+
"aws4fetch": "1.0.20",
|
|
51
|
+
"fast-xml-parser": "^5.10.1",
|
|
52
|
+
"pg": "^8.22.0"
|
|
53
|
+
},
|
|
54
|
+
"devDependencies": {
|
|
55
|
+
"@byok-sdk/conformance": "0.0.0",
|
|
56
|
+
"@types/pg": "^8.20.4",
|
|
57
|
+
"undici": "8.9.0"
|
|
58
58
|
}
|
|
59
|
-
}
|
|
59
|
+
}
|