-
Notifications
You must be signed in to change notification settings - Fork 21
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
Update firebase dependency #260
base: main
Are you sure you want to change the base?
Conversation
WalkthroughThe recent changes primarily focus on updating several React Native Firebase dependencies in Changes
Sequence Diagram(s)sequenceDiagram
participant Developer
participant PackageManager
participant CocoaPods
participant BuildSystem
Developer->>PackageManager: Update Firebase dependencies
PackageManager->>CocoaPods: Run pod install
CocoaPods->>BuildSystem: Install updated libraries
BuildSystem->>Developer: Build successful
Poem
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files ignored due to path filters (2)
packages/mobile/ios/Podfile.lock
is excluded by!**/*.lock
yarn.lock
is excluded by!**/yarn.lock
,!**/*.lock
Files selected for processing (3)
- package.json (1 hunks)
- packages/mobile/ios/mobile.xcodeproj/project.pbxproj (2 hunks)
- packages/mobile/package.json (1 hunks)
Files skipped from review due to trivial changes (2)
- packages/mobile/ios/mobile.xcodeproj/project.pbxproj
- packages/mobile/package.json
Additional comments not posted (3)
package.json (3)
122-122
: Dependency update approved:@react-native-firebase/app
The version update from
18.6.1
to18.9.0
aligns with the other Firebase dependencies and resolves the compatibility warning.
123-123
: Dependency update approved:@react-native-firebase/crashlytics
The version update from
18.6.1
to18.9.0
aligns with the other Firebase dependencies and resolves the compatibility warning.
124-124
: Dependency update approved:@react-native-firebase/messaging
The version update from
18.6.1
to18.9.0
aligns with the other Firebase dependencies and resolves the compatibility warning.
Resolve warning:
[!] NPM package '@react-native-firebase/analytics' depends on '@react-native-firebase/app' v18.6.1 but found v18.9.0, this might cause build issues or runtime crashes.
Reference link: invertase/react-native-firebase#3642
Summary by CodeRabbit
New Features
Documentation
pod install
after modifications.Chores