@react-native-firebase/firestore 15.6.0 → 15.7.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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [15.7.1](https://github.com/invertase/react-native-firebase/compare/v15.7.0...v15.7.1) (2022-10-19)
7
+
8
+ **Note:** Version bump only for package @react-native-firebase/firestore
9
+
10
+ # [15.7.0](https://github.com/invertase/react-native-firebase/compare/v15.6.0...v15.7.0) (2022-10-01)
11
+
12
+ **Note:** Version bump only for package @react-native-firebase/firestore
13
+
6
14
  # [15.6.0](https://github.com/invertase/react-native-firebase/compare/v15.5.0...v15.6.0) (2022-09-17)
7
15
 
8
16
  **Note:** Version bump only for package @react-native-firebase/firestore
@@ -8,6 +8,8 @@ firebase_sdk_version = appPackage['sdkVersions']['ios']['firebase']
8
8
  if coreVersionDetected != coreVersionRequired
9
9
  Pod::UI.warn "NPM package '#{package['name']}' depends on '#{appPackage['name']}' v#{coreVersionRequired} but found v#{coreVersionDetected}, this might cause build issues or runtime crashes."
10
10
  end
11
+ firebase_ios_target = appPackage['sdkVersions']['ios']['iosTarget']
12
+ firebase_macos_target = appPackage['sdkVersions']['ios']['macosTarget']
11
13
 
12
14
  Pod::Spec.new do |s|
13
15
  s.name = "RNFBFirestore"
@@ -21,7 +23,8 @@ Pod::Spec.new do |s|
21
23
  s.authors = "Invertase Limited"
22
24
  s.source = { :git => "https://github.com/invertase/react-native-firebase.git", :tag => "v#{s.version}" }
23
25
  s.social_media_url = 'http://twitter.com/invertaseio'
24
- s.ios.deployment_target = "10.0"
26
+ s.ios.deployment_target = firebase_ios_target
27
+ s.macos.deployment_target = firebase_macos_target
25
28
  s.source_files = 'ios/**/*.{h,m}'
26
29
 
27
30
  # React Native dependencies
@@ -36,6 +39,10 @@ Pod::Spec.new do |s|
36
39
  # Firebase dependencies
37
40
  s.dependency 'Firebase/Firestore', firebase_sdk_version
38
41
 
42
+ # required until firestore-ios-sdk-frameworks is updated, otherwise users of that distribution will have compile failures
43
+ # see https://github.com/invertase/firestore-ios-sdk-frameworks/issues/59
44
+ s.dependency 'nanopb', '>= 2.30908.0', '< 2.30910.0'
45
+
39
46
  if defined?($RNFirebaseAsStaticFramework)
40
47
  Pod::UI.puts "#{s.name}: Using overridden static_framework value of '#{$RNFirebaseAsStaticFramework}'"
41
48
  s.static_framework = $RNFirebaseAsStaticFramework
@@ -1,3 +1,5 @@
1
+ import { describe, expect, it } from '@jest/globals';
2
+
1
3
  import firestore, { firebase, FirebaseFirestoreTypes } from '../lib';
2
4
 
3
5
  const COLLECTION = 'firestore';
package/lib/version.js CHANGED
@@ -1,2 +1,2 @@
1
1
  // Generated by genversion.
2
- module.exports = '15.6.0';
2
+ module.exports = '15.7.1';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-native-firebase/firestore",
3
- "version": "15.6.0",
3
+ "version": "15.7.1",
4
4
  "author": "Invertase <oss@invertase.io> (http://invertase.io)",
5
5
  "description": "React Native Firebase - Cloud Firestore is a NoSQL cloud database to store and sync data between your React Native application and Firebase's database. The API matches the Firebase Web SDK whilst taking advantage of the native SDKs performance and offline capabilities.",
6
6
  "main": "lib/index.js",
@@ -27,10 +27,10 @@
27
27
  "firestore"
28
28
  ],
29
29
  "peerDependencies": {
30
- "@react-native-firebase/app": "15.6.0"
30
+ "@react-native-firebase/app": "15.7.1"
31
31
  },
32
32
  "publishConfig": {
33
33
  "access": "public"
34
34
  },
35
- "gitHead": "09edad10f28d4d2e0a471aa075c6f004826e1331"
35
+ "gitHead": "7845819f67e955d75b5756d30c2f5b55a68c9062"
36
36
  }