@supabase/supabase-js 2.110.6 → 2.110.7-canary.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@supabase/supabase-js",
3
- "version": "2.110.6",
3
+ "version": "2.110.7-canary.1",
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.6",
63
- "@supabase/auth-js": "2.110.6",
64
- "@supabase/functions-js": "2.110.6",
65
- "@supabase/realtime-js": "2.110.6",
66
- "@supabase/storage-js": "2.110.6"
62
+ "@supabase/auth-js": "2.110.7-canary.1",
63
+ "@supabase/postgrest-js": "2.110.7-canary.1",
64
+ "@supabase/realtime-js": "2.110.7-canary.1",
65
+ "@supabase/functions-js": "2.110.7-canary.1",
66
+ "@supabase/storage-js": "2.110.7-canary.1"
67
67
  },
68
68
  "devDependencies": {
69
69
  "@arethetypeswrong/cli": "^0.18.2",
@@ -669,7 +669,7 @@ export default class SupabaseClient<
669
669
  token?: string
670
670
  ) {
671
671
  if (
672
- (event === 'TOKEN_REFRESHED' || event === 'SIGNED_IN') &&
672
+ (event === 'TOKEN_REFRESHED' || event === 'SIGNED_IN' || event === 'INITIAL_SESSION') &&
673
673
  this.changedAccessToken !== token
674
674
  ) {
675
675
  this.changedAccessToken = token
@@ -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.6'
7
+ export const version = '2.110.7-canary.1'