@firebase/firestore 3.3.0 → 3.3.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.
@@ -11,7 +11,7 @@ import { fileURLToPath } from 'url';
11
11
  import { loadSync } from '@grpc/proto-loader';
12
12
 
13
13
  const name = "@firebase/firestore";
14
- const version$1 = "3.3.0";
14
+ const version$1 = "3.3.1";
15
15
 
16
16
  /**
17
17
  * @license
@@ -64,7 +64,7 @@ User.GOOGLE_CREDENTIALS = new User('google-credentials-uid');
64
64
  User.FIRST_PARTY = new User('first-party-uid');
65
65
  User.MOCK_USER = new User('mock-user');
66
66
 
67
- const version = "9.4.0";
67
+ const version = "9.5.0";
68
68
 
69
69
  /**
70
70
  * @license
@@ -11268,10 +11268,10 @@ class IndexedDbPersistence {
11268
11268
  // accesses internal state. We execute this code directly during shutdown
11269
11269
  // to make sure it gets a chance to run.
11270
11270
  this.markClientZombied();
11271
- if (isSafari() && navigator.appVersion.match(`Version/14`)) {
11272
- // On Safari 14, we do not run any cleanup actions as it might trigger
11273
- // a bug that prevents Safari from re-opening IndexedDB during the
11274
- // next page load.
11271
+ if (isSafari() && navigator.appVersion.match(/Version\/1[45]/)) {
11272
+ // On Safari 14 and 15, we do not run any cleanup actions as it might
11273
+ // trigger a bug that prevents Safari from re-opening IndexedDB during
11274
+ // the next page load.
11275
11275
  // See https://bugs.webkit.org/show_bug.cgi?id=226547
11276
11276
  this.queue.enterRestrictedMode(/* purgeExistingTasks= */ true);
11277
11277
  }