Skip to content

Releases: nuxt-community/firebase-module

v8.2.2

24 Jan 20:33
Compare
Choose a tag to compare

⚙️ Maintenance

  • Updated peerDependency for firebase to v9

Thanks to @shu-pf for the info.

v8.2.0

12 Jan 00:00
Compare
Choose a tag to compare

✨ New

⚙️ Maintenance

  • Complete restructuring of the repository, migrated to mono-repo & included demo in same repo.

Thanks to @eljass for the PR's!

‼️ Important: The docs are currently broken and outdated, will try to fix at some point soon.

v8.1.1

02 Dec 23:41
Compare
Choose a tag to compare

🐜 Bug Fixes

  • types: Import firebase type declarations from firebase/compat (#605)

Thanks to @aseidma

v8.1.0

30 Nov 06:42
Compare
Choose a tag to compare

🐜 Bug Fixes

  • Generate: Fixed ERR_UNSUPPORTED_DIR_IMPORT error in nuxt generate. (#602)

Thanks to @randomnessdev & @mandalornl

Warning:
While this fix fixes nuxt generate, it re-introduces the "The command 'nuxt generate' finished but did not exit after 5s" warning. Getting rid of this warning will/might be tackled separately with Nuxt v3/Firebase non-compat mode support in the future.

v8.0.0

30 Oct 16:44
Compare
Choose a tag to compare

✨ Compat Mode Imports

This update changes how the modules imports the Firebase JS SDK by using the new (resp. old 😉) compat library added with Firebase v9. This allows you to use the newest version of Firebase together with this module.

‼️ Important: Breaking Change
Please upgrade your Firebase JS SDK Version to 9 or above.

v7.6.1

11 Jun 21:01
Compare
Choose a tag to compare

✨ New

  • Add option for storage emulators (348900d)

🐜 Bug Fixes

  • Add types for $fireAuthStore (bacdae9)
  • Add fix improving Firebase Atuh in local auth emulator settings #526
  • Correctly register idTokenChanged callback #508

⚙️ Maintenance

  • Various update to docs
  • Various dependency updates

Thanks to @hanayuki, @tibs245, @BboyKeen

v7.5.0

18 Feb 22:08
Compare
Choose a tag to compare

☘️ Small Improvements

  • New Option: terminateDatabasesAfterGenerate:
    Added 'terminateDatabasesAfterGenerate' config option that terminates Firestore/RealTime Database for you after running nuxt generate to improve generate time and fix the appearing warning message. (4df37a7), closes #451

🐜 Bug Fixes

  • Firebase Config:
    Made the databaseUrl optionals since newer Firebase Projects don't require it anymore (fbb4a7d), closes #458
  • Firestore:
    Calling useEmulator() after enablePersistence() to fix "already started" issue that appears when using enablePersitance in combination with useEmulator (bc16b45), closes #451

⚙️ Maintenance

  • Updated dependencies

Thanks to @mandalornl, @sugoidesune, @zeus3rd, @tibs245 & @buwilliams

v7.4.1

20 Jan 11:52
Compare
Choose a tag to compare

🐜 Bug Fixes

  • auth: fixes build error appearing when auth.initialize is not set (71c3fb0), closes #446

Thanks to @aaharu for the bug report

v7.4.0

19 Jan 18:34
Compare
Choose a tag to compare

✨ New

  • Auth: Added onIdTokenChanged() options to auth.initialize. See Documentation here.

Thanks to @Kasonz for the feature request!

v7.3.3

18 Jan 20:49
Compare
Choose a tag to compare

🐜 Bug Fixes

  • forceinject: fixed issue in lazy-mode that did not allow to initialize services in nuxt plugins (c5b5cb3), closes #366

Thanks to @uppergoal for noticing the issue