@supabase/supabase-js 2.106.0 → 2.106.1-beta.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@supabase/supabase-js",
3
- "version": "2.106.0",
3
+ "version": "2.106.1-beta.0",
4
4
  "description": "Isomorphic Javascript SDK for Supabase",
5
5
  "keywords": [
6
6
  "javascript",
@@ -49,11 +49,11 @@
49
49
  "directory": "packages/core/supabase-js"
50
50
  },
51
51
  "dependencies": {
52
- "@supabase/auth-js": "2.106.0",
53
- "@supabase/functions-js": "2.106.0",
54
- "@supabase/postgrest-js": "2.106.0",
55
- "@supabase/storage-js": "2.106.0",
56
- "@supabase/realtime-js": "2.106.0"
52
+ "@supabase/auth-js": "2.106.1-beta.0",
53
+ "@supabase/functions-js": "2.106.1-beta.0",
54
+ "@supabase/postgrest-js": "2.106.1-beta.0",
55
+ "@supabase/realtime-js": "2.106.1-beta.0",
56
+ "@supabase/storage-js": "2.106.1-beta.0"
57
57
  },
58
58
  "devDependencies": {
59
59
  "jsr": "^0.13.5",
@@ -110,7 +110,8 @@
110
110
  "test:exports": "attw --pack . --ignore-rules no-resolution",
111
111
  "test:esm": "node test/module-resolution.test.mjs && node test/module-resolution-cors.test.mjs",
112
112
  "test:cjs": "node test/module-resolution.test.cjs && node test/module-resolution-cors.test.cjs",
113
- "test:module-resolution": "npm run test:exports && npm run test:esm && npm run test:cjs",
113
+ "test:hermes-compat": "node test/bundle-hermes-compat.test.cjs",
114
+ "test:module-resolution": "npm run test:exports && npm run test:esm && npm run test:cjs && npm run test:hermes-compat",
114
115
  "docs": "typedoc --entryPoints src/index.ts --entryPoints src/cors.ts --out docs/v2",
115
116
  "docs:json": "typedoc --entryPoints src/index.ts --entryPoints src/cors.ts --json docs/v2/spec.json --excludeExternals",
116
117
  "serve:coverage": "pnpm nx test:coverage supabase-js && pnpm dlx serve test/coverage",
@@ -4,4 +4,4 @@
4
4
  // - Debugging and support (identifying which version is running)
5
5
  // - Telemetry and logging (version reporting in errors/analytics)
6
6
  // - Ensuring build artifacts match the published package version
7
- export const version = '2.106.0'
7
+ export const version = '2.106.1-beta.0'