@supabase/supabase-js 2.110.3-canary.0 → 2.110.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@supabase/supabase-js",
3
- "version": "2.110.3-canary.0",
3
+ "version": "2.110.3",
4
4
  "description": "Isomorphic Javascript SDK for Supabase",
5
5
  "keywords": [
6
6
  "javascript",
@@ -59,11 +59,11 @@
59
59
  "directory": "packages/core/supabase-js"
60
60
  },
61
61
  "dependencies": {
62
- "@supabase/postgrest-js": "2.110.3-canary.0",
63
- "@supabase/realtime-js": "2.110.3-canary.0",
64
- "@supabase/auth-js": "2.110.3-canary.0",
65
- "@supabase/storage-js": "2.110.3-canary.0",
66
- "@supabase/functions-js": "2.110.3-canary.0"
62
+ "@supabase/auth-js": "2.110.3",
63
+ "@supabase/functions-js": "2.110.3",
64
+ "@supabase/postgrest-js": "2.110.3",
65
+ "@supabase/storage-js": "2.110.3",
66
+ "@supabase/realtime-js": "2.110.3"
67
67
  },
68
68
  "devDependencies": {
69
69
  "@arethetypeswrong/cli": "^0.18.2",
@@ -165,9 +165,9 @@ export default class SupabaseClient<
165
165
  * ```
166
166
  *
167
167
  * @exampleDescription Custom fetch implementation
168
- * `supabase-js` uses the [`cross-fetch`](https://www.npmjs.com/package/cross-fetch) library to make HTTP requests,
168
+ * `supabase-js` uses the runtime's global `fetch` to make HTTP requests,
169
169
  * but an alternative `fetch` implementation can be provided as an option.
170
- * This is most useful in environments where `cross-fetch` is not compatible (for instance Cloudflare Workers).
170
+ * This is useful in environments where the global `fetch` is unavailable or where you want to customize request behavior.
171
171
  *
172
172
  * @example Custom fetch implementation
173
173
  * ```js
@@ -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.110.3-canary.0'
7
+ export const version = '2.110.3'