Skip to content

Commit

Permalink
chore(release): 7.0.3 (#2915)
Browse files Browse the repository at this point in the history
* Deploy server default is `bundleDependencies: true`, correct this when generating the functions package.json
* `onMessage` callback should fire in the ng zone
* Auth was wrapping exports it wasn't suppose to
* Don't fail the deploy if there isn't an `index.html` file
* Lazifying the sample
* Cleaning up user-agent reporting
* Marking the samples as autogenerated, to reduce noise
* Committing the firebase/rxfire/base.ts files for easier readability
* Version and changelog entry
* Test cleanup and get storage emulator working
  • Loading branch information
jamesdaniels committed Sep 2, 2021
1 parent db76d50 commit b36b6a7
Show file tree
Hide file tree
Showing 101 changed files with 2,815 additions and 1,387 deletions.
5 changes: 5 additions & 0 deletions .gitattributes
@@ -0,0 +1,5 @@
src/**/firebase.ts linguist-generated=true
src/**/rxfire.ts linguist-generated=true
src/compat/**/base.ts linguist-generated=true
sample/**/* linguist-generated=true
sample-compat/**/* linguist-generated=true
6 changes: 1 addition & 5 deletions .gitignore
Expand Up @@ -22,8 +22,4 @@ api-*.json
angularfire.tgz
unpack.sh
publish.sh

# auto-gen files
src/compat/**/base.ts
src/**/rxfire.ts
src/**/firebase.ts
.firebase
12 changes: 12 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,15 @@
<a name="7.0.3"></a>
# [7.0.3](https://github.com/angular/angularfire/compare/7.0.2...7.0.3) (2021-09-02)


### Bug fixes

* **auth:** `@angular/fire/auth` was Zone wrapping some `firebase/auth` exports it shouldn't have been
* **messaging:** `onMessage`'s callback should fire inside the Angular Zone
* **schematics:** `ng deploy` SSR should assume `bundleDependencies` defaults to true
* **schematics:** `ng deploy` SSR should not fail if an `index.html` does not exist ([#2765](https://github.com/angular/angularfire/issues/2765))


<a name="7.0.2"></a>
# [7.0.2](https://github.com/angular/angularfire2/compare/7.0.1...7.0.2) (2021-08-30)

Expand Down
14 changes: 14 additions & 0 deletions firebase.json
Expand Up @@ -8,5 +8,19 @@
},
"storage": {
"rules": "test/storage.rules"
},
"emulators": {
"firestore": {
"port": 8080
},
"database": {
"port": 9000
},
"storage": {
"port": 9199
},
"ui": {
"enabled": false
}
}
}
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "@angular/fire",
"version": "7.0.2",
"version": "7.0.3",
"description": "The official Angular library for Firebase.",
"private": true,
"scripts": {
Expand Down
9 changes: 7 additions & 2 deletions sample/angular.json

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

9 changes: 6 additions & 3 deletions sample/firebase.json

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

5 changes: 4 additions & 1 deletion sample/package.json

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

16 changes: 14 additions & 2 deletions sample/src/app/app.browser.module.ts

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

13 changes: 10 additions & 3 deletions sample/src/app/app.component.ts

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

50 changes: 1 addition & 49 deletions sample/src/app/app.module.ts

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

27 changes: 14 additions & 13 deletions sample/src/app/auth/auth.component.ts

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

30 changes: 13 additions & 17 deletions sample/src/app/database/database.component.ts

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

11 changes: 11 additions & 0 deletions sample/src/app/database/lazyDatabase.ts

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

20 changes: 12 additions & 8 deletions sample/src/app/firestore/firestore.component.ts

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

0 comments on commit b36b6a7

Please sign in to comment.