Skip to content

Commit

Permalink
chore(misc): bump deps, version, changelog, readme
Browse files Browse the repository at this point in the history
* Bump firebase again
* Contribute windows node 14 needed a java bump too
* Add readme for ng 14
* Drop IE references in readme
* Add changelog
  • Loading branch information
jamesdaniels committed Jun 4, 2022
1 parent 3c3a343 commit 7d47166
Show file tree
Hide file tree
Showing 9 changed files with 249 additions and 222 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Expand Up @@ -309,12 +309,13 @@ jobs:
with:
node-version: ${{ matrix.node }}
check-latest: true
# node 14 image doesn't have new enough java for the emulators
- name: Setup java
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '11'
if: matrix.os == 'macos-latest' && matrix.node == '14'
if: matrix.node == '14'
- name: node_modules cache
uses: actions/cache@v2
id: node_modules_cache
Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,16 @@
<a name="7.4.0"></a>
# [7.4.0](https://github.com/angular/angularfire/compare/7.3.0...7.4.0) (2022-06-04)

### Misc.

* **core:** [**Internet Explorer support has been dropped**](https://firebase.blog/posts/2022/05/firebase-js-sdk-drops-support-for-internet-explorer)
* **core:** Bumped the Firebase dependency to ^9.8, wrapping new APIs
* **core:** mark Angular 14 as an compatable peer ([#3230](https://github.com/angular/angularfire/issues/3230)) ([3c3a343](https://github.com/angular/angularfire/commit/3c3a343))

### Bug Fixes

* **core:** added missing injector input signatures ([#3191](https://github.com/angular/angularfire/issues/3191)) ([88796bc](https://github.com/angular/angularfire/commit/88796bc))

<a name="7.3.0"></a>
# [7.3.0](https://github.com/angular/angularfire/compare/7.2.1...7.3.0) (2022-03-23)

Expand Down
9 changes: 5 additions & 4 deletions README.md
Expand Up @@ -66,6 +66,7 @@ AngularFire doesn't follow Angular's versioning as Firebase also has breaking ch

| Angular | Firebase | AngularFire |
| --------|----------|--------------|
| 14 | 9 | ^7.4 |
| 13 | 9 | ^7.2 |
| 12 | 9 | ^7.0 |
| 12 | 7,8 | ^6.1.5 |
Expand All @@ -83,10 +84,10 @@ Neither AngularFire or Firebase ship with polyfills. To have compatability acros

| API | Environments | Suggested Polyfill | License |
|-----|--------------|--------------------|---------|
| Various ES5+ features | IE 11<br>Safari &lt; 10 | [`core-js/stable`](https://github.com/zloirock/core-js#readme) | MIT |
| `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 |
| `Proxy` | [IE 11<br>Safari &lt; 10](https://caniuse.com/proxy) | [`proxy-polyfill`](https://github.com/GoogleChrome/proxy-polyfill#readme) | Apache 2.0 |
| `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 |
| Various ES5+ features | Safari &lt; 10 | [`core-js/stable`](https://github.com/zloirock/core-js#readme) | MIT |
| `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 |
| `Proxy` | [Safari &lt; 10](https://caniuse.com/proxy) | [`proxy-polyfill`](https://github.com/GoogleChrome/proxy-polyfill#readme) | Apache 2.0 |
| `fetch` | [Safari &lt; 10.1<br>iOS &lt; 10.3](https://caniuse.com/fetch) | [`cross-fetch`](https://github.com/lquixada/cross-fetch#readme) | MIT |

## Resources

Expand Down
4 changes: 2 additions & 2 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "@angular/fire",
"version": "7.3.0",
"version": "7.4.0",
"description": "The official Angular library for Firebase.",
"private": true,
"scripts": {
Expand Down Expand Up @@ -54,7 +54,7 @@
"@angular/platform-browser-dynamic": "^12.0.0",
"@angular/router": "^12.0.0",
"@schematics/angular": "^12.0.0",
"firebase": "^9.6.9",
"firebase": "^9.8.2",
"firebase-admin": "^9.11.1",
"firebase-functions": "^3.6.0",
"firebase-tools": "^9.0.0",
Expand Down
2 changes: 2 additions & 0 deletions src/auth/firebase.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions src/database/firebase.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion src/functions/firebase.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/package.json
Expand Up @@ -34,7 +34,7 @@
"firebase-tools": { "optional": true }
},
"dependencies": {
"firebase": "^9.5.0",
"firebase": "^9.8.0",
"rxfire": "^6.0.0",
"@angular-devkit/schematics": "^12.0.0 || ^13.0.0 || ^14.0.0",
"@schematics/angular": "^12.0.0 || ^13.0.0 || ^14.0.0",
Expand Down

0 comments on commit 7d47166

Please sign in to comment.