@supabase/supabase-js 2.110.7 → 2.110.8-canary.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.110.7",
3
+ "version": "2.110.8-canary.0",
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/auth-js": "2.110.7",
63
- "@supabase/postgrest-js": "2.110.7",
64
- "@supabase/storage-js": "2.110.7",
65
- "@supabase/realtime-js": "2.110.7",
66
- "@supabase/functions-js": "2.110.7"
62
+ "@supabase/auth-js": "2.110.8-canary.0",
63
+ "@supabase/functions-js": "2.110.8-canary.0",
64
+ "@supabase/realtime-js": "2.110.8-canary.0",
65
+ "@supabase/postgrest-js": "2.110.8-canary.0",
66
+ "@supabase/storage-js": "2.110.8-canary.0"
67
67
  },
68
68
  "devDependencies": {
69
69
  "@arethetypeswrong/cli": "^0.18.2",
package/src/index.ts CHANGED
@@ -71,8 +71,8 @@ export const createClient = <
71
71
 
72
72
  // Check for Node.js <= 20 deprecation
73
73
  function shouldShowDeprecationWarning(): boolean {
74
- // Skip in browser environments
75
- if (typeof window !== 'undefined') {
74
+ // Skip in browser and Deno environments
75
+ if (typeof window !== 'undefined' || (globalThis as any)['Deno'] !== undefined) {
76
76
  return false
77
77
  }
78
78
 
@@ -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.7'
7
+ export const version = '2.110.8-canary.0'