firebase 10.7.1 → 10.7.2
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/app/dist/esm/index.esm.js +1 -1
- package/app/dist/index.cjs.js +1 -1
- package/app/dist/index.mjs +1 -1
- package/compat/app/dist/esm/index.esm.js +1 -1
- package/compat/app/dist/index.cjs.js +1 -1
- package/compat/app/dist/index.mjs +1 -1
- package/compat/dist/esm/index.esm.js +2 -2
- package/compat/dist/index.node.cjs +2 -2
- package/compat/dist/index.rn.cjs.js +2 -2
- package/firebase-analytics.js +1 -1
- package/firebase-app-check.js +1 -1
- package/firebase-app-compat.js +2 -2
- package/firebase-app-compat.js.map +1 -1
- package/firebase-app.js +14 -6
- package/firebase-app.js.map +1 -1
- package/firebase-auth-cordova.js +1 -1
- package/firebase-auth.js +1 -1
- package/firebase-compat.js +4 -4
- package/firebase-compat.js.map +1 -1
- package/firebase-database.js +1 -1
- package/firebase-firestore-compat.js +1 -1
- package/firebase-firestore-compat.js.map +1 -1
- package/firebase-firestore-lite.js +1 -1
- package/firebase-firestore-lite.js.map +1 -1
- package/firebase-firestore.js +1 -1
- package/firebase-firestore.js.map +1 -1
- package/firebase-functions.js +1 -1
- package/firebase-installations.js +1 -1
- package/firebase-messaging-sw.js +1 -1
- package/firebase-messaging.js +1 -1
- package/firebase-performance-standalone-compat.es2017.js +20 -20
- package/firebase-performance-standalone-compat.es2017.js.map +1 -1
- package/firebase-performance-standalone-compat.js +1 -1
- package/firebase-performance-standalone-compat.js.map +1 -1
- package/firebase-performance.js +1 -1
- package/firebase-remote-config.js +1 -1
- package/firebase-storage.js +1 -1
- package/package.json +5 -5
package/firebase-app.js
CHANGED
|
@@ -1623,8 +1623,8 @@ function isVersionServiceProvider(provider) {
|
|
|
1623
1623
|
return (component === null || component === void 0 ? void 0 : component.type) === "VERSION" /* ComponentType.VERSION */;
|
|
1624
1624
|
}
|
|
1625
1625
|
|
|
1626
|
-
const name$o = "https://www.gstatic.com/firebasejs/10.7.
|
|
1627
|
-
const version$1 = "0.9.
|
|
1626
|
+
const name$o = "https://www.gstatic.com/firebasejs/10.7.2/firebase-app.js";
|
|
1627
|
+
const version$1 = "0.9.26";
|
|
1628
1628
|
|
|
1629
1629
|
/**
|
|
1630
1630
|
* @license
|
|
@@ -1642,7 +1642,7 @@ const version$1 = "0.9.25";
|
|
|
1642
1642
|
* See the License for the specific language governing permissions and
|
|
1643
1643
|
* limitations under the License.
|
|
1644
1644
|
*/
|
|
1645
|
-
const logger = new Logger('https://www.gstatic.com/firebasejs/10.7.
|
|
1645
|
+
const logger = new Logger('https://www.gstatic.com/firebasejs/10.7.2/firebase-app.js');
|
|
1646
1646
|
|
|
1647
1647
|
const name$n = "@firebase/app-compat";
|
|
1648
1648
|
|
|
@@ -1691,7 +1691,7 @@ const name$2 = "@firebase/firestore";
|
|
|
1691
1691
|
const name$1 = "@firebase/firestore-compat";
|
|
1692
1692
|
|
|
1693
1693
|
const name$p = "firebase";
|
|
1694
|
-
const version$2 = "10.7.
|
|
1694
|
+
const version$2 = "10.7.2";
|
|
1695
1695
|
|
|
1696
1696
|
/**
|
|
1697
1697
|
* @license
|
|
@@ -2173,7 +2173,15 @@ function getDbPromise() {
|
|
|
2173
2173
|
// eslint-disable-next-line default-case
|
|
2174
2174
|
switch (oldVersion) {
|
|
2175
2175
|
case 0:
|
|
2176
|
-
|
|
2176
|
+
try {
|
|
2177
|
+
db.createObjectStore(STORE_NAME);
|
|
2178
|
+
}
|
|
2179
|
+
catch (e) {
|
|
2180
|
+
// Safari/iOS browsers throw occasional exceptions on
|
|
2181
|
+
// db.createObjectStore() that may be a bug. Avoid blocking
|
|
2182
|
+
// the rest of the app functionality.
|
|
2183
|
+
console.warn(e);
|
|
2184
|
+
}
|
|
2177
2185
|
}
|
|
2178
2186
|
}
|
|
2179
2187
|
}).catch(e => {
|
|
@@ -2508,7 +2516,7 @@ function registerCoreComponents(variant) {
|
|
|
2508
2516
|
registerCoreComponents('');
|
|
2509
2517
|
|
|
2510
2518
|
var name = "firebase";
|
|
2511
|
-
var version = "10.7.
|
|
2519
|
+
var version = "10.7.2";
|
|
2512
2520
|
|
|
2513
2521
|
/**
|
|
2514
2522
|
* @license
|