Skip to content

Commit b36b6a7

Browse files
authored
chore(release): 7.0.3 (#2915)
* 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
1 parent db76d50 commit b36b6a7

File tree

101 files changed

+2815
-1387
lines changed

Some content is hidden

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

101 files changed

+2815
-1387
lines changed

.gitattributes

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
src/**/firebase.ts linguist-generated=true
2+
src/**/rxfire.ts linguist-generated=true
3+
src/compat/**/base.ts linguist-generated=true
4+
sample/**/* linguist-generated=true
5+
sample-compat/**/* linguist-generated=true

.gitignore

+1-5
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,4 @@ api-*.json
2222
angularfire.tgz
2323
unpack.sh
2424
publish.sh
25-
26-
# auto-gen files
27-
src/compat/**/base.ts
28-
src/**/rxfire.ts
29-
src/**/firebase.ts
25+
.firebase

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
<a name="7.0.3"></a>
2+
# [7.0.3](https://github.com/angular/angularfire/compare/7.0.2...7.0.3) (2021-09-02)
3+
4+
5+
### Bug fixes
6+
7+
* **auth:** `@angular/fire/auth` was Zone wrapping some `firebase/auth` exports it shouldn't have been
8+
* **messaging:** `onMessage`'s callback should fire inside the Angular Zone
9+
* **schematics:** `ng deploy` SSR should assume `bundleDependencies` defaults to true
10+
* **schematics:** `ng deploy` SSR should not fail if an `index.html` does not exist ([#2765](https://github.com/angular/angularfire/issues/2765))
11+
12+
113
<a name="7.0.2"></a>
214
# [7.0.2](https://github.com/angular/angularfire2/compare/7.0.1...7.0.2) (2021-08-30)
315

firebase.json

+14
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,19 @@
88
},
99
"storage": {
1010
"rules": "test/storage.rules"
11+
},
12+
"emulators": {
13+
"firestore": {
14+
"port": 8080
15+
},
16+
"database": {
17+
"port": 9000
18+
},
19+
"storage": {
20+
"port": 9199
21+
},
22+
"ui": {
23+
"enabled": false
24+
}
1125
}
1226
}

package.json

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

sample/angular.json

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

sample/firebase.json

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

sample/package.json

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

sample/src/app/app.browser.module.ts

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

sample/src/app/app.component.ts

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

sample/src/app/app.module.ts

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

sample/src/app/auth/auth.component.ts

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

sample/src/app/database/database.component.ts

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

sample/src/app/database/lazyDatabase.ts

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

sample/src/app/firestore/firestore.component.ts

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

0 commit comments

Comments
 (0)