Skip to content

Commit 53b687b

Browse files
committed
chore(release): release packages
1 parent b0be508 commit 53b687b

39 files changed

+238
-106
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,27 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [19.0.0](https://github.com/invertase/react-native-firebase/compare/v18.9.0...v19.0.0) (2024-02-26)
7+
8+
### ⚠ BREAKING CHANGES
9+
10+
- **auth, android:** multifactor error messages were auth/unknown before on android
11+
Now they will correctly come through as auth/invalid-verification-code
12+
If you were relying on the previous auth/unknown codes you
13+
will need to update your error handling code
14+
- **app, sdks:** firebase-ios-sdk 10.21.0 requires cocoapods 1.12+
15+
in order to support the new Apple-mandated privacy manifests. Please
16+
ensure you are using verson 1.12 or greater of cocoapods
17+
18+
### Features
19+
20+
- **analytics, ios:** add Podfile toggle to optionally link AdSupport ([e4db9bb](https://github.com/invertase/react-native-firebase/commit/e4db9bbf0266de658ae3991568f5e04f1fcf7fc7))
21+
22+
### Bug Fixes
23+
24+
- **app, sdks:** SDK ios 10.21.0 / android / 32.7.2 ([9dc48be](https://github.com/invertase/react-native-firebase/commit/9dc48be52603c71b134dadca16502e8557aca95b))
25+
- **auth, android:** correct error messages for finalizeMultiFactorEnrollment ([b0be508](https://github.com/invertase/react-native-firebase/commit/b0be508e3336fc5577795791b727f23e1a9bbbca))
26+
627
## [18.9.0](https://github.com/invertase/react-native-firebase/compare/v18.8.0...v18.9.0) (2024-02-21)
728

829
### Features

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,5 +76,5 @@
7676
"userUrlFormat": "{{host}}/{{user}}"
7777
},
7878
"ignoreChanges": ["**/docs/**", "**/.github/**", "**/e2e/**", "**/tests/**"],
79-
"version": "18.9.0"
79+
"version": "19.0.0"
8080
}

packages/analytics/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [19.0.0](https://github.com/invertase/react-native-firebase/compare/v18.9.0...v19.0.0) (2024-02-26)
7+
8+
### Features
9+
10+
- **analytics, ios:** add Podfile toggle to optionally link AdSupport ([e4db9bb](https://github.com/invertase/react-native-firebase/commit/e4db9bbf0266de658ae3991568f5e04f1fcf7fc7))
11+
612
## [18.9.0](https://github.com/invertase/react-native-firebase/compare/v18.8.0...v18.9.0) (2024-02-21)
713

814
### Features

packages/analytics/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-native-firebase/analytics",
3-
"version": "18.9.0",
3+
"version": "19.0.0",
44
"author": "Invertase <[email protected]> (http://invertase.io)",
55
"description": "React Native Firebase - The analytics module provides out of the box support with Google Analytics for Firebase. Integration with the Android & iOS allows for in-depth analytical insight reporting, such as device information, location, user actions and more.",
66
"main": "lib/index.js",
@@ -22,7 +22,7 @@
2222
"analytics"
2323
],
2424
"peerDependencies": {
25-
"@react-native-firebase/app": "18.9.0"
25+
"@react-native-firebase/app": "19.0.0"
2626
},
2727
"publishConfig": {
2828
"access": "public"

packages/app-check/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [19.0.0](https://github.com/invertase/react-native-firebase/compare/v18.9.0...v19.0.0) (2024-02-26)
7+
8+
**Note:** Version bump only for package @react-native-firebase/app-check
9+
610
## [18.9.0](https://github.com/invertase/react-native-firebase/compare/v18.8.0...v18.9.0) (2024-02-21)
711

812
**Note:** Version bump only for package @react-native-firebase/app-check

packages/app-check/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-native-firebase/app-check",
3-
"version": "18.9.0",
3+
"version": "19.0.0",
44
"author": "Invertase <[email protected]> (http://invertase.io)",
55
"description": "React Native Firebase - App Check",
66
"main": "lib/index.js",
@@ -23,7 +23,7 @@
2323
"appCheck"
2424
],
2525
"peerDependencies": {
26-
"@react-native-firebase/app": "18.9.0"
26+
"@react-native-firebase/app": "19.0.0"
2727
},
2828
"publishConfig": {
2929
"access": "public"

packages/app-distribution/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [19.0.0](https://github.com/invertase/react-native-firebase/compare/v18.9.0...v19.0.0) (2024-02-26)
7+
8+
### ⚠ BREAKING CHANGES
9+
10+
- **app, sdks:** firebase-ios-sdk 10.21.0 requires cocoapods 1.12+
11+
in order to support the new Apple-mandated privacy manifests. Please
12+
ensure you are using verson 1.12 or greater of cocoapods
13+
14+
### Bug Fixes
15+
16+
- **app, sdks:** SDK ios 10.21.0 / android / 32.7.2 ([9dc48be](https://github.com/invertase/react-native-firebase/commit/9dc48be52603c71b134dadca16502e8557aca95b))
17+
618
## [18.9.0](https://github.com/invertase/react-native-firebase/compare/v18.8.0...v18.9.0) (2024-02-21)
719

820
**Note:** Version bump only for package @react-native-firebase/app-distribution

packages/app-distribution/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-native-firebase/app-distribution",
3-
"version": "18.9.0",
3+
"version": "19.0.0",
44
"author": "Invertase <[email protected]> (http://invertase.io)",
55
"description": "React Native Firebase - App Distribution",
66
"main": "lib/index.js",
@@ -22,7 +22,7 @@
2222
"app-distribution"
2323
],
2424
"peerDependencies": {
25-
"@react-native-firebase/app": "18.9.0"
25+
"@react-native-firebase/app": "19.0.0"
2626
},
2727
"publishConfig": {
2828
"access": "public"

packages/app/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [19.0.0](https://github.com/invertase/react-native-firebase/compare/v18.9.0...v19.0.0) (2024-02-26)
7+
8+
### ⚠ BREAKING CHANGES
9+
10+
- **app, sdks:** firebase-ios-sdk 10.21.0 requires cocoapods 1.12+
11+
in order to support the new Apple-mandated privacy manifests. Please
12+
ensure you are using verson 1.12 or greater of cocoapods
13+
14+
### Bug Fixes
15+
16+
- **app, sdks:** SDK ios 10.21.0 / android / 32.7.2 ([9dc48be](https://github.com/invertase/react-native-firebase/commit/9dc48be52603c71b134dadca16502e8557aca95b))
17+
618
## [18.9.0](https://github.com/invertase/react-native-firebase/compare/v18.8.0...v18.9.0) (2024-02-21)
719

820
### Features

packages/app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-native-firebase/app",
3-
"version": "18.9.0",
3+
"version": "19.0.0",
44
"author": "Invertase <[email protected]> (http://invertase.io)",
55
"description": "A well tested, feature rich Firebase implementation for React Native, supporting iOS & Android. Individual module support for Admob, Analytics, Auth, Crash Reporting, Cloud Firestore, Database, Dynamic Links, Functions, Messaging (FCM), Remote Config, Storage and more.",
66
"main": "lib/index.js",

0 commit comments

Comments
 (0)