Skip to content
Prev Previous commit
Next Next commit
Upgrade guide
  • Loading branch information
jamesdaniels committed Aug 30, 2021
commit 42c5bad1ebfd326739699d688af9488b723851a6
3 changes: 2 additions & 1 deletion docs/version-7-upgrade.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Intended to be run with Angular 12, AngularFire 7.0 allows you to take full advt
* AngularFire now only works in Ivy applications
* Firebase JS SDK v9 is required
* The existing AngularFire v6 API surface has moved from `@angular/fire/*` to `@angular/fire/compat/*` (see compatibility mode)
* **compat/auth:** `USE_EMULATOR` DI token is now in the form of `['http://localhost:9099']`

## Compatibility mode

Expand Down Expand Up @@ -216,7 +217,7 @@ collection<T>(docRef, 'bar') // CollectionReference<T>

```ts
import { docSnapshots } from '@angular/fire/firestore';
docSnapshot<T>(docRef) // Observable<DocumentSnapshot<T>>
docSnapshots<T>(docRef) // Observable<DocumentSnapshot<T>>
```
</td>

Expand Down