firebase 9.4.1 → 9.5.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.
Files changed (42) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/app/dist/index.cjs.js +1 -1
  3. package/app/dist/index.esm.js +1 -1
  4. package/app/dist/index.mjs +1 -1
  5. package/compat/app/dist/index.cjs.js +1 -1
  6. package/compat/app/dist/index.esm.js +1 -1
  7. package/compat/app/dist/index.mjs +1 -1
  8. package/compat/dist/index.esm.js +2 -2
  9. package/compat/dist/index.node.cjs +2 -2
  10. package/compat/dist/index.rn.cjs.js +2 -2
  11. package/firebase-analytics.js +3 -3
  12. package/firebase-app-check-compat.js +2 -2
  13. package/firebase-app-check-compat.js.map +1 -1
  14. package/firebase-app-check.js +285 -50
  15. package/firebase-app-check.js.map +1 -1
  16. package/firebase-app-compat.js +2 -2
  17. package/firebase-app-compat.js.map +1 -1
  18. package/firebase-app.js +9 -9
  19. package/firebase-auth.js +2 -2
  20. package/firebase-compat.js +4 -4
  21. package/firebase-compat.js.map +1 -1
  22. package/firebase-database.js +4 -4
  23. package/firebase-firestore-compat.js +1 -1
  24. package/firebase-firestore-compat.js.map +1 -1
  25. package/firebase-firestore-lite.js +7 -7
  26. package/firebase-firestore-lite.js.map +1 -1
  27. package/firebase-firestore.js +12 -12
  28. package/firebase-firestore.js.map +1 -1
  29. package/firebase-functions.js +2 -2
  30. package/firebase-messaging-sw.js +1 -1
  31. package/firebase-messaging.js +1 -1
  32. package/firebase-performance-standalone-compat.es2017.js +5 -5
  33. package/firebase-performance-standalone-compat.es2017.js.map +1 -1
  34. package/firebase-performance-standalone-compat.js +1 -1
  35. package/firebase-performance-standalone-compat.js.map +1 -1
  36. package/firebase-performance.js +3 -3
  37. package/firebase-remote-config.js +2 -2
  38. package/firebase-storage-compat.js +1 -1
  39. package/firebase-storage-compat.js.map +1 -1
  40. package/firebase-storage.js +177 -24
  41. package/firebase-storage.js.map +1 -1
  42. package/package.json +9 -9
package/firebase-app.js CHANGED
@@ -879,8 +879,8 @@ function isVersionServiceProvider(provider) {
879
879
  return (component === null || component === void 0 ? void 0 : component.type) === "VERSION" /* VERSION */;
880
880
  }
881
881
 
882
- const name$o = "https://www.gstatic.com/firebasejs/9.4.1/firebase-app.js";
883
- const version$1 = "0.7.8";
882
+ const name$o = "https://www.gstatic.com/firebasejs/9.5.0/firebase-app.js";
883
+ const version$1 = "0.7.9";
884
884
 
885
885
  /**
886
886
  * @license
@@ -898,17 +898,17 @@ const version$1 = "0.7.8";
898
898
  * See the License for the specific language governing permissions and
899
899
  * limitations under the License.
900
900
  */
901
- const logger = new Logger('https://www.gstatic.com/firebasejs/9.4.1/firebase-app.js');
901
+ const logger = new Logger('https://www.gstatic.com/firebasejs/9.5.0/firebase-app.js');
902
902
 
903
- const name$n = "https://www.gstatic.com/firebasejs/9.4.1/firebase-app.js-compat";
903
+ const name$n = "https://www.gstatic.com/firebasejs/9.5.0/firebase-app.js-compat";
904
904
 
905
905
  const name$m = "@firebase/analytics-compat";
906
906
 
907
907
  const name$l = "@firebase/analytics";
908
908
 
909
- const name$k = "https://www.gstatic.com/firebasejs/9.4.1/firebase-app.js-check-compat";
909
+ const name$k = "https://www.gstatic.com/firebasejs/9.5.0/firebase-app.js-check-compat";
910
910
 
911
- const name$j = "https://www.gstatic.com/firebasejs/9.4.1/firebase-app.js-check";
911
+ const name$j = "https://www.gstatic.com/firebasejs/9.5.0/firebase-app.js-check";
912
912
 
913
913
  const name$i = "@firebase/auth";
914
914
 
@@ -947,7 +947,7 @@ const name$2 = "@firebase/firestore";
947
947
  const name$1 = "@firebase/firestore-compat";
948
948
 
949
949
  const name$p = "firebase";
950
- const version$2 = "9.4.1";
950
+ const version$2 = "9.5.0";
951
951
 
952
952
  /**
953
953
  * @license
@@ -1248,7 +1248,7 @@ function initializeApp(options, rawConfig = {}) {
1248
1248
  return newApp;
1249
1249
  }
1250
1250
  /**
1251
- * Retrieves a {@link https://www.gstatic.com/firebasejs/9.4.1/firebase-app.js#FirebaseApp} instance.
1251
+ * Retrieves a {@link https://www.gstatic.com/firebasejs/9.5.0/firebase-app.js#FirebaseApp} instance.
1252
1252
  *
1253
1253
  * When called with no arguments, the default app is returned. When an app name
1254
1254
  * is provided, the app corresponding to that name is returned.
@@ -1414,7 +1414,7 @@ function registerCoreComponents(variant) {
1414
1414
  registerCoreComponents('');
1415
1415
 
1416
1416
  var name = "firebase";
1417
- var version = "9.4.1";
1417
+ var version = "9.5.0";
1418
1418
 
1419
1419
  /**
1420
1420
  * @license
package/firebase-auth.js CHANGED
@@ -1,4 +1,4 @@
1
- import { _getProvider, _registerComponent, SDK_VERSION, registerVersion, getApp } from 'https://www.gstatic.com/firebasejs/9.4.1/firebase-app.js';
1
+ import { _getProvider, _registerComponent, SDK_VERSION, registerVersion, getApp } from 'https://www.gstatic.com/firebasejs/9.5.0/firebase-app.js';
2
2
 
3
3
  /**
4
4
  * @license
@@ -10303,7 +10303,7 @@ function registerAuth(clientPlatform) {
10303
10303
  * limitations under the License.
10304
10304
  */
10305
10305
  /**
10306
- * Returns the Auth instance associated with the provided {@link https://www.gstatic.com/firebasejs/9.4.1/firebase-app.js#FirebaseApp}.
10306
+ * Returns the Auth instance associated with the provided {@link https://www.gstatic.com/firebasejs/9.5.0/firebase-app.js#FirebaseApp}.
10307
10307
  * If no instance exists, initializes an Auth instance with platform-specific default dependencies.
10308
10308
  *
10309
10309
  * @param app - The Firebase App.