cordova-plugin-firebasex-firestore 2.0.0 → 2.0.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/CHANGELOG.md +6 -0
- package/package.json +2 -2
- package/plugin.xml +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
# Version 2.0.2
|
|
2
|
+
- fix: pin core plugin dependency to v2
|
|
3
|
+
|
|
4
|
+
# Version 2.0.1
|
|
5
|
+
- (ios) bugfix: pin `cordova-plugin-firebasex-core@^2.0.0` to ensure SPM version is available for `cordova-ios@8+`.
|
|
6
|
+
|
|
1
7
|
# Version 2.0.0
|
|
2
8
|
- (ios) feat - BREAKING: Use Swift Package Manager (SPM) for Firebase SDK and other dependencies with `cordova-ios@8+`; continue to use Cocoapods for `cordova-ios@7`.
|
|
3
9
|
- (android) Update pinned Firebase SDK versions to BoM v34.14.0 (May 28, 2026)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cordova-plugin-firebasex-firestore",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.2",
|
|
4
4
|
"description": "Firestore module for cordova-plugin-firebasex",
|
|
5
5
|
"cordova": {
|
|
6
6
|
"id": "cordova-plugin-firebasex-firestore",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"author": "Dave Alden",
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"cordova-plugin-firebasex-core": "^
|
|
26
|
+
"cordova-plugin-firebasex-core": "^2.0.0"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"xml-js": "^1.6.11"
|
package/plugin.xml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<?xml version='1.0' encoding='utf-8'?>
|
|
2
2
|
<plugin id="cordova-plugin-firebasex-firestore"
|
|
3
|
-
version="2.0.
|
|
3
|
+
version="2.0.2"
|
|
4
4
|
xmlns="http://apache.org/cordova/ns/plugins/1.0"
|
|
5
5
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
|
6
6
|
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
<engine name="cordova-ios" version=">=7.0.0" />
|
|
16
16
|
</engines>
|
|
17
17
|
|
|
18
|
-
<dependency id="cordova-plugin-firebasex-core" />
|
|
18
|
+
<dependency id="cordova-plugin-firebasex-core" version="^2.0.0" />
|
|
19
19
|
|
|
20
20
|
<preference name="IOS_USE_PRECOMPILED_FIRESTORE_POD" default="false" />
|
|
21
21
|
|