-
-
Notifications
You must be signed in to change notification settings - Fork 333
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
Issue With VueFire 3.2.0 and Firebase 11.0.1 #1581
Comments
Adding to the above, I think the reason why the Firebase JS SDK v11 is a major release is due to the fact that it has breaking changes regarding the support for NodeJS:
So according to the changelog it reads that there are no breaking changes that would break |
Second all of the above.
Currently fails as the new version of firebase isn't supported. |
I decided to try to force it to work, installing the dependencies with --force. I tried:
shows some warnings, but works. Then saw nuxt-vuefire@latest was a similar issue, so
Next I set up the configuration in the nuxt.config.ts file. I then see this config error, so - it's working
I also have a 500 error to go along with that, but I suspect this is due to the error above.
I added the service acccount as warned about, and it works! |
Same here. I had to downgrade firebase to v.10.14.1. AWS didn't let me use vuefire 3.2 with Firebase v.11 |
In the meantime to suppress the warning using pnpm you can do; "pnpm": {
"packageExtensions": {
"[email protected]": {
"peerDependencies": {
"firebase": "^9.0.0 || ^10.0.0 || ^11.0.0"
}
}
},
"peerDependencyRules": {
"allowedVersions": {
"firebase": "^9.0.0 || ^10.0.0 || ^11.0.0"
}
}
} |
Steps to reproduce the bug
npm i firebase
npm i vuefire
Expected behavior
It installs correctly with no errors.
Actual behavior
This output is given:
Additional information
It appears vuefire needs to be updated to support Firebase 11.0.1 and not only Firebase 9 or 10. Or the section in the docs stating "WARNING VueFire requires Firebase JS SDK >= 9 but is compatible with Vue 2 and Vue 3." should be updated to state that it requires the Firebase JS SDK 9 or 10 but doesn't support 11. If you run "npm i firebase vuefire" together it does install correctly, but that forces it to use firebase 10.14.1.
The text was updated successfully, but these errors were encountered: