@azure/msal-common 5.0.1 → 5.1.2

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 (132) hide show
  1. package/dist/_virtual/_tslib.js +1 -1
  2. package/dist/account/AuthToken.js +1 -1
  3. package/dist/account/CcsCredential.js +1 -1
  4. package/dist/account/ClientInfo.js +1 -1
  5. package/dist/authority/Authority.d.ts.map +1 -1
  6. package/dist/authority/Authority.js +8 -2
  7. package/dist/authority/Authority.js.map +1 -1
  8. package/dist/authority/AuthorityFactory.js +1 -1
  9. package/dist/authority/AuthorityType.js +1 -1
  10. package/dist/authority/CloudInstanceDiscoveryResponse.js +1 -1
  11. package/dist/authority/OpenIdConfigResponse.d.ts +1 -1
  12. package/dist/authority/OpenIdConfigResponse.d.ts.map +1 -1
  13. package/dist/authority/OpenIdConfigResponse.js +1 -2
  14. package/dist/authority/OpenIdConfigResponse.js.map +1 -1
  15. package/dist/authority/ProtocolMode.js +1 -1
  16. package/dist/authority/RegionDiscovery.js +1 -1
  17. package/dist/cache/CacheManager.d.ts +14 -3
  18. package/dist/cache/CacheManager.d.ts.map +1 -1
  19. package/dist/cache/CacheManager.js +47 -17
  20. package/dist/cache/CacheManager.js.map +1 -1
  21. package/dist/cache/entities/AccessTokenEntity.d.ts +1 -1
  22. package/dist/cache/entities/AccessTokenEntity.d.ts.map +1 -1
  23. package/dist/cache/entities/AccessTokenEntity.js +15 -9
  24. package/dist/cache/entities/AccessTokenEntity.js.map +1 -1
  25. package/dist/cache/entities/AccountEntity.js +1 -1
  26. package/dist/cache/entities/AppMetadataEntity.js +1 -1
  27. package/dist/cache/entities/AuthorityMetadataEntity.d.ts +1 -1
  28. package/dist/cache/entities/AuthorityMetadataEntity.d.ts.map +1 -1
  29. package/dist/cache/entities/AuthorityMetadataEntity.js +1 -2
  30. package/dist/cache/entities/AuthorityMetadataEntity.js.map +1 -1
  31. package/dist/cache/entities/CacheRecord.js +1 -1
  32. package/dist/cache/entities/CredentialEntity.d.ts +1 -0
  33. package/dist/cache/entities/CredentialEntity.d.ts.map +1 -1
  34. package/dist/cache/entities/CredentialEntity.js +3 -3
  35. package/dist/cache/entities/CredentialEntity.js.map +1 -1
  36. package/dist/cache/entities/IdTokenEntity.js +1 -1
  37. package/dist/cache/entities/RefreshTokenEntity.js +1 -1
  38. package/dist/cache/entities/ServerTelemetryEntity.js +1 -1
  39. package/dist/cache/entities/ThrottlingEntity.js +1 -1
  40. package/dist/cache/interface/ICacheManager.d.ts +5 -1
  41. package/dist/cache/interface/ICacheManager.d.ts.map +1 -1
  42. package/dist/cache/persistence/TokenCacheContext.js +1 -1
  43. package/dist/cache/utils/CacheTypes.d.ts +1 -0
  44. package/dist/cache/utils/CacheTypes.d.ts.map +1 -1
  45. package/dist/client/AuthorizationCodeClient.d.ts +1 -0
  46. package/dist/client/AuthorizationCodeClient.d.ts.map +1 -1
  47. package/dist/client/AuthorizationCodeClient.js +43 -15
  48. package/dist/client/AuthorizationCodeClient.js.map +1 -1
  49. package/dist/client/BaseClient.js +1 -1
  50. package/dist/client/ClientCredentialClient.d.ts.map +1 -1
  51. package/dist/client/ClientCredentialClient.js +4 -2
  52. package/dist/client/ClientCredentialClient.js.map +1 -1
  53. package/dist/client/DeviceCodeClient.d.ts.map +1 -1
  54. package/dist/client/DeviceCodeClient.js +7 -3
  55. package/dist/client/DeviceCodeClient.js.map +1 -1
  56. package/dist/client/OnBehalfOfClient.d.ts.map +1 -1
  57. package/dist/client/OnBehalfOfClient.js +4 -2
  58. package/dist/client/OnBehalfOfClient.js.map +1 -1
  59. package/dist/client/RefreshTokenClient.d.ts.map +1 -1
  60. package/dist/client/RefreshTokenClient.js +20 -8
  61. package/dist/client/RefreshTokenClient.js.map +1 -1
  62. package/dist/client/SilentFlowClient.d.ts.map +1 -1
  63. package/dist/client/SilentFlowClient.js +17 -12
  64. package/dist/client/SilentFlowClient.js.map +1 -1
  65. package/dist/client/UsernamePasswordClient.d.ts.map +1 -1
  66. package/dist/client/UsernamePasswordClient.js +4 -2
  67. package/dist/client/UsernamePasswordClient.js.map +1 -1
  68. package/dist/config/ClientConfiguration.js +1 -1
  69. package/dist/crypto/ICrypto.d.ts +1 -1
  70. package/dist/crypto/ICrypto.d.ts.map +1 -1
  71. package/dist/crypto/ICrypto.js +1 -1
  72. package/dist/crypto/ICrypto.js.map +1 -1
  73. package/dist/crypto/PopTokenGenerator.js +4 -4
  74. package/dist/crypto/PopTokenGenerator.js.map +1 -1
  75. package/dist/error/AuthError.js +1 -1
  76. package/dist/error/ClientAuthError.d.ts +8 -0
  77. package/dist/error/ClientAuthError.d.ts.map +1 -1
  78. package/dist/error/ClientAuthError.js +11 -1
  79. package/dist/error/ClientAuthError.js.map +1 -1
  80. package/dist/error/ClientConfigurationError.d.ts +29 -0
  81. package/dist/error/ClientConfigurationError.d.ts.map +1 -1
  82. package/dist/error/ClientConfigurationError.js +43 -3
  83. package/dist/error/ClientConfigurationError.js.map +1 -1
  84. package/dist/error/InteractionRequiredAuthError.js +1 -1
  85. package/dist/error/ServerError.js +1 -1
  86. package/dist/index.cjs.js +294 -75
  87. package/dist/index.cjs.js.map +1 -1
  88. package/dist/index.d.ts +1 -0
  89. package/dist/index.d.ts.map +1 -1
  90. package/dist/index.js +2 -1
  91. package/dist/index.js.map +1 -1
  92. package/dist/logger/Logger.js +1 -1
  93. package/dist/network/INetworkModule.js +1 -1
  94. package/dist/network/NetworkManager.js +1 -1
  95. package/dist/network/RequestThumbprint.d.ts +2 -0
  96. package/dist/network/RequestThumbprint.d.ts.map +1 -1
  97. package/dist/network/ThrottlingUtils.d.ts.map +1 -1
  98. package/dist/network/ThrottlingUtils.js +4 -2
  99. package/dist/network/ThrottlingUtils.js.map +1 -1
  100. package/dist/packageMetadata.d.ts +1 -1
  101. package/dist/packageMetadata.js +2 -2
  102. package/dist/packageMetadata.js.map +1 -1
  103. package/dist/request/AuthenticationHeaderParser.d.ts +20 -0
  104. package/dist/request/AuthenticationHeaderParser.d.ts.map +1 -0
  105. package/dist/request/AuthenticationHeaderParser.js +64 -0
  106. package/dist/request/AuthenticationHeaderParser.js.map +1 -0
  107. package/dist/request/BaseAuthRequest.d.ts +7 -1
  108. package/dist/request/BaseAuthRequest.d.ts.map +1 -1
  109. package/dist/request/RequestParameterBuilder.d.ts +4 -0
  110. package/dist/request/RequestParameterBuilder.d.ts.map +1 -1
  111. package/dist/request/RequestParameterBuilder.js +10 -1
  112. package/dist/request/RequestParameterBuilder.js.map +1 -1
  113. package/dist/request/RequestValidator.js +1 -1
  114. package/dist/request/ScopeSet.js +1 -1
  115. package/dist/response/AuthenticationResult.d.ts +1 -1
  116. package/dist/response/ResponseHandler.d.ts.map +1 -1
  117. package/dist/response/ResponseHandler.js +4 -2
  118. package/dist/response/ResponseHandler.js.map +1 -1
  119. package/dist/response/ServerAuthorizationTokenResponse.d.ts +2 -0
  120. package/dist/response/ServerAuthorizationTokenResponse.d.ts.map +1 -1
  121. package/dist/telemetry/server/ServerTelemetryManager.js +1 -1
  122. package/dist/url/UrlString.js +1 -1
  123. package/dist/utils/Constants.d.ts +5 -2
  124. package/dist/utils/Constants.d.ts.map +1 -1
  125. package/dist/utils/Constants.js +5 -2
  126. package/dist/utils/Constants.js.map +1 -1
  127. package/dist/utils/ProtocolUtils.js +1 -1
  128. package/dist/utils/StringUtils.js +1 -1
  129. package/dist/utils/TimeUtils.js +1 -1
  130. package/package.json +1 -1
  131. package/CHANGELOG.json +0 -1187
  132. package/CHANGELOG.md +0 -452
