Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 338da72

Browse files
authoredAug 25, 2021
chore(release): Release v7 (#2898)
1 parent fc4a1f4 commit 338da72

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+3741
-992
lines changed
 

‎.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ jobs:
2929
id: node_modules_cache
3030
with:
3131
path: ./node_modules
32-
key: ${{ runner.os }}-14-next-node_modules-${{ hashFiles('yarn.lock') }}
32+
key: ${{ runner.os }}-14-9-node_modules-${{ hashFiles('yarn.lock') }}
3333
restore-keys: |
34-
${{ runner.os }}-14-next-node_modules-
34+
${{ runner.os }}-14-9-node_modules-
3535
${{ runner.os }}-14-node_modules-
3636
- name: Yarn offline cache
3737
if: steps.node_modules_cache.outputs.cache-hit != 'true'
@@ -62,7 +62,7 @@ jobs:
6262
strategy:
6363
matrix:
6464
node: ["12", "14", "16"]
65-
firebase: ["next"]
65+
firebase: ["9"]
6666
fail-fast: false
6767
name: Test firebase@${{ matrix.firebase }} on Node.js ${{ matrix.node }}
6868
steps:
@@ -113,7 +113,7 @@ jobs:
113113
name: Test firebase@${{ matrix.firebase }} on ${{ matrix.browser }}
114114
strategy:
115115
matrix:
116-
firebase: ["next"]
116+
firebase: ["9"]
117117
browser: ["chrome", "firefox"]
118118
fail-fast: false
119119
steps:

‎CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
<a name="7.0.0"></a>
2+
# [7.0.0](https://github.com/angular/angularfire2/compare/6.1.5...7.0.0) (2021-08-25)
3+
4+
### Breaking changes
5+
6+
* Angular 12 is required
7+
* AngularFire now only works in Ivy applications
8+
* Firebase JS SDK v9 is required
9+
* The existing AngularFire v6 API surface has moved from `@angular/fire/*` to `@angular/fire/compat/*` (see compatibility mode)
10+
* New modular API surface available at `@angular/fire/*`
11+
* Various cleanup
12+
13+
[See the v7 upgrade guide for more information.](https://github.com/angular/angularfire/blob/master/docs/version-7-upgrade.md)
14+
115
<a name="6.1.5"></a>
216
# [6.1.5](https://github.com/angular/angularfire/compare/6.1.4...6.1.5) (2021-05-17)
317

0 commit comments

Comments
 (0)
Please sign in to comment.