Skip to content

Commit 337116f

Browse files
authored
feat(app-check): Support Firebase AppCheck (#2940)
* Adding `@angular/fire/app-check` * Right now AppCheck doesn't "allow" you to set the debug token global right before initialization as it's inspected as a side-effect. I devised a hack that wins the race. Downside here is that Angular hasn't been initialized yet, so in order to tell if Angular is in devmode I'm looking up global variables, which are subject to behavior changes. Request has been submitted to the JS SDK team.. * Flushing out the samples a bit more, added appcheck * Changing the tsconfig path resolution so it doesn't have to be exhaustive
1 parent 5ba20c7 commit 337116f

Some content is hidden

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

48 files changed

+411
-83
lines changed

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.4",
3+
"version": "7.1.0",
44
"description": "The official Angular library for Firebase.",
55
"private": true,
66
"scripts": {

samples/advanced/server.ts

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

samples/advanced/src/app/app-check/app-check.component.spec.ts

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

samples/advanced/src/app/app-check/app-check.component.ts

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

samples/advanced/src/app/app.module.ts

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

samples/advanced/src/app/auth/auth.component.ts

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

samples/advanced/src/app/database/database.component.ts

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

samples/advanced/src/app/firestore/firestore.component.ts

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

samples/advanced/src/app/functions/functions.component.ts

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

samples/advanced/src/app/home/home.component.ts

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

samples/advanced/src/app/messaging/messaging.component.ts

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

samples/advanced/src/app/remote-config/remote-config.component.ts

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

samples/advanced/src/environments/environment.prod.ts

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

samples/advanced/src/environments/environment.ts

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

samples/compat/src/app/app.module.ts

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

samples/compat/src/environments/environment.prod.ts

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

samples/compat/src/environments/environment.ts

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

samples/modular/src/app/app-check/app-check.component.spec.ts

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

0 commit comments

Comments
 (0)