@firebase/auth 0.23.1 → 0.23.2-20230511223943

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (58) hide show
  1. package/dist/auth-public.d.ts +3 -3
  2. package/dist/auth.d.ts +3 -3
  3. package/dist/browser-cjs/{index-d2009dbb.js → index-8999b68a.js} +3 -7
  4. package/dist/browser-cjs/index-8999b68a.js.map +1 -0
  5. package/dist/browser-cjs/index.js +1 -1
  6. package/dist/browser-cjs/internal.js +1 -1
  7. package/dist/browser-cjs/src/core/user/id_token_result.d.ts +1 -1
  8. package/dist/browser-cjs/src/model/public_types.d.ts +2 -2
  9. package/dist/cordova/index.js +2 -2
  10. package/dist/cordova/internal.js +2 -2
  11. package/dist/cordova/{popup_redirect-9cdb61d2.js → popup_redirect-0d411519.js} +3 -7
  12. package/dist/cordova/popup_redirect-0d411519.js.map +1 -0
  13. package/dist/cordova/src/core/user/id_token_result.d.ts +1 -1
  14. package/dist/cordova/src/model/public_types.d.ts +2 -2
  15. package/dist/esm2017/{index-eaf604ee.js → index-8f8ec7ab.js} +3 -7
  16. package/dist/esm2017/index-8f8ec7ab.js.map +1 -0
  17. package/dist/esm2017/index.js +1 -1
  18. package/dist/esm2017/internal.js +2 -2
  19. package/dist/esm2017/src/core/user/id_token_result.d.ts +1 -1
  20. package/dist/esm2017/src/model/public_types.d.ts +2 -2
  21. package/dist/esm5/{index-2bcde735.js → index-a2e6e186.js} +3 -7
  22. package/dist/esm5/index-a2e6e186.js.map +1 -0
  23. package/dist/esm5/index.js +1 -1
  24. package/dist/esm5/internal.js +2 -2
  25. package/dist/esm5/src/core/user/id_token_result.d.ts +1 -1
  26. package/dist/esm5/src/model/public_types.d.ts +2 -2
  27. package/dist/index.webworker.esm5.js +2 -6
  28. package/dist/index.webworker.esm5.js.map +1 -1
  29. package/dist/node/index.js +1 -1
  30. package/dist/node/internal.js +1 -1
  31. package/dist/node/src/core/user/id_token_result.d.ts +1 -1
  32. package/dist/node/src/model/public_types.d.ts +2 -2
  33. package/dist/node/{totp-5fc361f8.js → totp-a52f251c.js} +3 -7
  34. package/dist/node/totp-a52f251c.js.map +1 -0
  35. package/dist/node-esm/index.js +1 -1
  36. package/dist/node-esm/internal.js +2 -2
  37. package/dist/node-esm/src/core/user/id_token_result.d.ts +1 -1
  38. package/dist/node-esm/src/model/public_types.d.ts +2 -2
  39. package/dist/node-esm/{totp-035c6eef.js → totp-29c58289.js} +3 -7
  40. package/dist/node-esm/totp-29c58289.js.map +1 -0
  41. package/dist/rn/index.js +1 -1
  42. package/dist/rn/internal.js +1 -1
  43. package/dist/rn/{phone-ae3fa109.js → phone-446148f3.js} +3 -7
  44. package/dist/rn/phone-446148f3.js.map +1 -0
  45. package/dist/rn/src/core/user/id_token_result.d.ts +1 -1
  46. package/dist/rn/src/model/public_types.d.ts +2 -2
  47. package/dist/src/core/user/id_token_result.d.ts +1 -1
  48. package/dist/src/model/public_types.d.ts +2 -2
  49. package/package.json +3 -3
  50. package/CHANGELOG.md +0 -504
  51. package/dist/browser-cjs/index-d2009dbb.js.map +0 -1
  52. package/dist/cordova/popup_redirect-9cdb61d2.js.map +0 -1
  53. package/dist/esm2017/index-eaf604ee.js.map +0 -1
  54. package/dist/esm5/index-2bcde735.js.map +0 -1
  55. package/dist/node/totp-5fc361f8.js.map +0 -1
  56. package/dist/node-esm/totp-035c6eef.js.map +0 -1
  57. package/dist/rn/phone-ae3fa109.js.map +0 -1
  58. package/dist/tsdoc-metadata.json +0 -11
@@ -29,7 +29,7 @@ import { IdTokenResult, ParsedToken, User } from '../../model/public_types';
29
29
  */
30
30
  export declare function getIdToken(user: User, forceRefresh?: boolean): Promise<string>;
31
31
  /**
32
- * Returns a deserialized JSON Web Token (JWT) used to identitfy the user to a Firebase service.
32
+ * Returns a deserialized JSON Web Token (JWT) used to identify the user to a Firebase service.
33
33
  *
34
34
  * @remarks
35
35
  * Returns the current token if it has not expired or if it will not expire in the next five
@@ -278,7 +278,7 @@ export interface Auth {
278
278
  */
279
279
  useDeviceLanguage(): void;
280
280
  /**
281
- * Signs out the current user.
281
+ * Signs out the current user. This does not automatically revoke the user's ID token.
282
282
  */
283
283
  signOut(): Promise<void>;
284
284
  }
@@ -948,7 +948,7 @@ export interface User extends UserInfo {
948
948
  */
949
949
  getIdToken(forceRefresh?: boolean): Promise<string>;
950
950
  /**
951
- * Returns a deserialized JSON Web Token (JWT) used to identitfy the user to a Firebase service.
951
+ * Returns a deserialized JSON Web Token (JWT) used to identify the user to a Firebase service.
952
952
  *
953
953
  * @remarks
954
954
  * Returns the current token if it has not expired or if it will not expire in the next five
@@ -29,7 +29,7 @@ import { IdTokenResult, ParsedToken, User } from '../../model/public_types';
29
29
  */
30
30
  export declare function getIdToken(user: User, forceRefresh?: boolean): Promise<string>;
31
31
  /**
32
- * Returns a deserialized JSON Web Token (JWT) used to identitfy the user to a Firebase service.
32
+ * Returns a deserialized JSON Web Token (JWT) used to identify the user to a Firebase service.
33
33
  *
34
34
  * @remarks
35
35
  * Returns the current token if it has not expired or if it will not expire in the next five
@@ -278,7 +278,7 @@ export interface Auth {
278
278
  */
279
279
  useDeviceLanguage(): void;
280
280
  /**
281
- * Signs out the current user.
281
+ * Signs out the current user. This does not automatically revoke the user's ID token.
282
282
  */
283
283
  signOut(): Promise<void>;
284
284
  }
