@firebase/firestore 4.7.15 → 4.7.16-20250521232236

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.
@@ -34,7 +34,7 @@ var grpc__namespace = /*#__PURE__*/_interopNamespace(grpc);
34
34
  var protoLoader__namespace = /*#__PURE__*/_interopNamespace(protoLoader);
35
35
 
36
36
  const name = "@firebase/firestore";
37
- const version$1 = "4.7.15";
37
+ const version$1 = "4.7.16-20250521232236";
38
38
 
39
39
  /**
40
40
  * @license
@@ -87,7 +87,7 @@ User.GOOGLE_CREDENTIALS = new User('google-credentials-uid');
87
87
  User.FIRST_PARTY = new User('first-party-uid');
88
88
  User.MOCK_USER = new User('mock-user');
89
89
 
90
- const version = "11.8.0";
90
+ const version = "11.8.1-20250521232236";
91
91
 
92
92
  /**
93
93
  * @license
@@ -28088,7 +28088,6 @@ class Firestore$1 {
28088
28088
  }
28089
28089
  _freezeSettings() {
28090
28090
  this._settingsFrozen = true;
28091
- util.updateEmulatorBanner('Firestore', this._settings.isUsingEmulator);
28092
28091
  return this._settings;
28093
28092
  }
28094
28093
  _delete() {
@@ -28150,6 +28149,10 @@ function connectFirestoreEmulator(firestore, host, port, options = {}) {
28150
28149
  const settings = firestore._getSettings();
28151
28150
  const existingConfig = Object.assign(Object.assign({}, settings), { emulatorOptions: firestore._getEmulatorOptions() });
28152
28151
  const newHostSetting = `${host}:${port}`;
28152
+ if (useSsl) {
28153
+ void util.pingServer(`https://${newHostSetting}`);
28154
+ util.updateEmulatorBanner('Firestore', true);
28155
+ }
28153
28156
  if (settings.host !== DEFAULT_HOST && settings.host !== newHostSetting) {
28154
28157
  logWarn('Host has been set in both settings() and connectFirestoreEmulator(), emulator host ' +
28155
28158
  'will be used.');
@@ -28161,10 +28164,6 @@ function connectFirestoreEmulator(firestore, host, port, options = {}) {
28161
28164
  return;
28162
28165
  }
28163
28166
  firestore._setSettings(newConfig);
28164
- if (useSsl) {
28165
- void util.pingServer(`https://${newHostSetting}`);
28166
- util.updateEmulatorBanner('Firestore', true);
28167
- }
28168
28167
  if (options.mockUserToken) {
28169
28168
  let token;
28170
28169
  let user;