Skip to content

Commit 7d47166

Browse files
authored
chore(misc): bump deps, version, changelog, readme
* Bump firebase again * Contribute windows node 14 needed a java bump too * Add readme for ng 14 * Drop IE references in readme * Add changelog
1 parent 3c3a343 commit 7d47166

File tree

9 files changed

+249
-222
lines changed

9 files changed

+249
-222
lines changed

.github/workflows/test.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -309,12 +309,13 @@ jobs:
309309
with:
310310
node-version: ${{ matrix.node }}
311311
check-latest: true
312+
# node 14 image doesn't have new enough java for the emulators
312313
- name: Setup java
313314
uses: actions/setup-java@v3
314315
with:
315316
distribution: 'temurin'
316317
java-version: '11'
317-
if: matrix.os == 'macos-latest' && matrix.node == '14'
318+
if: matrix.node == '14'
318319
- name: node_modules cache
319320
uses: actions/cache@v2
320321
id: node_modules_cache

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
<a name="7.4.0"></a>
2+
# [7.4.0](https://github.com/angular/angularfire/compare/7.3.0...7.4.0) (2022-06-04)
3+
4+
### Misc.
5+
6+
* **core:** [**Internet Explorer support has been dropped**](https://firebase.blog/posts/2022/05/firebase-js-sdk-drops-support-for-internet-explorer)
7+
* **core:** Bumped the Firebase dependency to ^9.8, wrapping new APIs
8+
* **core:** mark Angular 14 as an compatable peer ([#3230](https://github.com/angular/angularfire/issues/3230)) ([3c3a343](https://github.com/angular/angularfire/commit/3c3a343))
9+
10+
### Bug Fixes
11+
12+
* **core:** added missing injector input signatures ([#3191](https://github.com/angular/angularfire/issues/3191)) ([88796bc](https://github.com/angular/angularfire/commit/88796bc))
13+
114
<a name="7.3.0"></a>
215
# [7.3.0](https://github.com/angular/angularfire/compare/7.2.1...7.3.0) (2022-03-23)
316

README.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ AngularFire doesn't follow Angular's versioning as Firebase also has breaking ch
6666

6767
| Angular | Firebase | AngularFire |
6868
| --------|----------|--------------|
69+
| 14 | 9 | ^7.4 |
6970
| 13 | 9 | ^7.2 |
7071
| 12 | 9 | ^7.0 |
7172
| 12 | 7,8 | ^6.1.5 |
@@ -83,10 +84,10 @@ Neither AngularFire or Firebase ship with polyfills. To have compatability acros
8384

8485
| API | Environments | Suggested Polyfill | License |
8586
|-----|--------------|--------------------|---------|
86-
| Various ES5+ features | IE 11<br>Safari &lt; 10 | [`core-js/stable`](https://github.com/zloirock/core-js#readme) | MIT |
87-
| `globalThis` | [IE 11<br>Chrome &lt; 71<br>Safari &lt; 12.1<br>iOS &lt; 12.2<br>Node &lt; 12](https://caniuse.com/mdn-javascript_builtins_globalthis) | [`globalThis`](https://github.com/es-shims/globalThis#readme) | MIT |
88-
| `Proxy` | [IE 11<br>Safari &lt; 10](https://caniuse.com/proxy) | [`proxy-polyfill`](https://github.com/GoogleChrome/proxy-polyfill#readme) | Apache 2.0 |
89-
| `fetch` | [IE 11<br>Safari &lt; 10.1<br>iOS &lt; 10.3](https://caniuse.com/fetch) | [`cross-fetch`](https://github.com/lquixada/cross-fetch#readme) | MIT |
87+
| Various ES5+ features | Safari &lt; 10 | [`core-js/stable`](https://github.com/zloirock/core-js#readme) | MIT |
88+
| `globalThis` | [Chrome &lt; 71<br>Safari &lt; 12.1<br>iOS &lt; 12.2<br>Node &lt; 12](https://caniuse.com/mdn-javascript_builtins_globalthis) | [`globalThis`](https://github.com/es-shims/globalThis#readme) | MIT |
89+
| `Proxy` | [Safari &lt; 10](https://caniuse.com/proxy) | [`proxy-polyfill`](https://github.com/GoogleChrome/proxy-polyfill#readme) | Apache 2.0 |
90+
| `fetch` | [Safari &lt; 10.1<br>iOS &lt; 10.3](https://caniuse.com/fetch) | [`cross-fetch`](https://github.com/lquixada/cross-fetch#readme) | MIT |
9091

9192
## Resources
9293

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@angular/fire",
3-
"version": "7.3.0",
3+
"version": "7.4.0",
44
"description": "The official Angular library for Firebase.",
55
"private": true,
66
"scripts": {
@@ -54,7 +54,7 @@
5454
"@angular/platform-browser-dynamic": "^12.0.0",
5555
"@angular/router": "^12.0.0",
5656
"@schematics/angular": "^12.0.0",
57-
"firebase": "^9.6.9",
57+
"firebase": "^9.8.2",
5858
"firebase-admin": "^9.11.1",
5959
"firebase-functions": "^3.6.0",
6060
"firebase-tools": "^9.0.0",

src/auth/firebase.ts

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/database/firebase.ts

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/functions/firebase.ts

+3-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"firebase-tools": { "optional": true }
3535
},
3636
"dependencies": {
37-
"firebase": "^9.5.0",
37+
"firebase": "^9.8.0",
3838
"rxfire": "^6.0.0",
3939
"@angular-devkit/schematics": "^12.0.0 || ^13.0.0 || ^14.0.0",
4040
"@schematics/angular": "^12.0.0 || ^13.0.0 || ^14.0.0",

0 commit comments

Comments
 (0)