@react-native-firebase/crashlytics 15.7.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,10 @@
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/crashlytics
9
+
6
10
  # [15.7.0](https://github.com/invertase/react-native-firebase/compare/v15.6.0...v15.7.0) (2022-10-01)
7
11
 
8
12
  **Note:** Version bump only for package @react-native-firebase/crashlytics
@@ -9,6 +9,8 @@ firebase_sdk_version = appPackage['sdkVersions']['ios']['firebase']
9
9
  if coreVersionDetected != coreVersionRequired
10
10
  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."
11
11
  end
12
+ firebase_ios_target = appPackage['sdkVersions']['ios']['iosTarget']
13
+ firebase_macos_target = appPackage['sdkVersions']['ios']['macosTarget']
12
14
 
13
15
  Pod::Spec.new do |s|
14
16
  s.name = "RNFBCrashlytics"
@@ -22,7 +24,8 @@ Pod::Spec.new do |s|
22
24
  s.authors = "Invertase Limited"
23
25
  s.source = { :git => "https://github.com/invertase/react-native-firebase.git", :tag => "v#{s.version}" }
24
26
  s.social_media_url = 'http://twitter.com/invertaseio'
25
- s.ios.deployment_target = "10.0"
27
+ s.ios.deployment_target = firebase_ios_target
28
+ s.macos.deployment_target = firebase_macos_target
26
29
  s.source_files = 'ios/**/*.{h,m}'
27
30
 
28
31
  # React Native dependencies
@@ -1,3 +1,5 @@
1
+ import { describe, expect, it } from '@jest/globals';
2
+
1
3
  import { firebase } from '../lib';
2
4
 
3
5
  describe('Crashlytics', function () {
package/lib/version.js CHANGED
@@ -1,2 +1,2 @@
1
1
  // Generated by genversion.
2
- module.exports = '15.7.0';
2
+ module.exports = '15.7.1';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-native-firebase/crashlytics",
3
- "version": "15.7.0",
3
+ "version": "15.7.1",
4
4
  "author": "Invertase <oss@invertase.io> (http://invertase.io)",
5
5
  "description": "React Native Firebase - Firebase Crashlytics is a lightweight, realtime crash reporter that helps you track, prioritize, and fix stability issues that erode your app quality. React Native Firebase provides automatic crash reporting for both native and JavaScript errors, including unhandled promise rejections.",
6
6
  "main": "lib/index.js",
@@ -29,7 +29,7 @@
29
29
  "crashlytics"
30
30
  ],
31
31
  "peerDependencies": {
32
- "@react-native-firebase/app": "15.7.0"
32
+ "@react-native-firebase/app": "15.7.1"
33
33
  },
34
34
  "dependencies": {
35
35
  "@expo/config-plugins": "^5.0.1",
@@ -38,5 +38,5 @@
38
38
  "publishConfig": {
39
39
  "access": "public"
40
40
  },
41
- "gitHead": "769bb2b92df5775109cc4222eed6d940d1f4853a"
41
+ "gitHead": "7845819f67e955d75b5756d30c2f5b55a68c9062"
42
42
  }