Releases: angular/angularfire
5.3.0-rc.4
Final candidate for 5.3.0.
AngularFireAnalytics
andAngularFireRemoteConfig
should be safe in non-browser environments (mostly noop due to lack of support in the Firebase libraries, but should not cause runtime exceptions)ScreenTrackingService
should now be more reliable in reporting your component's selector (asscreen_name
), especially in AOT mode.- To better facilitate debugging,
ScreenTrackingService
will console logscreen_view
events whenDEBUG_MODE
is enabled.
Please test that screen_class
attribute is correct tracking your component's selector in Google Analytics for the ScreenTrackingService
both against AOT and JIT. There's some hard to test code here. Report your experience on #2187
5.3.0-rc.3
Continued work on AngularFireRemoteConfig
and AngularFireAnalytics
, see #2187
5.3.0-rc.2
Continued work on AngularFireRemoteConfig
and AngularFireAnalytics
, see #2187
5.3.0-rc.1
Continued work on AngularFireRemoteConfig
and AngularFireAnalytics
, see #2187
5.3.0-rc.0
Added AngularFireAnalytics
, AngularFireRemoteConfig
, and refactored the DI Tokens across the project. See #2187 for more details.
5.2.3
5.2.2
5.2.2
was mistakenly released to NPM @canary
due to a CI/CD bug. It was republished to @latest
as 5.2.3
.
5.2.1
5.2.0
AngularFire 5.2 introduces support for Angular 8 and version 6 of the Firebase SDK.
Bug Fixes
- firestore: Fix for builds targeting Node (#2079) (8a33826)
- storage: Typo in updateMetadata method (#2029) (6133296)
- messaging: Allow
AngularFireMessaging
to be included in a server build (#1938) (9b870a9)
Features
- performance: AngularFire Performance Monitoring (#2064) (2469e77)
- auth-guard: AngularFire Auth Guards (#2016) (e32164d)
- firestore: Added option to include document IDs on valueChanges() (#1976) (7108875)
- firestore: Support Firestore Collection Group Queries (#2066) (c34c0f3)
- functions: Allow configuration of Functions Emulator Origin (#2017) (d12b4c5)
- schematics: ng deploy schematic (#2046) (be0a1fb)
- firestore: path on
AngularFirestoreCollection
's.doc
is optional (#1974) (c2354f8)
5.2.0-rc.3
This release candidate fixes errors that arise when you include either AngularFirePerformance
or AngularFireMessaging
in a server build.
- Making
AngularFirePerformance
lazy and replacing the dynamic import withempty()
in the UMD - Replacing dynamic import of
firebase/messaging
withempty()
in the UMD, fixes #1938