Skip to content

Commit f9e2279

Browse files
committed
Target ng16
1 parent 1ec218a commit f9e2279

File tree

3 files changed

+22
-25
lines changed

3 files changed

+22
-25
lines changed

.github/workflows/test.yml

Lines changed: 14 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -25,19 +25,19 @@ jobs:
2525
- name: Setup node
2626
uses: actions/setup-node@v2-beta
2727
with:
28-
node-version: '14'
28+
node-version: '16'
2929
- name: node_modules cache
3030
uses: actions/cache@v2
3131
id: node_modules_cache
3232
with:
3333
path: ./node_modules
34-
key: ${{ runner.os }}-14-12-9-9-6-node_modules-${{ hashFiles('yarn.lock') }}
34+
key: ${{ runner.os }}-16-12-9-9-6-node_modules-${{ hashFiles('yarn.lock') }}
3535
restore-keys: |
36-
${{ runner.os }}-14-12-9-9-6-node_modules-
37-
${{ runner.os }}-14-12-9-9-
38-
${{ runner.os }}-14-12-9-
39-
${{ runner.os }}-14-12-
40-
${{ runner.os }}-14-
36+
${{ runner.os }}-16-12-9-9-6-node_modules-
37+
${{ runner.os }}-16-12-9-9-
38+
${{ runner.os }}-16-12-9-
39+
${{ runner.os }}-16-12-
40+
${{ runner.os }}-16-
4141
- name: Yarn offline cache
4242
if: steps.node_modules_cache.outputs.cache-hit != 'true'
4343
uses: actions/cache@v2
@@ -68,12 +68,12 @@ jobs:
6868
strategy:
6969
matrix:
7070
os: [ ubuntu-latest, macos-latest, windows-latest ]
71-
node: [ "14", "16"]
71+
node: ["16"]
7272
firebase: ["9"]
73-
firebaseTools: ["11"]
73+
firebaseTools: ["12"]
7474
rxjs: ["7"]
7575
# TODO add ng 12 back in, we need to cut a major at this point and drop
76-
ng: ["13", "14", "15"]
76+
ng: ["16"]
7777
exclude:
7878
# TODO investigate failures
7979
# https://github.com/angular/angularfire/runs/4174069788
@@ -196,18 +196,15 @@ jobs:
196196
strategy:
197197
matrix:
198198
os: [ ubuntu-latest ]
199-
node: ["14"]
199+
node: ["16"]
200200
firebase: ["9", "canary", "next"]
201-
firebaseTools: ["11"]
201+
firebaseTools: ["12"]
202202
rxjs: ["7"]
203-
# TODO add 12 back in
204-
ng: ["13", "14", "15", "next"]
203+
ng: ["16", "next"]
205204
exclude:
206205
# standard configurations
207206
- firebase: 9
208-
ng: 12
209-
- firebase: 9
210-
ng: 13
207+
ng: 16
211208
fail-fast: false
212209
name: Canary firebase@${{ matrix.firebase }} firebase-tools@${{ matrix.firebaseTools }} ng@${{ matrix.ng }} rxjs@${{ matrix.rxjs}} on ${{ matrix.os }} Node.js ${{ matrix.node }}
213210
steps:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@angular/fire",
3-
"version": "7.5.0",
3+
"version": "7.6.0",
44
"description": "The official Angular library for Firebase.",
55
"private": true,
66
"scripts": {

src/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,21 +23,21 @@
2323
"author": "angular,firebase",
2424
"license": "MIT",
2525
"peerDependencies": {
26-
"@angular/common": "^12.0.0 || ^13.0.0 || ^14.0.0 || ^15.0.0",
27-
"@angular/core": "^12.0.0 || ^13.0.0 || ^14.0.0 || ^15.0.0",
28-
"@angular/platform-browser": "^12.0.0 || ^13.0.0 || ^14.0.0 || ^15.0.0",
29-
"@angular/platform-browser-dynamic": "^12.0.0 || ^13.0.0 || ^14.0.0 || ^15.0.0",
26+
"@angular/common": "^12.0.0 || ^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0",
27+
"@angular/core": "^12.0.0 || ^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0",
28+
"@angular/platform-browser": "^12.0.0 || ^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0",
29+
"@angular/platform-browser-dynamic": "^12.0.0 || ^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0",
3030
"rxjs": "~6.6.0 || ^7.0.0",
31-
"firebase-tools": "^9.9.0 || ^10.0.0 || ^11.0.0"
31+
"firebase-tools": "^9.9.0 || ^10.0.0 || ^11.0.0 || ^12.0.0"
3232
},
3333
"peerDependenciesMeta": {
3434
"firebase-tools": { "optional": true }
3535
},
3636
"dependencies": {
3737
"firebase": "^9.8.0",
3838
"rxfire": "^6.0.0",
39-
"@angular-devkit/schematics": "^12.0.0 || ^13.0.0 || ^14.0.0 || ^15.0.0",
40-
"@schematics/angular": "^12.0.0 || ^13.0.0 || ^14.0.0 || ^15.0.0",
39+
"@angular-devkit/schematics": "^12.0.0 || ^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0",
40+
"@schematics/angular": "^12.0.0 || ^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0",
4141
"tslib": "^2.0.0",
4242
"fuzzy": "^0.1.3",
4343
"inquirer-autocomplete-prompt": "^1.0.1",

0 commit comments

Comments
 (0)