Skip to content

chore(deps-dev): bump the uncategorized group across 1 directory with 10 updates #87

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 7, 2025

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 5, 2025

Bumps the uncategorized group with 10 updates in the / directory:

Package From To
@react-native-firebase/analytics 21.14.0 22.1.0
@react-native-firebase/app 21.14.0 22.1.0
@react-native-firebase/auth 21.14.0 22.1.0
@react-native-firebase/crashlytics 21.14.0 22.1.0
@react-native-firebase/firestore 21.14.0 22.1.0
@react-native-firebase/installations 21.14.0 22.1.0
@react-native-firebase/remote-config 21.14.0 22.1.0
typedoc 0.28.3 0.28.4
typedoc-plugin-markdown 4.6.2 4.6.3
firebase 11.6.0 11.6.1

Updates @react-native-firebase/analytics from 21.14.0 to 22.1.0

Release notes

Sourced from @​react-native-firebase/analytics's releases.

v5.6.0 - Sign-in with Apple support, react-native 0.60+ only

Please note v5 is still seeing releases, but they are for breaking ecosystem changes only - just enough so it remains relevant for those that can't move to v6 yet.

This change allows use of Sign-in with Apple, an iOS13+ requirement to avoid rejection by the App Store if you use any forms of social authentication.

Breaking: Note that iOS13+ is only supported with Xcode 11+, which requires react-native 0.60+

You may find that react-native-firebase v5.6.x still works on react-native 0.59 (the test suite still does), but you will not be able to integrate Sign-in with Apple until you upgrade as that library is react-native 0.60+ only.

It works well with https://github.com/invertase/react-native-apple-authentication including a guide specifically for integrating with react-native-firebase, though note the import statements are for v6, you'll need to import auth in the v5 style to use it: https://github.com/invertase/react-native-apple-authentication/blob/master/docs/FIREBASE.md

See discussion in the related issue: invertase/react-native-firebase#2884

https://rnfirebase.io/docs/v5.x.x/releases/v5.6.x

Changelog

Sourced from @​react-native-firebase/analytics's changelog.

22.1.0 (2025-04-30)

Features

  • auth, expo: add support for AppDelegate.swift (e4966ef)