@@ -948,7 +948,7 @@ export interface User extends UserInfo {
948
948
  */
949
949
  getIdToken(forceRefresh?: boolean): Promise<string>;
950
950
  /**
951
- * Returns a deserialized JSON Web Token (JWT) used to identitfy the user to a Firebase service.
951
+ * Returns a deserialized JSON Web Token (JWT) used to identify the user to a Firebase service.
952
952
  *
953
953
  * @remarks
954
954
  * Returns the current token if it has not expired or if it will not expire in the next five
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@firebase/auth",
3
- "version": "0.23.1",
3
+ "version": "0.23.2-20230511223943",
4
4
  "description": "The Firebase Authenticaton component of the Firebase JS SDK.",
5
5
  "author": "Firebase <firebase-support@google.com> (https://firebase.google.com/)",
6
6
  "main": "dist/node/index.js",
@@ -108,7 +108,7 @@
108
108
  "typings:public": "node ../../scripts/build/use_typings.js ./dist/auth-public.d.ts"
109
109
  },
110
110
  "peerDependencies": {
111
- "@firebase/app": "0.x"
111
+ "@firebase/app": "0.9.10-20230511223943"
112
112
  },
113
113
  "dependencies": {
114
114
  "@firebase/component": "0.6.4",
@@ -119,7 +119,7 @@
119
119
  },
120
120
  "license": "Apache-2.0",
121
121
  "devDependencies": {
122
- "@firebase/app": "0.9.9",
122
+ "@firebase/app": "0.9.10-20230511223943",
123
123
  "@rollup/plugin-json": "4.1.0",
124
124
  "@rollup/plugin-strip": "2.1.0",
125
125
  "chromedriver": "98.0.1",
package/CHANGELOG.md DELETED
@@ -1,504 +0,0 @@
1
- # @firebase/auth
2
-
3
- ## 0.23.1
4
-
5
- ### Patch Changes
6
-
7
- - [`1d6771eb3`](https://github.com/firebase/firebase-js-sdk/commit/1d6771eb358fd5cb9a6b53b7a0141b08f83f0b47) [#7140](https://github.com/firebase/firebase-js-sdk/pull/7140) - Increase the popup poller timeout to 8s to support blocking functions + Firefox
8
-
9
- ## 0.23.0
10
-
11
- ### Minor Changes
12
-
13
- - [`b04f04081`](https://github.com/firebase/firebase-js-sdk/commit/b04f0408139f75c69b6f6eea396f3e961f658bd1) [#7191](https://github.com/firebase/firebase-js-sdk/pull/7191) - [feature] Added Firebase App Check support to Firebase Auth.
14
-
15
- - [`6b8e0c13d`](https://github.com/firebase/firebase-js-sdk/commit/6b8e0c13daaf476c7e6ea034006250d1f33dd828) [#7193](https://github.com/firebase/firebase-js-sdk/pull/7193) - [feature] Add reCAPTCHA enterprise support.
16
-
17
- ## 0.22.0
18
-
19
- ### Minor Changes
20
-
21
- - [`965396d52`](https://github.com/firebase/firebase-js-sdk/commit/965396d522243fcc17b63558823ad761c87ae1ba) [#7177](https://github.com/firebase/firebase-js-sdk/pull/7177) - Fixed error message for missing password case.
22
-
23
- ### Patch Changes
24
-
25
- - [`bd51cecba`](https://github.com/firebase/firebase-js-sdk/commit/bd51cecba5cfc1b1c1ca46bf94e65320da3da609) [#7179](https://github.com/firebase/firebase-js-sdk/pull/7179) (fixes [#7174](https://github.com/firebase/firebase-js-sdk/issues/7174)) - Fix typings for `TotpMultiFactorGenerator`. This fixes a reversion in 9.19.0.
26
-
27
- ## 0.21.6
28
-
29
- ### Patch Changes
30
-
31
- - [`58bae8757`](https://github.com/firebase/firebase-js-sdk/commit/58bae875799ed2ace8232f5d9e7aaaaa7a84d064) [#7146](https://github.com/firebase/firebase-js-sdk/pull/7146) - Support TOTP as a multi-factor option in Firebase Auth/GCIP.
32
-
33
- - [`00737a1ab`](https://github.com/firebase/firebase-js-sdk/commit/00737a1abd469f3deb041d8ff482165cc16bc34e) [#7125](https://github.com/firebase/firebase-js-sdk/pull/7125) (fixes [#7118](https://github.com/firebase/firebase-js-sdk/issues/7118)) - Modify \_fail to use AuthErrorCode.NETWORK_REQUEST_FAILED
34
-
35
- ## 0.21.5
36
-
37
- ### Patch Changes
38
-
39
- - [`e0b677e70`](https://github.com/firebase/firebase-js-sdk/commit/e0b677e70ed2fd9e488737c77ebe2fc65d3a0822) [#7066](https://github.com/firebase/firebase-js-sdk/pull/7066) - Explicitly set createdAt and lastLoginAt when cloning UserImpl
40
-
41
- ## 0.21.4
42
-
43
- ### Patch Changes
44
-
45
- - [`c8a6e08b0`](https://github.com/firebase/firebase-js-sdk/commit/c8a6e08b01a52b3eca77ca9da8989dac2e77a972) [#7038](https://github.com/firebase/firebase-js-sdk/pull/7038) - Modify \_fail to use AuthErrorCode.INTERNAL_ERROR and pass in error message.
46
-
47
- - Updated dependencies [[`c59f537b1`](https://github.com/firebase/firebase-js-sdk/commit/c59f537b1262b5d7997291b8c1e9324d378effb6)]:
48
- - @firebase/util@1.9.3
49
- - @firebase/component@0.6.4
50
-
51
- ## 0.21.3
52
-
53
- ### Patch Changes
54
-
55
- - [`d071bd1ac`](https://github.com/firebase/firebase-js-sdk/commit/d071bd1acaa0583b4dd3454387fc58eafddb5c30) [#7007](https://github.com/firebase/firebase-js-sdk/pull/7007) (fixes [#7005](https://github.com/firebase/firebase-js-sdk/issues/7005)) - Move exports.default fields to always be the last field. This fixes a bug caused in 9.17.0 that prevented some bundlers and frameworks from building.
56
-
57
- - Updated dependencies [[`d071bd1ac`](https://github.com/firebase/firebase-js-sdk/commit/d071bd1acaa0583b4dd3454387fc58eafddb5c30)]:
58
- - @firebase/util@1.9.2
59
- - @firebase/component@0.6.3
60
-
61
- ## 0.21.2
62
-
63
- ### Patch Changes
64
-
65
- - [`6439f1173`](https://github.com/firebase/firebase-js-sdk/commit/6439f1173353f3857ab820675d572ea676340924) [#6973](https://github.com/firebase/firebase-js-sdk/pull/6973) - Expose TOKEN_EXPIRED error when mfa unenroll logs out the user.
66
-
67
- - [`0bab0b7a7`](https://github.com/firebase/firebase-js-sdk/commit/0bab0b7a786d1563bf665904c7097d1fe06efce5) [#6981](https://github.com/firebase/firebase-js-sdk/pull/6981) - Added browser CJS entry points (expected by Jest when using JSDOM mode).
68
-
69
- - Updated dependencies [[`0bab0b7a7`](https://github.com/firebase/firebase-js-sdk/commit/0bab0b7a786d1563bf665904c7097d1fe06efce5)]:
70
- - @firebase/util@1.9.1
71
- - @firebase/component@0.6.2
72
-
73
- ## 0.21.1
74
-
75
- ### Patch Changes
76
-
77
- - [`50b8191f6`](https://github.com/firebase/firebase-js-sdk/commit/50b8191f6c51a936bd92a1a6a68af1cf201fc127) [#6914](https://github.com/firebase/firebase-js-sdk/pull/6914) (fixes [#6827](https://github.com/firebase/firebase-js-sdk/issues/6827)) - Fix to minimize a potential race condition between auth init and signInWithRedirect
78
-
79
- - Updated dependencies [[`d4114a4f7`](https://github.com/firebase/firebase-js-sdk/commit/d4114a4f7da3f469c0c900416ac8beee58885ec3), [`06dc1364d`](https://github.com/firebase/firebase-js-sdk/commit/06dc1364d7560f4c563e1ccc89af9cad4cd91df8)]:
80
- - @firebase/util@1.9.0
81
- - @firebase/component@0.6.1
82
-
83
- ## 0.21.0
84
-
85
- ### Minor Changes
86
-
87
- - [`1625f7a95`](https://github.com/firebase/firebase-js-sdk/commit/1625f7a95cc3ffb666845db0a8044329be74b5be) [#6799](https://github.com/firebase/firebase-js-sdk/pull/6799) - Update TypeScript version to 4.7.4.
88
-
89
- ### Patch Changes
90
-
91
- - [`e650f6498`](https://github.com/firebase/firebase-js-sdk/commit/e650f649854f3c39737fe4bade43f9eedc3e611f) [#6762](https://github.com/firebase/firebase-js-sdk/pull/6762) (fixes [#6736](https://github.com/firebase/firebase-js-sdk/issues/6736)) - move selenium-webdriver to devDependencies
92
-
93
- - Updated dependencies [[`c20633ed3`](https://github.com/firebase/firebase-js-sdk/commit/c20633ed35056cbadc9d65d9ceddf4e28d1ea666), [`1625f7a95`](https://github.com/firebase/firebase-js-sdk/commit/1625f7a95cc3ffb666845db0a8044329be74b5be)]:
94
- - @firebase/util@1.8.0
95
- - @firebase/component@0.6.0
96
- - @firebase/logger@0.4.0
97
-
98
- ## 0.20.11
99
-
100
- ### Patch Changes
101
-
102
- - [`4af28c1a4`](https://github.com/firebase/firebase-js-sdk/commit/4af28c1a42bd25ce2353f694ca1724c6101cbce5) [#6682](https://github.com/firebase/firebase-js-sdk/pull/6682) - Upgrade TypeScript to 4.7.4.
103
-
104
- - Updated dependencies [[`4af28c1a4`](https://github.com/firebase/firebase-js-sdk/commit/4af28c1a42bd25ce2353f694ca1724c6101cbce5)]:
105
- - @firebase/component@0.5.21
106
- - @firebase/logger@0.3.4
107
- - @firebase/util@1.7.3
108
-
109
- ## 0.20.10
110
-
111
- ### Patch Changes
112
-
113
- - Updated dependencies [[`807f06aa2`](https://github.com/firebase/firebase-js-sdk/commit/807f06aa26438a91aaea08fd38efb6c706bb8a5d)]:
114
- - @firebase/util@1.7.2
115
- - @firebase/component@0.5.20
116
-
117
- ## 0.20.9
118
-
119
- ### Patch Changes
120
-
121
- - Updated dependencies [[`171b78b76`](https://github.com/firebase/firebase-js-sdk/commit/171b78b762826a640d267dd4dd172ad9459c4561), [`29d034072`](https://github.com/firebase/firebase-js-sdk/commit/29d034072c20af394ce384e42aa10a37d5dfcb18)]:
122
- - @firebase/util@1.7.1
123
- - @firebase/component@0.5.19
124
-
125
- ## 0.20.8
126
-
127
- ### Patch Changes
128
-
129
- - [`fdd4ab464`](https://github.com/firebase/firebase-js-sdk/commit/fdd4ab464b59a107bdcc195df3f01e32efd89ed4) [#6526](https://github.com/firebase/firebase-js-sdk/pull/6526) - Add functionality to auto-initialize project config and emulator settings from global defaults provided by framework tooling.
130
-
131
- - Updated dependencies [[`fdd4ab464`](https://github.com/firebase/firebase-js-sdk/commit/fdd4ab464b59a107bdcc195df3f01e32efd89ed4)]:
132
- - @firebase/util@1.7.0
133
- - @firebase/component@0.5.18
134
-
135
- ## 0.20.7
136
-
137
- ### Patch Changes
138
-
139
- - [`e06d9069c`](https://github.com/firebase/firebase-js-sdk/commit/e06d9069ca07429df248d9134aebdea1118e9427) [#6594](https://github.com/firebase/firebase-js-sdk/pull/6594) - Included a reference to AuthInternal in MultiFactorSessionImpl.
140
-
141
- * [`666c8ec1f`](https://github.com/firebase/firebase-js-sdk/commit/666c8ec1ff5cb5b8947a142e26c0a2ecb18f8bb4) [#6569](https://github.com/firebase/firebase-js-sdk/pull/6569) (fixes [#6553](https://github.com/firebase/firebase-js-sdk/issues/6553)) - Update custom claim type of `ParsedToken` to be `any`
142
-
143
- ## 0.20.6
144
-
145
- ### Patch Changes
146
-
147
- - [`bea604ea3`](https://github.com/firebase/firebase-js-sdk/commit/bea604ea33c529e755cc3fcdc0a2ea75d04b9f19) [#6544](https://github.com/firebase/firebase-js-sdk/pull/6544) - Fix proactive refresh logic in Auth when RTDB/Firestore/Storage are in use
148
-
149
- ## 0.20.5
150
-
151
- ### Patch Changes
152
-
153
- - [`1261d8323`](https://github.com/firebase/firebase-js-sdk/commit/1261d832345ff4505391a150cb9c32719da37eb0) [#6421](https://github.com/firebase/firebase-js-sdk/pull/6421) (fixes [#6133](https://github.com/firebase/firebase-js-sdk/issues/6133)) - Fix a bug causing ReCAPTCHA conflicts between Auth and App Check.
154
-
155
- * [`8c52a96ed`](https://github.com/firebase/firebase-js-sdk/commit/8c52a96edac5b65501ee4eeb234c4bb8e70a5dd5) [#6379](https://github.com/firebase/firebase-js-sdk/pull/6379) (fixes [#6331](https://github.com/firebase/firebase-js-sdk/issues/6331)) - Update user agent detection to better detect iPad; fixes bug for some iPad devices running Cordova apps
156
-
157
- * Updated dependencies [[`b12af44a5`](https://github.com/firebase/firebase-js-sdk/commit/b12af44a5c7500e1192d6cc1a4afc4d77efadbaf)]:
158
- - @firebase/util@1.6.3
159
- - @firebase/component@0.5.17
160
-
161
- ## 0.20.4
162
-
163
- ### Patch Changes
164
-
165
- - Updated dependencies [[`efe2000fc`](https://github.com/firebase/firebase-js-sdk/commit/efe2000fc499e2c85c4e5e0fef6741ff3bad2eb0)]:
166
- - @firebase/util@1.6.2
167
- - @firebase/component@0.5.16
168
-
169
- ## 0.20.3
170
-
171
- ### Patch Changes
172
-
173
- - [`2cd1cc76f`](https://github.com/firebase/firebase-js-sdk/commit/2cd1cc76f2a308135cd60f424fe09084a34b5cb5) [#6307](https://github.com/firebase/firebase-js-sdk/pull/6307) (fixes [#6300](https://github.com/firebase/firebase-js-sdk/issues/6300)) - fix: add type declarations to exports field
174
-
175
- * [`d4b52b612`](https://github.com/firebase/firebase-js-sdk/commit/d4b52b612cf73610c57a3c08a0415ab7b622a70a) [#6321](https://github.com/firebase/firebase-js-sdk/pull/6321) - Fix incorrect paths in package.json
176
-
177
- * Updated dependencies [[`2cd1cc76f`](https://github.com/firebase/firebase-js-sdk/commit/2cd1cc76f2a308135cd60f424fe09084a34b5cb5)]:
178
- - @firebase/component@0.5.15
179
- - @firebase/logger@0.3.3
180
- - @firebase/util@1.6.1
181
-
182
- ## 0.20.2
183
-
184
- ### Patch Changes
185
-
186
- - [`63ac2ed28`](https://github.com/firebase/firebase-js-sdk/commit/63ac2ed28f237950290a7af2dcdcf1518ddaee4b) - Add missing field to `firebase` claim in token result typing
187
-
188
- * [`88517b591`](https://github.com/firebase/firebase-js-sdk/commit/88517b59179410e43d5d5129a1fefc355cd1d4eb) [#6289](https://github.com/firebase/firebase-js-sdk/pull/6289) - Propagate customData in FirebaseError when the user is disabled.
189
-
190
- ## 0.20.1
191
-
192
- ### Patch Changes
193
-
194
- - [`07cf0f1c9`](https://github.com/firebase/firebase-js-sdk/commit/07cf0f1c9033373bf1d3a8a1958385f177506c6c) [#6248](https://github.com/firebase/firebase-js-sdk/pull/6248) (fixes [#6246](https://github.com/firebase/firebase-js-sdk/issues/6246)) - Add `@internal` tags to fix public typings file.
195
-
196
- ## 0.20.0
197
-
198
- ### Minor Changes
199
-
200
- - [`1ac3c9d41`](https://github.com/firebase/firebase-js-sdk/commit/1ac3c9d41e8f69a94c64c6e0caf5f1a159b7dc3c) [#6151](https://github.com/firebase/firebase-js-sdk/pull/6151) - Add `beforeAuthStateChanged()` middleware function which allows the user to provide callbacks that are run before an auth state change
201
- sets a new user.
202
-
203
- ### Patch Changes
204
-
205
- - Updated dependencies [[`9c5c9c36d`](https://github.com/firebase/firebase-js-sdk/commit/9c5c9c36da80b98b73cfd60ef2e2965087e9f801)]:
206
- - @firebase/util@1.6.0
207
- - @firebase/component@0.5.14
208
-
209
- ## 0.19.12
210
-
211
- ### Patch Changes
212
-
213
- - Updated dependencies [[`e9e5f6b3c`](https://github.com/firebase/firebase-js-sdk/commit/e9e5f6b3ca9d61323b22f87986d9959f5297ec59)]:
214
- - @firebase/util@1.5.2
215
- - @firebase/component@0.5.13
216
-
217
- ## 0.19.11
218
-
219
- ### Patch Changes
220
-
221
- - Updated dependencies [[`3198d58dc`](https://github.com/firebase/firebase-js-sdk/commit/3198d58dcedbf7583914dbcc76984f6f7df8d2ef)]:
222
- - @firebase/util@1.5.1
223
- - @firebase/component@0.5.12
224
-
225
- ## 0.19.10
226
-
227
- ### Patch Changes
228
-
229
- - [`7405e7d59`](https://github.com/firebase/firebase-js-sdk/commit/7405e7d593b40c9945c32ffbe66ac6fb11e2991e) [#6033](https://github.com/firebase/firebase-js-sdk/pull/6033) - Heartbeat
230
-
231
- - Updated dependencies [[`2d672cead`](https://github.com/firebase/firebase-js-sdk/commit/2d672cead167187cb714cd89b638c0884ba58f03)]:
232
- - @firebase/util@1.5.0
233
- - @firebase/component@0.5.11
234
-
235
- ## 0.19.9
236
-
237
- ### Patch Changes
238
-
239
- - [`3a8d4c1d1`](https://github.com/firebase/firebase-js-sdk/commit/3a8d4c1d1a5e5fda5906b1feb96324efb68739cd) [#6007](https://github.com/firebase/firebase-js-sdk/pull/6007) - Update chromedriver version number (dev dependency)
240
-
241
- ## 0.19.8
242
-
243
- ### Patch Changes
244
-
245
- - [`af9234866`](https://github.com/firebase/firebase-js-sdk/commit/af923486662bc9449cca122b55840b045c9b4a5a) [#5938](https://github.com/firebase/firebase-js-sdk/pull/5938) (fixes [#917](https://github.com/firebase/firebase-js-sdk/issues/917)) - Fix bug where `user.providerData` field was being improperly initialized
246
-
247
- ## 0.19.7
248
-
249
- ### Patch Changes
250
-
251
- - [`4983f4d5a`](https://github.com/firebase/firebase-js-sdk/commit/4983f4d5a0dc385c5b3e042ace44c8204d3cce81) [#5923](https://github.com/firebase/firebase-js-sdk/pull/5923) - Fix errors in compatibility layer when cookies are fully disabled in Chrome
252
-
253
- * [`d612d6f6e`](https://github.com/firebase/firebase-js-sdk/commit/d612d6f6e4d3113d45427b7df68459c0a3e31a1f) [#5928](https://github.com/firebase/firebase-js-sdk/pull/5928) - Upgrade `node-fetch` dependency due to a security issue.
254
-
255
- - [`e04b7452b`](https://github.com/firebase/firebase-js-sdk/commit/e04b7452bae10e6525cfb9c551f76a1aa98f9078) [#5924](https://github.com/firebase/firebase-js-sdk/pull/5924) (fixes [#5922](https://github.com/firebase/firebase-js-sdk/issues/5922)) - Add missing PhoneMultiFactorInfo public interface
256
-
257
- * [`2820674b8`](https://github.com/firebase/firebase-js-sdk/commit/2820674b848e918ab164e7d0ec9d5b838bbfa6e0) [#5927](https://github.com/firebase/firebase-js-sdk/pull/5927) - Prevent React Native from logging a warning about deprecation of `AsyncStorage` if the developer has provided the non-deprecated version.
258
-
259
- ## 0.19.6
260
-
261
- ### Patch Changes
262
-
263
- - [`67b6decbb`](https://github.com/firebase/firebase-js-sdk/commit/67b6decbb9b5ee806d4109b9b6c188c4933e1270) [#5908](https://github.com/firebase/firebase-js-sdk/pull/5908) - Add cordova and react-native paths to auth package.json exports field.
264
-
265
- * [`922e9ed9a`](https://github.com/firebase/firebase-js-sdk/commit/922e9ed9a68c130aefa0cdb9b27720b73011c397) [#5892](https://github.com/firebase/firebase-js-sdk/pull/5892) (fixes [#5874](https://github.com/firebase/firebase-js-sdk/issues/5874)) - Fix error code thrown when the network times out
266
-
267
- ## 0.19.5
268
-
269
- ### Patch Changes
270
-
271
- - [`e3a5248fc`](https://github.com/firebase/firebase-js-sdk/commit/e3a5248fc8536fe2ca6d97483aa7e1b3f737dd17) [#5811](https://github.com/firebase/firebase-js-sdk/pull/5811) (fixes [#5791](https://github.com/firebase/firebase-js-sdk/issues/5791)) - Fix persistence selection in compatibility layer in worker scripts
272
-
273
- - Updated dependencies [[`3b481f572`](https://github.com/firebase/firebase-js-sdk/commit/3b481f572456e1eab3435bfc25717770d95a8c49)]:
274
- - @firebase/util@1.4.3
275
- - @firebase/component@0.5.10
276
-
277
- ## 0.19.4
278
-
279
- ### Patch Changes
280
-
281
- - [`a777385d6`](https://github.com/firebase/firebase-js-sdk/commit/a777385d67653cdcc3b839149dde867f32b48369) [#5799](https://github.com/firebase/firebase-js-sdk/pull/5799) - Add X-Firebase-gmpid header to requests
282
-
283
- * [`dc6b447ba`](https://github.com/firebase/firebase-js-sdk/commit/dc6b447bac4e899a0c4741ec18bf19e2ae66731a) [#5777](https://github.com/firebase/firebase-js-sdk/pull/5777) (fixes [#5720](https://github.com/firebase/firebase-js-sdk/issues/5720)) - Fix errors during Auth initialization when the network is unavailable
284
-
285
- ## 0.19.3
286
-
287
- ### Patch Changes
288
-
289
- - [`1583a8202`](https://github.com/firebase/firebase-js-sdk/commit/1583a82022bfd404e94f28d1786e596d6b5a9f43) [#5715](https://github.com/firebase/firebase-js-sdk/pull/5715) - Fix Provider.credentialFromResult documentation snippets
290
-
291
- ## 0.19.2
292
-
293
- ### Patch Changes
294
-
295
- - [`3281315fa`](https://github.com/firebase/firebase-js-sdk/commit/3281315fae9c6f535f9d5052ee17d60861ea569a) [#5708](https://github.com/firebase/firebase-js-sdk/pull/5708) (fixes [#1487](https://github.com/firebase/firebase-js-sdk/issues/1487)) - Update build scripts to work with the exports field
296
-
297
- * [`dbd54f7c9`](https://github.com/firebase/firebase-js-sdk/commit/dbd54f7c9ef0b5d78d491e26d816084a478bdf04) [#5700](https://github.com/firebase/firebase-js-sdk/pull/5700) (fixes [#5631](https://github.com/firebase/firebase-js-sdk/issues/5631)) - Fix lighthouse issues related to the embedded iframe used to perform OAuth sign in.
298
-
299
- * Updated dependencies [[`3281315fa`](https://github.com/firebase/firebase-js-sdk/commit/3281315fae9c6f535f9d5052ee17d60861ea569a)]:
300
- - @firebase/component@0.5.9
301
- - @firebase/logger@0.3.2
302
- - @firebase/util@1.4.2
303
-
304
- ## 0.19.1
305
-
306
- ### Patch Changes
307
-
308
- - [`31bd6f27f`](https://github.com/firebase/firebase-js-sdk/commit/31bd6f27f965a561f814bad1110a43849a6a9cbf) [#5689](https://github.com/firebase/firebase-js-sdk/pull/5689) - Add SAMLAuthProvider to the compatability layer (it was missing before)
309
-
310
- * [`2322b6023`](https://github.com/firebase/firebase-js-sdk/commit/2322b6023c628cd9f4f4172767c17d215dd91684) [#5693](https://github.com/firebase/firebase-js-sdk/pull/5693) - Add exports field to all packages
311
-
312
- - [`0765b5e19`](https://github.com/firebase/firebase-js-sdk/commit/0765b5e19c3e949bb33233ee52c8e33f01418e54) [#5686](https://github.com/firebase/firebase-js-sdk/pull/5686) (fixes [#5685](https://github.com/firebase/firebase-js-sdk/issues/5685)) - Fix bug that caused onAuthStateChanged to be fired twice
313
-
314
- - Updated dependencies [[`2322b6023`](https://github.com/firebase/firebase-js-sdk/commit/2322b6023c628cd9f4f4172767c17d215dd91684)]:
315
- - @firebase/component@0.5.8
316
- - @firebase/logger@0.3.1
317
- - @firebase/util@1.4.1
318
-
319
- ## 0.19.0
320
-
321
- ### Minor Changes
322
-
323
- - [`b6f30c24f`](https://github.com/firebase/firebase-js-sdk/commit/b6f30c24fdf096ac4e8bdba32b9c1380903a7507) [#5617](https://github.com/firebase/firebase-js-sdk/pull/5617) (fixes [#5610](https://github.com/firebase/firebase-js-sdk/issues/5610)) - Fix behavior on subsequent calls to `getRedirectResult()`
324
-
325
- ### Patch Changes
326
-
327
- - [`69ff8eb54`](https://github.com/firebase/firebase-js-sdk/commit/69ff8eb549e49de51cae11a04bce023bb6e1fc02) [#5616](https://github.com/firebase/firebase-js-sdk/pull/5616) - Fix the public `AuthError` typing, and update the `MultiFactorError` implementation to follow the new standard (all fields listed under `customData`)
328
-
329
- * [`2429ac105`](https://github.com/firebase/firebase-js-sdk/commit/2429ac105b0aeb15eb8c362665448c209887bada) [#5633](https://github.com/firebase/firebase-js-sdk/pull/5633) (fixes [#5631](https://github.com/firebase/firebase-js-sdk/issues/5631)) - Add the attribute `aria-hidden="true"` to the embedded iframe
330
-
331
- - [`4594d3fd6`](https://github.com/firebase/firebase-js-sdk/commit/4594d3fd6c7f7680b877aa2017ba35084ef6af96) [#5673](https://github.com/firebase/firebase-js-sdk/pull/5673) - Export Phone sign in functionality in React Native entrypoint (except for RecaptchaVerifier)
332
-
333
- * [`6dacc2400`](https://github.com/firebase/firebase-js-sdk/commit/6dacc2400fdcf4432ed1977ca1eb148da6db3fc5) [#5635](https://github.com/firebase/firebase-js-sdk/pull/5635) (fixes [#5618](https://github.com/firebase/firebase-js-sdk/issues/5618)) - Make the library resilient against localStorage and sessionStorage permissions errors
334
-
335
- ## 0.18.3
336
-
337
- ### Patch Changes
338
-
339
- - [`93795c780`](https://github.com/firebase/firebase-js-sdk/commit/93795c7801d6b28ccbbe5855fd2f3fc377b1db5f) [#5596](https://github.com/firebase/firebase-js-sdk/pull/5596) - report build variants for packages
340
-
341
- ## 0.18.2
342
-
343
- ### Patch Changes
344
-
345
- - [`1b0e7af13`](https://github.com/firebase/firebase-js-sdk/commit/1b0e7af130c59b867e84b3f2615248fedad5b83d) [#5564](https://github.com/firebase/firebase-js-sdk/pull/5564) - Calls to `connectAuthEmulator` with the `disableWarnings` flag set to true will no longer cause a `console.info` warning to be printed
346
-
347
- * [`e1d551ddb`](https://github.com/firebase/firebase-js-sdk/commit/e1d551ddb29db0f1fdf25c986cfcae6804bc8e79) [#5574](https://github.com/firebase/firebase-js-sdk/pull/5574) (fixes [#5553](https://github.com/firebase/firebase-js-sdk/issues/5553)) - Fix bug in the `OAuthProvider.prototype.credential` method that was preventing the `rawNonce` field from being populated in the returned `OAuthCredential`.
348
-
349
- - [`f7d8324a1`](https://github.com/firebase/firebase-js-sdk/commit/f7d8324a188f013f7875cf6c35fc4beb2c78c0ae) [#5562](https://github.com/firebase/firebase-js-sdk/pull/5562) - Attempt to fix bug in compatability layer in Safari ("Right side of assignment cannot be destructured")
350
-
351
- * [`e456d00a7`](https://github.com/firebase/firebase-js-sdk/commit/e456d00a7d054b2e95476562a087f2b12301e800) [#5577](https://github.com/firebase/firebase-js-sdk/pull/5577) - Fix bug where `user.tenantId` wasn't being carried over in `updateCurrentUser` function
352
-
353
- ## 0.18.1
354
-
355
- ### Patch Changes
356
-
357
- - [`49b0406ab`](https://github.com/firebase/firebase-js-sdk/commit/49b0406abb9b211c5b75325b0383539ac03358d1) [#5542](https://github.com/firebase/firebase-js-sdk/pull/5542) (fixes [#5541](https://github.com/firebase/firebase-js-sdk/issues/5541)) - Fix incorrectly-cased parameter in out-of-band request that was causing incorrect behavior in some cases
358
-
359
- ## 0.18.0
360
-
361
- ### Minor Changes
362
-
363
- - [`4d2a54fb0`](https://github.com/firebase/firebase-js-sdk/commit/4d2a54fb0611ab1987ad415c265440b9bbbc28c6) [#5527](https://github.com/firebase/firebase-js-sdk/pull/5527) - Update all persistences to map to `inMemoryPersistence` in Node, to avoid errors with server-side rendering
364
-
365
- ### Patch Changes
366
-
367
- - [`a5d87bc5c`](https://github.com/firebase/firebase-js-sdk/commit/a5d87bc5c5d6360d5fa2386fe351937463bc45b8) [#5511](https://github.com/firebase/firebase-js-sdk/pull/5511) - Fix bug with the user `emailVerified` field persistence across tabs
368
-
369
- * [`07b88e6e8`](https://github.com/firebase/firebase-js-sdk/commit/07b88e6e80f60525c66bf330d28160dbef2d0a2c) [#5487](https://github.com/firebase/firebase-js-sdk/pull/5487) - Add missing phone FACTOR_ID static property to the PhoneMultiFactorGenerator class
370
-
371
- - [`c2362214a`](https://github.com/firebase/firebase-js-sdk/commit/c2362214ad6154ce013d3815a6f1ccd061679f66) [#5522](https://github.com/firebase/firebase-js-sdk/pull/5522) - Fix wrongly-typed tenantId fields in requests to some endpoints
372
-
373
- - Updated dependencies [[`a99943fe3`](https://github.com/firebase/firebase-js-sdk/commit/a99943fe3bd5279761aa29d138ec91272b06df39), [`b835b4cba`](https://github.com/firebase/firebase-js-sdk/commit/b835b4cbabc4b7b180ae38b908c49205ce31a422)]:
374
- - @firebase/logger@0.3.0
375
- - @firebase/util@1.4.0
376
- - @firebase/component@0.5.7
377
-
378
- ## 0.17.2
379
-
380
- ### Patch Changes
381
-
382
- - [`08ec55d6d`](https://github.com/firebase/firebase-js-sdk/commit/08ec55d6dfcc85207fbdcdde77d6508f27998603) [#5423](https://github.com/firebase/firebase-js-sdk/pull/5423) - Fix bug where custom errors from blocking functions were being dropped.
383
-
384
- * [`271303f3c`](https://github.com/firebase/firebase-js-sdk/commit/271303f3ca6fa47c646177a41d7a3e3f31e1d296) [#5460](https://github.com/firebase/firebase-js-sdk/pull/5460) - Remove `const enum`s from the public typing file.
385
-
386
- ## 0.17.1
387
-
388
- ### Patch Changes
389
-
390
- - [`66596f3f8`](https://github.com/firebase/firebase-js-sdk/commit/66596f3f8c747158bf30b62d8f579f7eecf97081) [#5397](https://github.com/firebase/firebase-js-sdk/pull/5397) (fixes [#5392](https://github.com/firebase/firebase-js-sdk/issues/5392)) - Fix typings where the constructor of `OAuthProvider` was missing.
391
-
392
- ## 0.17.0
393
-
394
- ### Minor Changes
395
-
396
- - [`cdada6c68`](https://github.com/firebase/firebase-js-sdk/commit/cdada6c68f9740d13dd6674bcb658e28e68253b6) [#5345](https://github.com/firebase/firebase-js-sdk/pull/5345) (fixes [#5015](https://github.com/firebase/firebase-js-sdk/issues/5015)) - Release modularized SDKs
397
-
398
- ## 0.16.8
399
-
400
- ### Patch Changes
401
-
402
- - [`56a6a9d4a`](https://github.com/firebase/firebase-js-sdk/commit/56a6a9d4af2766154584a0f66d3c4d8024d74ba5) [#5071](https://github.com/firebase/firebase-js-sdk/pull/5071) (fixes [#4932](https://github.com/firebase/firebase-js-sdk/issues/4932)) - Auto initialize `auth-internal` after `auth` has been initialized.
403
-
404
- ## 0.16.7
405
-
406
- ### Patch Changes
407
-
408
- - [`c81cf82fa`](https://github.com/firebase/firebase-js-sdk/commit/c81cf82fac14cbfaebc0e440235c3fb38af22d38) [#4966](https://github.com/firebase/firebase-js-sdk/pull/4966) (fixes [#4879](https://github.com/firebase/firebase-js-sdk/issues/4879)) - Fix bug where `linkWithPopup`, `linkWithRedirect`, `reauthenticateWithPopup`, and `reauthenticateWithRedirect` weren't correctly picking up the emulator configuration.
409
-
410
- ## 0.16.6
411
-
412
- ### Patch Changes
413
-
414
- - [`de68cdca2`](https://github.com/firebase/firebase-js-sdk/commit/de68cdca21c6ba5a890807857b529c2187e4adba) [#4868](https://github.com/firebase/firebase-js-sdk/pull/4868) (fixes [#4867](https://github.com/firebase/firebase-js-sdk/issues/4867)) - Ensure emulator warning text is accessible.
415
-
416
- ## 0.16.5
417
-
418
- ### Patch Changes
419
-
420
- - Updated dependencies [[`3f370215a`](https://github.com/firebase/firebase-js-sdk/commit/3f370215aa571db6b41b92a7d8a9aaad2ea0ecd0)]:
421
- - @firebase/auth-types@0.10.3
422
-
423
- ## 0.16.4
424
-
425
- ### Patch Changes
426
-
427
- - Updated dependencies [[`4ab5a9ce5`](https://github.com/firebase/firebase-js-sdk/commit/4ab5a9ce5b6256a95d745f6dc40a5e5ddd2301f2)]:
428
- - @firebase/auth-types@0.10.2
429
-
430
- ## 0.16.3
431
-
432
- ### Patch Changes
433
-
434
- - [`73bb561e1`](https://github.com/firebase/firebase-js-sdk/commit/73bb561e18ea42286a54d28648636bf1ac7fcfe0) [#4357](https://github.com/firebase/firebase-js-sdk/pull/4357) (fixes [#4174](https://github.com/firebase/firebase-js-sdk/issues/4174)) - Decode UTF-8 in ID Token. Fix #4174.
435
-
436
- ## 0.16.2
437
-
438
- ### Patch Changes
439
-
440
- - [`92a7f4345`](https://github.com/firebase/firebase-js-sdk/commit/92a7f434536051bedd00bc1be7e774174378aa7d) [#4280](https://github.com/firebase/firebase-js-sdk/pull/4280) - Add the `useEmulator()` function and `emulatorConfig` to the `firebase` package externs
441
-
442
- ## 0.16.1
443
-
444
- ### Patch Changes
445
-
446
- - [`9fd3f5233`](https://github.com/firebase/firebase-js-sdk/commit/9fd3f5233077b45c5101789c427db51835484ce0) [#4210](https://github.com/firebase/firebase-js-sdk/pull/4210) - Update auth token logic to rely on device clock time instead of server time. This fixes an issue seen when a device's clock is skewed by a lot: https://github.com/firebase/firebase-js-sdk/issues/3222
447
-
448
- ## 0.16.0
449
-
450
- ### Minor Changes
451
-
452
- - [`c9f379cf7`](https://github.com/firebase/firebase-js-sdk/commit/c9f379cf7ef2c5938512a45b63008bbb135926ed) [#4112](https://github.com/firebase/firebase-js-sdk/pull/4112) - Add option to hide banner in auth when using the emulator
453
-
454
- ## 0.15.3
455
-
456
- ### Patch Changes
457
-
458
- - [`11563b227`](https://github.com/firebase/firebase-js-sdk/commit/11563b227f30c9282c45e4a8128d5679954dcfd1) [#4146](https://github.com/firebase/firebase-js-sdk/pull/4146) - Fix issue with IndexedDB retry logic causing uncaught errors
459
-
460
- ## 0.15.2
461
-
462
- ### Patch Changes
463
-
464
- - [`c2b215c19`](https://github.com/firebase/firebase-js-sdk/commit/c2b215c1950b2f75abb6a8dd58544a79bda968f6) [#4059](https://github.com/firebase/firebase-js-sdk/pull/4059) (fixes [#1926](https://github.com/firebase/firebase-js-sdk/issues/1926)) - Retry IndexedDB errors a fixed number of times to handle connection issues in mobile webkit.
465
-
466
- ## 0.15.1
467
-
468
- ### Patch Changes
469
-
470
- - [`a5768b0aa`](https://github.com/firebase/firebase-js-sdk/commit/a5768b0aa7d7ce732279931aa436e988c9f36487) [#3932](https://github.com/firebase/firebase-js-sdk/pull/3932) - Point browser field to esm build. Now you need to use default import instead of namespace import to import firebase.
471
-
472
- Before this change
473
-
474
- ```
475
- import * as firebase from 'firebase/app';
476
- ```
477
-
478
- After this change
479
-
480
- ```
481
- import firebase from 'firebase/app';
482
- ```
483
-
484
- ## 0.15.0
485
-
486
- ### Minor Changes
487
-
488
- - [`eeb1dfa4f`](https://github.com/firebase/firebase-js-sdk/commit/eeb1dfa4f629dc5cf328e4b4a224369c0670c312) [#3810](https://github.com/firebase/firebase-js-sdk/pull/3810) - Add ability to configure the SDK to communicate with the Firebase Auth emulator.
489
-
490
- ### Patch Changes
491
-
492
- - [`916770f3c`](https://github.com/firebase/firebase-js-sdk/commit/916770f3cfc0ca9eae92fbf33558b7175cf2cf78) [#3934](https://github.com/firebase/firebase-js-sdk/pull/3934) - Add a validation for useEmulator URL.
493
-
494
- ## 0.14.9
495
-
496
- ### Patch Changes
497
-
498
- - [`b6145466`](https://github.com/firebase/firebase-js-sdk/commit/b6145466835e22495b94d2bcfc45813e81496085) [#3401](https://github.com/firebase/firebase-js-sdk/pull/3401) Thanks [@Feiyang1](https://github.com/Feiyang1)! - Add browser field in package.json
499
-
500
- ## 0.14.8
501
-
502
- ### Patch Changes
503
-
504
- - [`a754645e`](https://github.com/firebase/firebase-js-sdk/commit/a754645ec2be1b8c205f25f510196eee298b0d6e) [#3297](https://github.com/firebase/firebase-js-sdk/pull/3297) Thanks [@renovate](https://github.com/apps/renovate)! - Update dependency typescript to v3.9.5