Skip to content
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

fix(deps): update dependency firebase-admin to v12 #10833

Merged
merged 3 commits into from
Jun 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changesets/10833.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
- fix(deps): update dependency firebase-admin to v12 (#10833) by @renovate

This change updates our firebase auth provider to use the v12 major version of the `firebase-admin` package. This will require you to update your own version of `firebase-admin` that is listed in your api side package json file.

We have noticed no breaking api changes in our limited testing. Please consult the `firebase-admin` upgrade guide if you experience problems after upgrading - especially if you have more extensive or complex use of the firebase suite of products.
2 changes: 1 addition & 1 deletion packages/auth-providers/firebase/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"dependencies": {
"@babel/runtime-corejs3": "7.24.5",
"core-js": "3.37.1",
"firebase-admin": "11.11.1"
"firebase-admin": "12.1.1"
},
"devDependencies": {
"@babel/cli": "7.24.5",
Expand Down
2 changes: 1 addition & 1 deletion packages/auth-providers/firebase/setup/src/setupHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export async function handler({ force: forceArg }: Args) {
webPackages: ['firebase@^10', `@redwoodjs/auth-firebase-web@${version}`],
apiPackages: [
// Note that the version of this package should be exactly the same as the version in `@redwoodjs/auth-firebase-api` .
'firebase-admin@11.11.1',
'firebase-admin@12.1.1',
`@redwoodjs/auth-firebase-api@${version}`,
],
notes: [
Expand Down
Loading
Loading