package/CHANGELOG.md DELETED
@@ -1,452 +0,0 @@
1
- # Change Log - @azure/msal-common
2
-
3
- This log was last generated on Mon, 04 Oct 2021 23:12:35 GMT and should not be manually modified.
4
-
5
- <!-- Start content -->
6
-
7
- ## 5.0.1
8
-
9
- Mon, 04 Oct 2021 23:12:35 GMT
10
-
11
- ### Patches
12
-
13
- - Export library version #4124 (thomas.norling@microsoft.com)
14
- - Consistently export error types and messages for errors thrown by MSAL #4117 (jagore@microsoft.com)
15
- - Make no_tokens_found error an InteractionRequiredAuthError #4089 (thomas.norling@microsoft.com)
16
-
17
- ## 5.0.0
18
-
19
- Tue, 07 Sep 2021 23:22:24 GMT
20
-
21
- ### Major changes
22
-
23
- - Add pop params to request thumbprint #3973 (hemoral@microsoft.com)
24
- - Remove token binding key from key store when refreshing pop token #3500 (hemoral@microsoft.com)
25
-
26
- ### Minor changes
27
-
28
- - Adds state param to logout url #3909 (bmahal@microsoft.com)
29
- - Add SignedHttpRequest class #3058 (janutter@microsoft.com)
30
-
31
- ### Patches
32
-
33
- - Add correlationId property to AuthError #3930 (thomas.norling@microsoft.com)
34
- - Fix logger constructor #3899 (hemoral@microsoft.com)
35
- - Add correlationId to AuthenticationResult type #3947 (thomas.norling@microsoft.com)
36
- - Fix accesstoken_with_authscheme implementation #3910 (hemoral@microsoft.com)
37
- - Add external token server response type #3895 (joarroyo@microsoft.com)
38
- - Fixes unescaped backslash and inefficient regex patterns #3993 (thomas.norling@microsoft.com)
39
-
40
- ## 4.5.1
41
-
42
- Mon, 02 Aug 2021 23:19:21 GMT
43
-
44
- ### Patches
45
-
46
- - Fix double encoding state #3903 (bmahal@microsoft.com)
47
-
48
- ## 4.5.0
49
-
50
- Thu, 22 Jul 2021 22:50:22 GMT
51
-
52
- ### Minor changes
53
-
54
- - Adding ROPC for confidential client apps (#3838) (sameera.gajjarapu@microsoft.com)
55
- - feat: add regional authority telemetry #3662 (samuelkamau@microsoft.com)
56
- - Add support for prompt=create #3773 (joarroyo@microsoft.com)
57
-
58
- ### Patches
59
-
60
- - Add constant for active account cache key #3755 (thomas.norling@microsoft.com)
61
- - Fix double query string for logout endpoint #3814 (thomas.norling@microsoft.com)
62
-
63
- ## 4.4.0
64
-
65
- Mon, 28 Jun 2021 23:39:48 GMT
66
-
67
- ### Minor changes
68
-
69
- - Add CCS parameters to headers or form_data #3636 (prkanher@microsoft.com)
70
- - Add correlationId to log messages #3601 (joarroyo@microsoft.com)
71
-
72
- ### Patches
73
-
74
- - Export ServerAuthorizationTokenResponse type #3657 (thomas.norling@microsoft.com)
75
- - Discard tokens cached after current time #3786 (thomas.norling@microsoft.com)
76
- - Remove input params from Empty Scopes error constructors #3654 (thomas.norling@microsoft.com)
77
- - feat: modify the access token filter #3375 (samuelkamau@microsoft.com)
78
- - fix: fix device code polling bug (samuelkamau@microsoft.com)
79
-
80
- ## 4.3.0
81
-
82
- Wed, 12 May 2021 18:35:03 GMT
83
-
84
- ### Minor changes
85
-
86
- - add support for regional authorities (samuelkamau@microsoft.com)
87
-
88
- ### Patches
89
-
90
- - Fix double query string when authority endpoints contain query strings #3620 (thomas.norling@microsoft.com)
91
- - change msal-browser/msal-common to preserveModules to enable treeshaking #3300 (oo.thomas96@gmail.com)
92
- - Revert expiresOn type to make it nullable #3557 (hemoral@microsoft.com)
93
- - Add logLevel Trace to Logger #3589 (joarroyo@microsoft.com)
94
- - Throw untrustedAuthority error if discovery endpoint returns error in response body #3572 (thomas.norling@microsoft.com)
95
- - Add claims comparison to accountInfoIsEqual function #3527 (thomas.norling@microsoft.com)
96
- - Add check for empty object string in claims request parameter #3579 (prkanher@microsoft.com)
97
-
98
- ## 4.2.1
99
-
100
- Thu, 22 Apr 2021 23:26:08 GMT
101
-
102
- ### Patches
103
-
104
- - Fix typing for expiresOn field (#2994) (prkanher@microsoft.com)
105
- - Move /token headers to POST body to avoid OPTIONS request (#3094) (thomas.norling@microsoft.com)
106
- - Change "ts" type from string to number in SignedHttpRequest #3474 (prkanher@microsoft.com)
107
- - Add .browserslistrc #3471 (thomas.norling@microsoft.com)
108
-
109
- ## 4.2.0
110
-
111
- Wed, 14 Apr 2021 18:39:53 GMT
112
-
113
- ### Minor changes
114
-
115
- - Adding the refresh_in feature for msal.js #3005 (prkanher@microsoft.com)
116
- - Add support for AccessToken_With_AuthScheme credential type #3426 (hectormgdev@gmail.com)
117
-
118
- ### Patches
119
-
120
- - Make SHR parameters optional #3320 (hemoral@microsoft.com)
121
-
122
- ## 4.1.1
123
-
124
- Wed, 31 Mar 2021 22:25:57 GMT
125
-
126
- ### Patches
127
-
128
- - Update StringUtils.matchPattern to account for queries in string #3307 (joarroyo@microsoft.com)
129
- - Adds tokenQueryParameters request param #3309 (thomas.norling@microsoft.com)
130
- - Ignore account hints when prompt=select_account #3315 (thomas.norling@microsoft.com)
131
-
132
- ## 4.1.0
133
-
134
- Wed, 24 Mar 2021 22:55:46 GMT
135
-
136
- ### Minor changes
137
-
138
- - Add client claims support for SHRs (#3089) (hemoral@microsoft.com)
139
-
140
- ### Patches
141
-
142
- - Properly handle expiration timestamps when returned as strings (janutter@microsoft.com)
143
- - Add null as possible type for account on EndSessionRequest #3044 (thomas.norling@microsoft.com)
144
-
145
- ## 4.0.3
146
-
147
- Mon, 15 Mar 2021 23:45:17 GMT
148
-
149
- ### Patches
150
-
151
- - Use sid from account when available #3147 (prkanher@microsoft.com)
152
- - Add network error for failed requests (#3146) (thomas.norling@microsoft.com)
153
-
154
- ## 4.0.2
155
-
156
- Wed, 03 Mar 2021 21:47:05 GMT
157
-
158
- ### Patches
159
-
160
- - Fix OIDC Scopes Caching Issue (#3065) (prkanher@microsoft.com)
161
-
162
- ## 4.0.1
163
-
164
- Thu, 18 Feb 2021 00:34:32 GMT
165
-
166
- ### Patches
167
-
168
- - Clarify Device Code Timeout units (#3031) (hemoral@microsoft.com)
169
-
170
- ## 4.0.0
171
-
172
- Tue, 09 Feb 2021 01:48:22 GMT
173
-
174
- ### Major changes
175
-
176
- - Add API Extractor for msal-node (sameera.gajjarapu@microsoft.com)
177
-
178
- ### Patches
179
-
180
- - Fix version.json import errors (#2993) (thomas.norling@microsoft.com)
181
- - Setting postLogoutRedirectUri as null will disable post logout redirect (janutter@microsoft.com)
182
- - Ignore OIDC scopes during cache lookup or replacement (#2969) (prkanher@microsoft.com)
183
-
184
- ## 3.1.0
185
-
186
- Tue, 02 Feb 2021 01:56:47 GMT
187
-
188
- ### Minor changes
189
-
190
- - Add wrapper SKU and version to current telemetry header (#2845) (thomas.norling@microsoft.com)
191
-
192
- ### Patches
193
-
194
- - Fix token timestamp calculation (prkanher@microsoft.com)
195
- - Fix B2C policy switching (#2949) (thomas.norling@microsoft.com)
196
- - Get package version from version.json (#2915) (thomas.norling@microsoft.com)
197
-
198
- ## 3.0.0
199
-
200
- Thu, 21 Jan 2021 21:48:01 GMT
201
-
202
- ### Major changes
203
-
204
- - Authority metadata caching (#2758) (thomas.norling@microsoft.com)
205
-
206
- ## 2.1.0
207
-
208
- Tue, 12 Jan 2021 00:51:26 GMT
209
-
210
- ### Minor changes
211
-
212
- - Add interface stubs (#2792) (thomas.norling@microsoft.com)
213
-
214
- ### Patches
215
-
216
- - Adding account info equality check function (#2728) (prkanher@microsoft.com)
217
- - Adding device code timeout to the device code request(#2656) (samuel.kamau@microsoft.com)
218
-
219
- ## 2.0.0
220
-
221
- Mon, 07 Dec 2020 22:19:03 GMT
222
-
223
- ### Major changes
224
-
225
- - Enable StrictNullChecks (#2602) (thomas.norling@microsoft.com)
226
- - Rename request types and change required fields (#2512) (thomas.norling@microsoft.com)
227
-
228
- ### Minor changes
229
-
230
- - Add clone to Logger (#2670) (joarroyo@microsoft.com)
231
- - Enable the instance_aware flow (#1804) (prkanher@microsoft.com)
232
- - Support id_token_hint on logout request (#2587) (thomas.norling@microsoft.com)
233
-
234
- ### Patches
235
-
236
- - Fix login loop with empty query string (#2707) (thomas.norling@microsoft.com)
237
- - Expose idTokenClaims on AccountInfo (#2554) (janutter@microsoft.com)
238
- - Add matchPattern string util for wildcard matching for urls (#2678) (janutter@microsoft.com)
239
- - fix: added missing async (AzureAD/microsoft-authentication-library-for-js#2652) (patrick@ruhkopf.me)
240
- - Log messages contain package name and version (#2589) (thomas.norling@microsoft.com)
241
-
242
- ## 1.7.2
243
-
244
- Wed, 11 Nov 2020 23:33:20 GMT
245
-
246
- ### Patches
247
-
248
- - Add getAbsolutePath helper function to UrlString class (#2560) (thomas.norling@microsoft.com)
249
-
250
- ## 1.7.1
251
-
252
- Tue, 10 Nov 2020 01:48:44 GMT
253
-
254
- ### Patches
255
-
256
- - Enhance lookup for IdTokens/AppMetadata (#2530) (sameera.gajjarapu@microsoft.com)
257
- - Add LocalAccountId for ADFS usecases (#2573) (sameera.gajjarapu@microsoft.com)
258
-
259
- ## 1.7.0
260
-
261
- Sat, 07 Nov 2020 01:50:14 GMT
262
-
263
- ### Minor changes
264
-
265
- - Implement Password Grant Flow (#2204) (sameera.gajjarapu@microsoft.com)
266
- - Fixing a bug and adding `localAccountId` in AccountInfo interface (#2516) (sameera.gajjarapu@microsoft.com)
267
-
268
- ### Patches
269
-
270
- - Mandate localAccount in AccountInfo (sameera.gajjarapu@microsoft.com)
271
- - Filtered lookup of IdTokens, AppMetadata; Error handling in Node Storage (#2530) (sameera.gajjarapu@microsoft.com)
272
-
273
- ## 1.6.3
274
-
275
- Mon, 26 Oct 2020 21:00:29 GMT
276
-
277
- ### Patches
278
-
279
- - Fix ServerTelemetry maxErrorToSend bug (#2491) (thomas.norling@microsoft.com)
280
- - Add missing default headers to device code (sameera.gajjarapu@microsoft.com)
281
- - msal-browser and msal-node cache Interfaces to msal-common updated (#2415) (sameera.gajjarapu@microsoft.com)
282
-
283
- ## 1.6.2
284
-
285
- Tue, 20 Oct 2020 23:47:28 GMT
286
-
287
- ### Patches
288
-
289
- - Adds support for any OIDC-compliant authority (#2389). (jamckenn@microsoft.com)
290
-
291
- ## 1.6.1
292
-
293
- Thu, 15 Oct 2020 00:49:18 GMT
294
-
295
- ### Patches
296
-
297
- - Removing unused errors in msal-common and fixing possible build errors in @azure/msal-common@1.6.0 (#2432) (sameera.gajjarapu@microsoft.com)
298
-
299
- ## 1.6.0
300
-
301
- Wed, 14 Oct 2020 23:45:07 GMT
302
-
303
- ### Minor changes
304
-
305
- - Add support for persistence cache plugin (#2348) (sameera.gajjarapu@microsoft.com)
306
-
307
- ### Patches
308
-
309
- - Add Telemetry header size limit (#2223) (thomas.norling@microsoft.com)
310
-
311
- ## 1.5.0
312
-
313
- Fri, 02 Oct 2020 17:42:35 GMT
314
-
315
- ### Minor changes
316
-
317
- - Implementation of Access Token Proof-of-Possession Flow (#2151, #2153, #2154, #2209, #2289) (prkanher@microsoft.com)
318
-
319
- ## 1.4.0
320
-
321
- Wed, 23 Sep 2020 21:13:48 GMT
322
-
323
- ### Minor changes
324
-
325
- - FOCI - Family of Client IDs feature (#2201) (sameera.gajjarapu@microsoft.com)
326
-
327
- ### Patches
328
-
329
- - Remove null in function return types to be compatible with ICacheManager.ts (#2335) (sameera.gajjarapu@microsoft.com)
330
- - Scopes stored case sensitive, compared case insensitive (#2302) (sameera.gajjarapu@microsoft.com)
331
-
332
- ## 1.3.0
333
-
334
- Thu, 17 Sep 2020 23:16:22 GMT
335
-
336
- ### Minor changes
337
-
338
- - Add support for On-behalf-of flow (#2157) (sagonzal@microsoft.com)
339
- - ValidCacheType adds ServerTelemetryEntity (sameera.gajjarapu@microsoft.com)
340
- - Added client-side throttling to enhance server stability (#1907) (jamckenn@microsoft.com)
341
-
342
- ### Patches
343
-
344
- - Add name field to AccountInfo (#2288) (jamckenn@microsoft.com)
345
- - Realm should fallback to an empty string for non AAD scenarios (sameera.gajjarapu@microsoft.com)
346
- - Add default scopes in all requests and ignore in cache lookups (#2267) (thomas.norling@microsoft.com)
347
- - Move refreshToken API to RefreshTokenClient (#2264) (thomas.norling@microsoft.com)
348
- - Track Suberrors in Telemetry (#1921) (thomas.norling@microsoft.com)
349
- - Separate cache lookup from token refresh (#2189) (thomas.norling@microsoft.com)
350
-
351
- ## 1.2.0
352
-
353
- Tue, 25 Aug 2020 00:40:45 GMT
354
-
355
- ### Minor changes
356
-
357
- - Client Capabilities Support (#2169) (thomas.norling@microsoft.com)
358
- - Add support for acquiring tokens with client credentials grant (sagonzal@microsoft.com)
359
-
360
- ### Patches
361
-
362
- - ignore offline_access in scopes lookup (sameera.gajjarapu@microsoft.com)
363
- - Adds checks for cache entities (sameera.gajjarapu@microsoft.com)
364
- - Add claims request to /token calls (#2138) (thomas.norling@microsoft.com)
365
- - Fix Telemetry cacheHit Bug (#2170) (thomas.norling@microsoft.com)
366
- - Get username from emails claim in B2C scenarios (#2114) (thomas.norling@microsoft.com)
367
- - Update POST header to type Record (#2128) (thomas.norling@microsoft.com)
368
-
369
- ## 1.1.1
370
-
371
- Thu, 13 Aug 2020 02:20:48 GMT
372
-
373
- ### Patches
374
-
375
- - knownAuthorities enhancements (#2106) (thomas.l.norling@gmail.com)
376
- - Update typing of IdTokenClaims (#2105) (hemoral@microsoft.com)
377
- - Fix hash parsing issue from #2118 and back button cache clearing (#2129) (prkanher@microsoft.com)
378
-
379
- # 1.1.0
380
- ## Breaking Changes
381
- - None
382
-
383
- ## Features and Fixes
384
- - Decode state from URI Encoding before comparing (#2049)
385
- - getAllAccounts() returns empty array instead of `null` (#2059)
386
- - Updated the `UrlString.canonicalizeUri()` API to be static (#2078)
387
- - Add sid to `AuthorizationUrlRequest` and as part of request parameters sent to server (#2030)
388
- - Enable server telemetry headers to be formatted and sent in every request (#1917)
389
- - Enable platform level state information to be sent and read through the request state (#2045)
390
- - Add the confidential client flow (#2023)
391
-
392
- # 1.0.0
393
- ## Breaking Changes
394
- - None
395
-
396
- ## Features and Fixes
397
- - Fixed an issue where scopes were being made lower case before being sent to the service (#1961)
398
- - Fix an issue where token values were replaced with undefined if not sent by server (#1946)
399
- - Fix an issue where cache lookup for accounts was not working correctly (#1919)
400
- - Removed TelemetryOptions from msal-common since they were unused (#1983)
401
- - Add a response handler for the device code flow (#1947)
402
-
403
- # 1.0.0-beta.4
404
- ## Breaking Changes
405
- - None
406
-
407
- ## Features and Fixes
408
- - Fix an issue where state may be encoded twice on the server-side (#1852)
409
- - Fix an issue where extraScopesToConsent was not appending scopes correctly (#1854)
410
- - Fix an issue where the expiration was not being calculated correctly (#1860)
411
- - Add correlationId to all requests (#1868)
412
-
413
- # 1.0.0-beta.3
414
- ## Breaking Changes
415
- - `Request` update in msal-common (#1682, #1771)
416
- - AccountInfo interface (#1789)
417
- - Removal of SPA Client (#1793)
418
- - Unified Cache support (#1444, #1471, #1519, #1520, #1522, #1609, #1622, #1624, #1655, #1680, #1762)
419
-
420
- ## Features and Fixes
421
- - Initialization of B2cTrustedHostList (#1646)
422
- - SilentFlow support (#1711)
423
- - Utilize `Scopeset` across all libraries (#1770)
424
- - `state` support in msal-common (#1790)
425
- - EndSessionRequest (#1802)
426
-
427
- # 1.0.0-beta.2
428
- - Fixed an issue where types were not being exported from the correct location (#1613)
429
- - Fixed an issue where system configuration values were being overwritten with `undefined` (#1631)
430
- - Added support for sub-error codes from the eSTS service (#1533)
431
-
432
- # 1.0.0-beta.1
433
- - Fixed an issue where types are not exported correctly (#1517)
434
- - Logger class is now exported (#1486)
435
- - Added knownAuthorities to support B2C authorities (#1416)
436
- - Refactored authority classes for B2C use cases (#1424)
437
- - Synced all classes and objects to work for both @azure/msal-browser and @azure/msal-node (#1552)
438
- - Merged configuration for node and browser classes (#1575)
439
- - Fixed issue with caching for multiple resources (#1553)
440
- - Adding support for node classes
441
- - Refresh token client (#1496)
442
- - Device code client (#1550, #1434)
443
- - Authorization Code Client (#1434)
444
-
445
- # 1.0.0-beta.0
446
- - Fully functioning project completed
447
- - Build and test pipelines in place
448
- - Added bug fixes from unit testing
449
- - Added docs and samples
450
-
451
- # 0.0.1
452
- - Created library with initial files for repo structure, build and package dependencies