Bug Fixes

  • app, expo: add config plugin support for Expo SDK 53 (#8495) (7617611)
  • app, expo: update config plugin to match Expo 53.0.1 AppDelegate (#8500) (3d3c4ec)
  • app: provide modular-like APIs for RNFB-specific json/meta/preferences methods (9bb5365)
  • app: toString() does not exist in modular API, use .name property (2a99366)
  • auth, android: catch native error in signWithEmailLink (a08580e)
  • auth: delegate modular multiFactor to MultiFactorUser constructor (0937c77)
  • firestore, types: exist -> exists() change reflected in types (339834d)
  • messaging: correctly pass options in modular getToken/deleteToken (d29dfc8)
  • vertexai: package.json main needs updating to commonjs path (abe6c19)

22.0.0 (2025-04-25)

⚠ BREAKING CHANGES

  • firestore: alter all use of DocumentSnapshot exists to exists() - should be a method not a property
  • auth: return type of auth isSignInWithEmailLink changed from boolean to Promise<boolean>
  • app, sdks: firebase-ios-sdk 11.12.0 requires Xcode 16.2+

Features

  • app, sdks: firebase-ios-sdk 11.12.0 / firebase-android-sdk 33.13.0 (c63d843)
  • auth: use native isSignInWithEmailLink - returns Promise vs boolean (#8450) (3785690)

Bug Fixes

  • analytics: Type defs (#8363) (74efc84)
  • android: use = assignment vs deprecated space-assignment (39c2ecb)
  • auth: Make REVERSED_CLIENT_ID optional (#8470) (a909d1b)
  • enable provenance signing during publish (4535f0d)
  • firestore: DocumentSnapshot.exists() should be a method not a property (#8483) (346272c)
Commits
  • af6096e chore(release): release packages
  • a08580e fix(auth, android): catch native error in signWithEmailLink
  • 7a3a9d6 docs(auth): correct isSignInWithEmailLink docs / note apiKey requirement
  • 26c9e70 test: turn on modular deprecation strict mode for e2e suite
  • 4ce3e03 test: fix remaining e2e modular deprecation warnings
  • a07b83e test(remote-config): fix all remoteConfig e2e modular deprecation warnings
  • f7435c2 test(perf): fix all perf e2e deprecation warnings
  • 725fd84 test(storage): fix all storage e2e deprecation warnings
  • 98d748b test(database): fix all database e2e modular deprecation warnings
  • 0d2f2f4 test(auth): fix all auth e2e deprecation warnings
  • Additional commits viewable in compare view

Updates @react-native-firebase/app from 21.14.0 to 22.1.0

Release notes

Sourced from @​react-native-firebase/app's releases.

v5.6.0 - Sign-in with Apple support, react-native 0.60+ only

Please note v5 is still seeing releases, but they are for breaking ecosystem changes only - just enough so it remains relevant for those that can't move to v6 yet.

This change allows use of Sign-in with Apple, an iOS13+ requirement to avoid rejection by the App Store if you use any forms of social authentication.

Breaking: Note that iOS13+ is only supported with Xcode 11+, which requires react-native 0.60+

You may find that react-native-firebase v5.6.x still works on react-native 0.59 (the test suite still does), but you will not be able to integrate Sign-in with Apple until you upgrade as that library is react-native 0.60+ only.

It works well with https://github.com/invertase/react-native-apple-authentication including a guide specifically for integrating with react-native-firebase, though note the import statements are for v6, you'll need to import auth in the v5 style to use it: https://github.com/invertase/react-native-apple-authentication/blob/master/docs/FIREBASE.md

See discussion in the related issue: invertase/react-native-firebase#2884

https://rnfirebase.io/docs/v5.x.x/releases/v5.6.x

Changelog

Sourced from @​react-native-firebase/app's changelog.

22.1.0 (2025-04-30)

Features

  • auth, expo: add support for AppDelegate.swift (e4966ef)

Bug Fixes

  • app, expo: add config plugin support for Expo SDK 53 (#8495) (7617611)
  • app, expo: update config plugin to match Expo 53.0.1 AppDelegate (#8500) (3d3c4ec)
  • app: provide modular-like APIs for RNFB-specific json/meta/preferences methods (9bb5365)
  • app: toString() does not exist in modular API, use .name property (2a99366)
  • auth, android: catch native error in signWithEmailLink (a08580e)
  • auth: delegate modular multiFactor to MultiFactorUser constructor (0937c77)
  • firestore, types: exist -> exists() change reflected in types (339834d)
  • messaging: correctly pass options in modular getToken/deleteToken (d29dfc8)
  • vertexai: package.json main needs updating to commonjs path (abe6c19)

22.0.0 (2025-04-25)

⚠ BREAKING CHANGES

  • firestore: alter all use of DocumentSnapshot exists to exists() - should be a method not a property
  • auth: return type of auth isSignInWithEmailLink changed from boolean to Promise<boolean>
  • app, sdks: firebase-ios-sdk 11.12.0 requires Xcode 16.2+

Features

  • app, sdks: firebase-ios-sdk 11.12.0 / firebase-android-sdk 33.13.0 (c63d843)
  • auth: use native isSignInWithEmailLink - returns Promise vs boolean (#8450) (3785690)

Bug Fixes

  • analytics: Type defs (#8363) (74efc84)
  • android: use = assignment vs deprecated space-assignment (39c2ecb)
  • auth: Make REVERSED_CLIENT_ID optional (#8470) (a909d1b)
  • enable provenance signing during publish (4535f0d)
  • firestore: DocumentSnapshot.exists() should be a method not a property (#8483) (346272c)
Commits
  • af6096e chore(release): release packages
  • a08580e fix(auth, android): catch native error in signWithEmailLink
  • 7a3a9d6 docs(auth): correct isSignInWithEmailLink docs / note apiKey requirement
  • 26c9e70 test: turn on modular deprecation strict mode for e2e suite
  • 4ce3e03 test: fix remaining e2e modular deprecation warnings
  • a07b83e test(remote-config): fix all remoteConfig e2e modular deprecation warnings
  • f7435c2 test(perf): fix all perf e2e deprecation warnings
  • 725fd84 test(storage): fix all storage e2e deprecation warnings
  • 98d748b test(database): fix all database e2e modular deprecation warnings
  • 0d2f2f4 test(auth): fix all auth e2e deprecation warnings
  • Additional commits viewable in compare view

Updates @react-native-firebase/auth from 21.14.0 to 22.1.0

Release notes

Sourced from @​react-native-firebase/auth's releases.

v5.6.0 - Sign-in with Apple support, react-native 0.60+ only

Please note v5 is still seeing releases, but they are for breaking ecosystem changes only - just enough so it remains relevant for those that can't move to v6 yet.

This change allows use of Sign-in with Apple, an iOS13+ requirement to avoid rejection by the App Store if you use any forms of social authentication.

Breaking: Note that iOS13+ is only supported with Xcode 11+, which requires react-native 0.60+

You may find that react-native-firebase v5.6.x still works on react-native 0.59 (the test suite still does), but you will not be able to integrate Sign-in with Apple until you upgrade as that library is react-native 0.60+ only.

It works well with https://github.com/invertase/react-native-apple-authentication including a guide specifically for integrating with react-native-firebase, though note the import statements are for v6, you'll need to import auth in the v5 style to use it: https://github.com/invertase/react-native-apple-authentication/blob/master/docs/FIREBASE.md

See discussion in the related issue: invertase/react-native-firebase#2884

https://rnfirebase.io/docs/v5.x.x/releases/v5.6.x

Changelog

Sourced from @​react-native-firebase/auth's changelog.

22.1.0 (2025-04-30)

Features

  • auth, expo: add support for AppDelegate.swift (e4966ef)

Bug Fixes

  • app, expo: add config plugin support for Expo SDK 53 (#8495) (7617611)
  • app, expo: update config plugin to match Expo 53.0.1 AppDelegate (#8500) (3d3c4ec)
  • app: provide modular-like APIs for RNFB-specific json/meta/preferences methods (9bb5365)
  • app: toString() does not exist in modular API, use .name property (2a99366)
  • auth, android: catch native error in signWithEmailLink (a08580e)
  • auth: delegate modular multiFactor to MultiFactorUser constructor (0937c77)
  • firestore, types: exist -> exists() change reflected in types (339834d)
  • messaging: correctly pass options in modular getToken/deleteToken (d29dfc8)
  • vertexai: package.json main needs updating to commonjs path (abe6c19)

22.0.0 (2025-04-25)

⚠ BREAKING CHANGES

  • firestore: alter all use of DocumentSnapshot exists to exists() - should be a method not a property
  • auth: return type of auth isSignInWithEmailLink changed from boolean to Promise<boolean>
  • app, sdks: firebase-ios-sdk 11.12.0 requires Xcode 16.2+

Features

  • app, sdks: firebase-ios-sdk 11.12.0 / firebase-android-sdk 33.13.0 (c63d843)
  • auth: use native isSignInWithEmailLink - returns Promise vs boolean (#8450) (3785690)

Bug Fixes

  • analytics: Type defs (#8363) (74efc84)
  • android: use = assignment vs deprecated space-assignment (39c2ecb)
  • auth: Make REVERSED_CLIENT_ID optional (#8470) (a909d1b)
  • enable provenance signing during publish (4535f0d)
  • firestore: DocumentSnapshot.exists() should be a method not a property (#8483) (346272c)
Commits
  • af6096e chore(release): release packages
  • a08580e fix(auth, android): catch native error in signWithEmailLink
  • 7a3a9d6 docs(auth): correct isSignInWithEmailLink docs / note apiKey requirement
  • 26c9e70 test: turn on modular deprecation strict mode for e2e suite
  • 4ce3e03 test: fix remaining e2e modular deprecation warnings
  • a07b83e test(remote-config): fix all remoteConfig e2e modular deprecation warnings
  • f7435c2 test(perf): fix all perf e2e deprecation warnings
  • 725fd84 test(storage): fix all storage e2e deprecation warnings
  • 98d748b test(database): fix all database e2e modular deprecation warnings
  • 0d2f2f4 test(auth): fix all auth e2e deprecation warnings
  • Additional commits viewable in compare view

Updates @react-native-firebase/crashlytics from 21.14.0 to 22.1.0

Release notes

Sourced from @​react-native-firebase/crashlytics's releases.

v5.6.0 - Sign-in with Apple support, react-native 0.60+ only

Please note v5 is still seeing releases, but they are for breaking ecosystem changes only - just enough so it remains relevant for those that can't move to v6 yet.

This change allows use of Sign-in with Apple, an iOS13+ requirement to avoid rejection by the App Store if you use any forms of social authentication.

Breaking: Note that iOS13+ is only supported with Xcode 11+, which requires react-native 0.60+

You may find that react-native-firebase v5.6.x still works on react-native 0.59 (the test suite still does), but you will not be able to integrate Sign-in with Apple until you upgrade as that library is react-native 0.60+ only.

It works well with https://github.com/invertase/react-native-apple-authentication including a guide specifically for integrating with react-native-firebase, though note the import statements are for v6, you'll need to import auth in the v5 style to use it: https://github.com/invertase/react-native-apple-authentication/blob/master/docs/FIREBASE.md

See discussion in the related issue: invertase/react-native-firebase#2884

https://rnfirebase.io/docs/v5.x.x/releases/v5.6.x

Changelog

Sourced from @​react-native-firebase/crashlytics's changelog.

22.1.0 (2025-04-30)

Features

  • auth, expo: add support for AppDelegate.swift (e4966ef)

Bug Fixes

  • app, expo: add config plugin support for Expo SDK 53 (#8495) (7617611)
  • app, expo: update config plugin to match Expo 53.0.1 AppDelegate (#8500) (3d3c4ec)
  • app: provide modular-like APIs for RNFB-specific json/meta/preferences methods (9bb5365)
  • app: toString() does not exist in modular API, use .name property (2a99366)
  • auth, android: catch native error in signWithEmailLink (a08580e)
  • auth: delegate modular multiFactor to MultiFactorUser constructor (0937c77)
  • firestore, types: exist -> exists() change reflected in types (339834d)
  • messaging: correctly pass options in modular getToken/deleteToken (d29dfc8)
  • vertexai: package.json main needs updating to commonjs path (abe6c19)

22.0.0 (2025-04-25)

⚠ BREAKING CHANGES

  • firestore: alter all use of DocumentSnapshot exists to exists() - should be a method not a property
  • auth: return type of auth isSignInWithEmailLink changed from boolean to Promise<boolean>
  • app, sdks: firebase-ios-sdk 11.12.0 requires Xcode 16.2+

Features

  • app, sdks: firebase-ios-sdk 11.12.0 / firebase-android-sdk 33.13.0 (c63d843)
  • auth: use native isSignInWithEmailLink - returns Promise vs boolean (#8450) (3785690)

Bug Fixes

  • analytics: Type defs (#8363) (74efc84)
  • android: use = assignment vs deprecated space-assignment (39c2ecb)
  • auth: Make REVERSED_CLIENT_ID optional (#8470) (a909d1b)
  • enable provenance signing during publish (4535f0d)
  • firestore: DocumentSnapshot.exists() should be a method not a property (#8483) (346272c)
Commits
  • af6096e chore(release): release packages
  • a08580e fix(auth, android): catch native error in signWithEmailLink
  • 7a3a9d6 docs(auth): correct isSignInWithEmailLink docs / note apiKey requirement
  • 26c9e70 test: turn on modular deprecation strict mode for e2e suite
  • 4ce3e03 test: fix remaining e2e modular deprecation warnings
  • a07b83e test(remote-config): fix all remoteConfig e2e modular deprecation warnings
  • f7435c2 test(perf): fix all perf e2e deprecation warnings
  • 725fd84 test(storage): fix all storage e2e deprecation warnings
  • 98d748b test(database): fix all database e2e modular deprecation warnings
  • 0d2f2f4 test(auth): fix all auth e2e deprecation warnings
  • Additional commits viewable in compare view

Updates @react-native-firebase/firestore from 21.14.0 to 22.1.0

Release notes

Sourced from @​react-native-firebase/firestore's releases.

v5.6.0 - Sign-in with Apple support, react-native 0.60+ only

Please note v5 is still seeing releases, but they are for breaking ecosystem changes only - just enough so it remains relevant for those that can't move to v6 yet.

This change allows use of Sign-in with Apple, an iOS13+ requirement to avoid rejection by the App Store if you use any forms of social authentication.

Breaking: Note that iOS13+ is only supported with Xcode 11+, which requires react-native 0.60+

You may find that react-native-firebase v5.6.x still works on react-native 0.59 (the test suite still does), but you will not be able to integrate Sign-in with Apple until you upgrade as that library is react-native 0.60+ only.

It works well with https://github.com/invertase/react-native-apple-authentication including a guide specifically for integrating with react-native-firebase, though note the import statements are for v6, you'll need to import auth in the v5 style to use it: https://github.com/invertase/react-native-apple-authentication/blob/master/docs/FIREBASE.md

See discussion in the related issue: invertase/react-native-firebase#2884

https://rnfirebase.io/docs/v5.x.x/releases/v5.6.x

Changelog

Sourced from @​react-native-firebase/firestore's changelog.

22.1.0 (2025-04-30)

Features

  • auth, expo: add support for AppDelegate.swift (e4966ef)

Bug Fixes

  • app, expo: add config plugin support for Expo SDK 53 (#8495) (7617611)
  • app, expo: update config plugin to match Expo 53.0.1 AppDelegate (#8500) (3d3c4ec)
  • app: provide modular-like APIs for RNFB-specific json/meta/preferences methods (9bb5365)
  • app: toString() does not exist in modular API, use .name property (2a99366)
  • auth, android: catch native error in signWithEmailLink (a08580e)
  • auth: delegate modular multiFactor to MultiFactorUser constructor (0937c77)
  • firestore, types: exist -> exists() change reflected in types (339834d)
  • messaging: correctly pass options in modular getToken/deleteToken (d29dfc8)
  • vertexai: package.json main needs updating to commonjs path (abe6c19)

22.0.0 (2025-04-25)

⚠ BREAKING CHANGES

  • firestore: alter all use of DocumentSnapshot exists to exists() - should be a method not a property
  • auth: return type of auth isSignInWithEmailLink changed from boolean to Promise<boolean>
  • app, sdks: firebase-ios-sdk 11.12.0 requires Xcode 16.2+

Features

  • app, sdks: firebase-ios-sdk 11.12.0 / firebase-android-sdk 33.13.0 (c63d843)
  • auth: use native isSignInWithEmailLink - returns Promise vs boolean (#8450) (3785690)

Bug Fixes

  • analytics: Type defs (#8363) (74efc84)
  • android: use = assignment vs deprecated space-assignment (39c2ecb)
  • auth: Make REVERSED_CLIENT_ID optional (#8470) (a909d1b)
  • enable provenance signing during publish (4535f0d)
  • firestore: DocumentSnapshot.exists() should be a method not a property (#8483) (346272c)
Commits
  • af6096e chore(release): release packages
  • a08580e fix(auth, android): catch native error in signWithEmailLink
  • 7a3a9d6 docs(auth): correct isSignInWithEmailLink docs / note apiKey requirement
  • 26c9e70 test: turn on modular deprecation strict mode for e2e suite
  • 4ce3e03 test: fix remaining e2e modular deprecation warnings
  • a07b83e test(remote-config): fix all remoteConfig e2e modular deprecation warnings
  • f7435c2 test(perf): fix all perf e2e deprecation warnings
  • 725fd84 test(storage): fix all storage e2e deprecation warnings
  • 98d748b test(database): fix all database e2e modular deprecation warnings
  • 0d2f2f4 test(auth): fix all auth e2e deprecation warnings
  • Additional commits viewable in compare view

Updates @react-native-firebase/installations from 21.14.0 to 22.1.0

Release notes

Sourced from @​react-native-firebase/installations's releases.

v5.6.0 - Sign-in with Apple support, react-native 0.60+ only

Please note v5 is still seeing releases, but they are for breaking ecosystem changes only - just enough so it remains relevant for those that can't move to v6 yet.

This change allows use of Sign-in with Apple, an iOS13+ requirement to avoid rejection by the App Store if you use any forms of social authentication.

Breaking: Note that iOS13+ is only supported with Xcode 11+, which requires react-native 0.60+

You may find that react-native-firebase v5.6.x still works on react-native 0.59 (the test suite still does), but you will not be able to integrate Sign-in with Apple until you upgrade as that library is react-native 0.60+ only.

It works well with https://github.com/invertase/react-native-apple-authentication including a guide specifically for integrating with react-native-firebase, though note the import statements are for v6, you'll need to import auth in the v5 style to use it: https://github.com/invertase/react-native-apple-authentication/blob/master/docs/FIREBASE.md

See discussion in the related issue: invertase/react-native-firebase#2884

https://rnfirebase.io/docs/v5.x.x/releases/v5.6.x

Changelog

Sourced from @​react-native-firebase/installations's changelog.

22.1.0 (2025-04-30)

Features

  • auth, expo: add support for AppDelegate.swift (e4966ef)

Bug Fixes

  • app, expo: add config plugin support for Expo SDK 53 (#8495) (7617611)
  • app, expo: update config plugin to match Expo 53.0.1 AppDelegate (#8500) (3d3c4ec)
  • app: provide modular-like APIs for RNFB-specific json/meta/preferences methods (9bb5365)
  • app: toString() does not exist in modular API, use .name property (2a99366)
  • auth, android: catch native error in signWithEmailLink (a08580e)
  • auth: delegate modular multiFactor to MultiFactorUser constructor (0937c77)
  • firestore, types: exist -> exists() change reflected in types (339834d)
  • messaging: correctly pass options in modular getToken/deleteToken (d29dfc8)
  • vertexai: package.json main needs updating to commonjs path (abe6c19)

22.0.0 (2025-04-25)

⚠ BREAKING CHANGES

  • firestore: alter all use of DocumentSnapshot exists to exists() - should be a method not a property
  • auth: return type of auth isSignInWithEmailLink changed from boolean to Promise<boolean>
  • app, sdks: firebase-ios-sdk 11.12.0 requires Xcode 16.2+

Features

  • app, sdks: firebase-ios-sdk 11.12.0 / firebase-android-sdk 33.13.0 (c63d843)
  • auth: use native isSignInWithEmailLink - returns Promise vs boolean (#8450) (3785690)

Bug Fixes

  • analytics: Type defs (#8363) (74efc84)
  • android: use = assignment vs deprecated space-assignment (39c2ecb)
  • auth: Make REVERSED_CLIENT_ID optional (#8470) (a909d1b)
  • enable provenance signing during publish (4535f0d)
  • firestore: DocumentSnapshot.exists() should be a method not a property (#8483) (346272c)
Commits
  • af6096e chore(release): release packages
  • a08580e fix(auth, android): catch native error in signWithEmailLink
  • 7a3a9d6 docs(auth): correct isSignInWithEmailLink docs / note apiKey requirement
  • 26c9e70 test: turn on modular deprecation strict mode for e2e suite
  • 4ce3e03 test: fix remaining e2e modular deprecation warnings
  • a07b83e test(remote-config): fix all remoteConfig e2e modular deprecation warnings
  • f7435c2 test(perf): fix all perf e2e deprecation warnings
  • 725fd84 test(storage): fix all storage e2e deprecation warnings
  • 98d748b test(database): fix all database e2e modular deprecation warnings
  • 0d2f2f4 test(auth): fix all auth e2e deprecation warnings
  • Additional commits viewable in compare view

Updates @react-native-firebase/remote-config from 21.14.0 to 22.1.0

Release notes

Sourced from @​react-native-firebase/remote-config's releases.

v5.6.0 - Sign-in with Apple support, react-native 0.60+ only

Please note v5 is still seeing releases, but they are for breaking ecosystem changes only - just enough so it remains relevant for those that can't move to v6 yet.

This change allows use of Sign-in with Apple, an iOS13+ requirement to avoid rejection by the App Store if you use any forms of social authentication.

Breaking: Note that iOS13+ is only supported with Xcode 11+, which requires react-native 0.60+

You may find that react-native-firebase v5.6.x still works on react-native 0.59 (the test suite still does), but you will not be able to integrate Sign-in with Apple until you upgrade as that library is react-native 0.60+ only.

It works well with https://github.com/invertase/react-native-apple-authentication including a guide specifically for integrating with react-native-firebase, though note the import statements are for v6, you'll need to import auth in the v5 style to use it: https://github.com/invertase/react-native-apple-authentication/blob/master/docs/FIREBASE.md

See discussion in the related issue: invertase/react-native-firebase#2884

https://rnfirebase.io/docs/v5.x.x/releases/v5.6.x

Changelog

Sourced from @​react-native-firebase/remote-config's changelog.

22.1.0 (2025-04-30)

Features

  • auth, expo: add support for AppDelegate.swift (e4966ef)

Bug Fixes

  • app, expo: add config plugin support for Expo SDK 53 (#8495) (7617611)
  • app, expo: update config plugin to match Expo 53.0.1 AppDelegate (#8500) (3d3c4ec)
  • app: provide modular-like APIs for RNFB-specific json/meta/preferences methods (9bb5365)
  • app: toString() does not exist in modular API, use .name property (2a99366)
  • auth, android: catch native error in signWithEmailLink (a08580e)
  • auth: delegate modular multiFactor to MultiFactorUser constructor (0937c77)
  • firestore, types: exist -> exists() change reflected in types (339834d)
  • messaging: correctly pass options in modular getToken/deleteToken (d29dfc8)
  • vertexai: package.json main needs updating to commonjs path (abe6c19)

22.0.0 (2025-04-25)

⚠ BREAKING CHANGES

  • firestore: alter all use of DocumentSnapshot exists to exists() - should be a method not a property
  • auth: return type of auth isSignInWithEmailLink changed from boolean to Promise<boolean>
  • app, sdks: firebase-ios-sdk 11.12.0 requires Xcode 16.2+

Features

  • app, sdks: firebase-ios-sdk 11.12.0 / firebase-android-sdk 33.13.0 (c63d843)
  • auth: use native isSignInWithEmailLink - returns Promise vs boolean (#8450) (3785690)

Bug Fixes

  • analytics: Type defs (#8363) (74efc84)
  • android: use = assignment vs deprecated space-assignment (39c2ecb)
  • auth: Make REVERSED_CLIENT_ID optional (#8470) (a909d1b)
  • enable provenance signing during publish (4535f0d)
  • firestore: DocumentSnapshot.exists() should be a method not a property (#8483) (346272c)
Commits
  • af6096e chore(release): release packages
  • a08580e fix(auth, android): catch native error in signWithEmailLink
  • 7a3a9d6 docs(auth): correct isSignInWithEmailLink docs / note apiKey requirement
  • 26c9e70 test: turn on modular deprecation strict mode for e2e suite
  • 4ce3e03 test: fix remaining e2e modular deprecation warnings
  • a07b83e test(remote-config): fix all remoteConfig e2e modular deprecation warnings
  • f7435c2 test(perf): fix all perf e2e deprecation warnings
  • 725fd84 test(storage): fix all storage e2e deprecation warnings
  • 98d748b test(database): fix all database e2e mod...

    Description has been truncated

… 10 updates

Bumps the uncategorized group with 10 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@react-native-firebase/analytics](https://github.com/invertase/react-native-firebase) | `21.14.0` | `22.1.0` |
| [@react-native-firebase/app](https://github.com/invertase/react-native-firebase) | `21.14.0` | `22.1.0` |
| [@react-native-firebase/auth](https://github.com/invertase/react-native-firebase) | `21.14.0` | `22.1.0` |
| [@react-native-firebase/crashlytics](https://github.com/invertase/react-native-firebase) | `21.14.0` | `22.1.0` |
| [@react-native-firebase/firestore](https://github.com/invertase/react-native-firebase) | `21.14.0` | `22.1.0` |
| [@react-native-firebase/installations](https://github.com/invertase/react-native-firebase) | `21.14.0` | `22.1.0` |
| [@react-native-firebase/remote-config](https://github.com/invertase/react-native-firebase) | `21.14.0` | `22.1.0` |
| [typedoc](https://github.com/TypeStrong/TypeDoc) | `0.28.3` | `0.28.4` |
| [typedoc-plugin-markdown](https://github.com/typedoc2md/typedoc-plugin-markdown/tree/HEAD/packages/typedoc-plugin-markdown) | `4.6.2` | `4.6.3` |
| [firebase](https://github.com/firebase/firebase-js-sdk) | `11.6.0` | `11.6.1` |



Updates `@react-native-firebase/analytics` from 21.14.0 to 22.1.0
- [Release notes](https://github.com/invertase/react-native-firebase/releases)
- [Changelog](https://github.com/invertase/react-native-firebase/blob/main/CHANGELOG.md)
- [Commits](invertase/react-native-firebase@v21.14.0...v22.1.0)

Updates `@react-native-firebase/app` from 21.14.0 to 22.1.0
- [Release notes](https://github.com/invertase/react-native-firebase/releases)
- [Changelog](https://github.com/invertase/react-native-firebase/blob/main/CHANGELOG.md)
- [Commits](invertase/react-native-firebase@v21.14.0...v22.1.0)

Updates `@react-native-firebase/auth` from 21.14.0 to 22.1.0
- [Release notes](https://github.com/invertase/react-native-firebase/releases)
- [Changelog](https://github.com/invertase/react-native-firebase/blob/main/CHANGELOG.md)
- [Commits](invertase/react-native-firebase@v21.14.0...v22.1.0)

Updates `@react-native-firebase/crashlytics` from 21.14.0 to 22.1.0
- [Release notes](https://github.com/invertase/react-native-firebase/releases)
- [Changelog](https://github.com/invertase/react-native-firebase/blob/main/CHANGELOG.md)
- [Commits](invertase/react-native-firebase@v21.14.0...v22.1.0)

Updates `@react-native-firebase/firestore` from 21.14.0 to 22.1.0
- [Release notes](https://github.com/invertase/react-native-firebase/releases)
- [Changelog](https://github.com/invertase/react-native-firebase/blob/main/CHANGELOG.md)
- [Commits](invertase/react-native-firebase@v21.14.0...v22.1.0)

Updates `@react-native-firebase/installations` from 21.14.0 to 22.1.0
- [Release notes](https://github.com/invertase/react-native-firebase/releases)
- [Changelog](https://github.com/invertase/react-native-firebase/blob/main/CHANGELOG.md)
- [Commits](invertase/react-native-firebase@v21.14.0...v22.1.0)

Updates `@react-native-firebase/remote-config` from 21.14.0 to 22.1.0
- [Release notes](https://github.com/invertase/react-native-firebase/releases)
- [Changelog](https://github.com/invertase/react-native-firebase/blob/main/CHANGELOG.md)
- [Commits](invertase/react-native-firebase@v21.14.0...v22.1.0)

Updates `typedoc` from 0.28.3 to 0.28.4
- [Release notes](https://github.com/TypeStrong/TypeDoc/releases)
- [Changelog](https://github.com/TypeStrong/typedoc/blob/master/CHANGELOG.md)
- [Commits](TypeStrong/typedoc@v0.28.3...v0.28.4)

Updates `typedoc-plugin-markdown` from 4.6.2 to 4.6.3
- [Release notes](https://github.com/typedoc2md/typedoc-plugin-markdown/releases)
- [Changelog](https://github.com/typedoc2md/typedoc-plugin-markdown/blob/main/packages/typedoc-plugin-markdown/CHANGELOG.md)
- [Commits](https://github.com/typedoc2md/typedoc-plugin-markdown/commits/[email protected]/packages/typedoc-plugin-markdown)

Updates `firebase` from 11.6.0 to 11.6.1
- [Release notes](https://github.com/firebase/firebase-js-sdk/releases)
- [Changelog](https://github.com/firebase/firebase-js-sdk/blob/main/CHANGELOG.md)
- [Commits](https://github.com/firebase/firebase-js-sdk/compare/[email protected]@11.6.1)

---
updated-dependencies:
- dependency-name: "@react-native-firebase/analytics"
  dependency-version: 22.1.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: uncategorized
- dependency-name: "@react-native-firebase/app"
  dependency-version: 22.1.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: uncategorized
- dependency-name: "@react-native-firebase/auth"
  dependency-version: 22.1.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: uncategorized
- dependency-name: "@react-native-firebase/crashlytics"
  dependency-version: 22.1.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: uncategorized
- dependency-name: "@react-native-firebase/firestore"
  dependency-version: 22.1.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: uncategorized
- dependency-name: "@react-native-firebase/installations"
  dependency-version: 22.1.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: uncategorized
- dependency-name: "@react-native-firebase/remote-config"
  dependency-version: 22.1.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: uncategorized
- dependency-name: typedoc
  dependency-version: 0.28.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: uncategorized
- dependency-name: typedoc-plugin-markdown
  dependency-version: 4.6.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: uncategorized
- dependency-name: firebase
  dependency-version: 11.6.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: uncategorized
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels May 5, 2025
@vpishuk vpishuk merged commit b872803 into main May 7, 2025
1 check passed
@vpishuk vpishuk deleted the dependabot/npm_and_yarn/uncategorized-2aec4045f5 branch May 7, 2025 18:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant