@azure/msal-browser 2.18.0 → 2.22.0
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.
- package/CHANGELOG.json +1758 -1548
- package/CHANGELOG.md +553 -491
- package/LICENSE +21 -21
- package/README.md +5 -3
- package/dist/_virtual/_tslib.js +1 -1
- package/dist/app/ClientApplication.d.ts +30 -1
- package/dist/app/ClientApplication.d.ts.map +1 -1
- package/dist/app/ClientApplication.js +101 -5
- package/dist/app/ClientApplication.js.map +1 -1
- package/dist/app/IPublicClientApplication.d.ts +4 -0
- package/dist/app/IPublicClientApplication.d.ts.map +1 -1
- package/dist/app/IPublicClientApplication.js +7 -1
- package/dist/app/IPublicClientApplication.js.map +1 -1
- package/dist/app/PublicClientApplication.d.ts +2 -2
- package/dist/app/PublicClientApplication.d.ts.map +1 -1
- package/dist/app/PublicClientApplication.js +31 -24
- package/dist/app/PublicClientApplication.js.map +1 -1
- package/dist/cache/AsyncMemoryStorage.d.ts +46 -0
- package/dist/cache/AsyncMemoryStorage.d.ts.map +1 -0
- package/dist/cache/AsyncMemoryStorage.js +195 -0
- package/dist/cache/AsyncMemoryStorage.js.map +1 -0
- package/dist/cache/BrowserCacheManager.d.ts +19 -13
- package/dist/cache/BrowserCacheManager.d.ts.map +1 -1
- package/dist/cache/BrowserCacheManager.js +31 -7
- package/dist/cache/BrowserCacheManager.js.map +1 -1
- package/dist/cache/BrowserStorage.d.ts +1 -1
- package/dist/cache/BrowserStorage.d.ts.map +1 -1
- package/dist/cache/BrowserStorage.js +1 -1
- package/dist/cache/BrowserStorage.js.map +1 -1
- package/dist/cache/DatabaseStorage.d.ts +25 -6
- package/dist/cache/DatabaseStorage.d.ts.map +1 -1
- package/dist/cache/DatabaseStorage.js +127 -81
- package/dist/cache/DatabaseStorage.js.map +1 -1
- package/dist/cache/IAsyncMemoryStorage.d.ts +28 -0
- package/dist/cache/IAsyncMemoryStorage.d.ts.map +1 -0
- package/dist/cache/IWindowStorage.d.ts +3 -3
- package/dist/cache/IWindowStorage.d.ts.map +1 -1
- package/dist/cache/MemoryStorage.d.ts +3 -3
- package/dist/cache/MemoryStorage.d.ts.map +1 -1
- package/dist/cache/MemoryStorage.js +1 -1
- package/dist/cache/MemoryStorage.js.map +1 -1
- package/dist/cache/TokenCache.d.ts.map +1 -1
- package/dist/cache/TokenCache.js +4 -3
- package/dist/cache/TokenCache.js.map +1 -1
- package/dist/config/Configuration.d.ts +10 -9
- package/dist/config/Configuration.d.ts.map +1 -1
- package/dist/config/Configuration.js +7 -3
- package/dist/config/Configuration.js.map +1 -1
- package/dist/crypto/BrowserCrypto.d.ts +3 -1
- package/dist/crypto/BrowserCrypto.d.ts.map +1 -1
- package/dist/crypto/BrowserCrypto.js +3 -2
- package/dist/crypto/BrowserCrypto.js.map +1 -1
- package/dist/crypto/CryptoOps.d.ts +16 -5
- package/dist/crypto/CryptoOps.d.ts.map +1 -1
- package/dist/crypto/CryptoOps.js +58 -17
- package/dist/crypto/CryptoOps.js.map +1 -1
- package/dist/crypto/GuidGenerator.js +1 -1
- package/dist/crypto/GuidGenerator.js.map +1 -1
- package/dist/crypto/PkceGenerator.js +1 -1
- package/dist/crypto/PkceGenerator.js.map +1 -1
- package/dist/crypto/SignedHttpRequest.d.ts +6 -2
- package/dist/crypto/SignedHttpRequest.d.ts.map +1 -1
- package/dist/crypto/SignedHttpRequest.js +11 -5
- package/dist/crypto/SignedHttpRequest.js.map +1 -1
- package/dist/encode/Base64Decode.js +1 -1
- package/dist/encode/Base64Decode.js.map +1 -1
- package/dist/encode/Base64Encode.js +1 -1
- package/dist/encode/Base64Encode.js.map +1 -1
- package/dist/error/BrowserAuthError.d.ts +16 -0
- package/dist/error/BrowserAuthError.d.ts.map +1 -1
- package/dist/error/BrowserAuthError.js +22 -2
- package/dist/error/BrowserAuthError.js.map +1 -1
- package/dist/error/BrowserConfigurationAuthError.js +1 -1
- package/dist/error/BrowserConfigurationAuthError.js.map +1 -1
- package/dist/event/EventHandler.js +1 -1
- package/dist/event/EventHandler.js.map +1 -1
- package/dist/event/EventMessage.js +1 -1
- package/dist/event/EventMessage.js.map +1 -1
- package/dist/event/EventType.d.ts +3 -0
- package/dist/event/EventType.d.ts.map +1 -1
- package/dist/event/EventType.js +4 -1
- package/dist/event/EventType.js.map +1 -1
- package/dist/index.cjs.js +1473 -511
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +16 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +14 -3
- package/dist/index.js.map +1 -1
- package/dist/interaction_client/BaseInteractionClient.d.ts +2 -2
- package/dist/interaction_client/BaseInteractionClient.d.ts.map +1 -1
- package/dist/interaction_client/BaseInteractionClient.js +40 -17
- package/dist/interaction_client/BaseInteractionClient.js.map +1 -1
- package/dist/interaction_client/HybridSpaAuthorizationCodeClient.d.ts +5 -0
- package/dist/interaction_client/HybridSpaAuthorizationCodeClient.d.ts.map +1 -0
- package/dist/interaction_client/HybridSpaAuthorizationCodeClient.js +21 -0
- package/dist/interaction_client/HybridSpaAuthorizationCodeClient.js.map +1 -0
- package/dist/interaction_client/PopupClient.d.ts +4 -3
- package/dist/interaction_client/PopupClient.d.ts.map +1 -1
- package/dist/interaction_client/PopupClient.js +23 -21
- package/dist/interaction_client/PopupClient.js.map +1 -1
- package/dist/interaction_client/RedirectClient.d.ts +3 -3
- package/dist/interaction_client/RedirectClient.d.ts.map +1 -1
- package/dist/interaction_client/RedirectClient.js +22 -20
- package/dist/interaction_client/RedirectClient.js.map +1 -1
- package/dist/interaction_client/SilentAuthCodeClient.d.ts +22 -0
- package/dist/interaction_client/SilentAuthCodeClient.d.ts.map +1 -0
- package/dist/interaction_client/SilentAuthCodeClient.js +83 -0
- package/dist/interaction_client/SilentAuthCodeClient.js.map +1 -0
- package/dist/interaction_client/SilentCacheClient.d.ts +3 -3
- package/dist/interaction_client/SilentCacheClient.d.ts.map +1 -1
- package/dist/interaction_client/SilentCacheClient.js +15 -5
- package/dist/interaction_client/SilentCacheClient.js.map +1 -1
- package/dist/interaction_client/SilentIframeClient.d.ts +3 -3
- package/dist/interaction_client/SilentIframeClient.d.ts.map +1 -1
- package/dist/interaction_client/SilentIframeClient.js +16 -13
- package/dist/interaction_client/SilentIframeClient.js.map +1 -1
- package/dist/interaction_client/SilentRefreshClient.d.ts +2 -2
- package/dist/interaction_client/SilentRefreshClient.d.ts.map +1 -1
- package/dist/interaction_client/SilentRefreshClient.js +13 -10
- package/dist/interaction_client/SilentRefreshClient.js.map +1 -1
- package/dist/interaction_client/StandardInteractionClient.d.ts +11 -11
- package/dist/interaction_client/StandardInteractionClient.d.ts.map +1 -1
- package/dist/interaction_client/StandardInteractionClient.js +90 -57
- package/dist/interaction_client/StandardInteractionClient.js.map +1 -1
- package/dist/interaction_handler/InteractionHandler.d.ts +11 -2
- package/dist/interaction_handler/InteractionHandler.d.ts.map +1 -1
- package/dist/interaction_handler/InteractionHandler.js +36 -10
- package/dist/interaction_handler/InteractionHandler.js.map +1 -1
- package/dist/interaction_handler/PopupHandler.d.ts.map +1 -1
- package/dist/interaction_handler/PopupHandler.js +1 -3
- package/dist/interaction_handler/PopupHandler.js.map +1 -1
- package/dist/interaction_handler/RedirectHandler.d.ts +1 -1
- package/dist/interaction_handler/RedirectHandler.d.ts.map +1 -1
- package/dist/interaction_handler/RedirectHandler.js +2 -3
- package/dist/interaction_handler/RedirectHandler.js.map +1 -1
- package/dist/interaction_handler/SilentHandler.js +1 -1
- package/dist/interaction_handler/SilentHandler.js.map +1 -1
- package/dist/navigation/NavigationClient.js +1 -1
- package/dist/navigation/NavigationClient.js.map +1 -1
- package/dist/network/FetchClient.js +1 -1
- package/dist/network/FetchClient.js.map +1 -1
- package/dist/network/XhrClient.js +1 -1
- package/dist/network/XhrClient.js.map +1 -1
- package/dist/packageMetadata.d.ts +1 -1
- package/dist/packageMetadata.js +2 -2
- package/dist/packageMetadata.js.map +1 -1
- package/dist/request/AuthorizationCodeRequest.d.ts +8 -0
- package/dist/request/AuthorizationCodeRequest.d.ts.map +1 -0
- package/dist/request/AuthorizationUrlRequest.d.ts +1 -1
- package/dist/request/AuthorizationUrlRequest.d.ts.map +1 -1
- package/dist/request/EndSessionPopupRequest.d.ts +1 -0
- package/dist/request/EndSessionPopupRequest.d.ts.map +1 -1
- package/dist/request/EndSessionRequest.d.ts +1 -0
- package/dist/request/EndSessionRequest.d.ts.map +1 -1
- package/dist/request/PopupRequest.d.ts +1 -1
- package/dist/request/PopupRequest.d.ts.map +1 -1
- package/dist/request/RedirectRequest.d.ts +1 -1
- package/dist/request/RedirectRequest.d.ts.map +1 -1
- package/dist/request/SilentRequest.d.ts +1 -1
- package/dist/request/SilentRequest.d.ts.map +1 -1
- package/dist/request/SsoSilentRequest.d.ts +1 -1
- package/dist/request/SsoSilentRequest.d.ts.map +1 -1
- package/dist/utils/BrowserConstants.d.ts +6 -1
- package/dist/utils/BrowserConstants.d.ts.map +1 -1
- package/dist/utils/BrowserConstants.js +9 -3
- package/dist/utils/BrowserConstants.js.map +1 -1
- package/dist/utils/BrowserProtocolUtils.js +1 -1
- package/dist/utils/BrowserProtocolUtils.js.map +1 -1
- package/dist/utils/BrowserStringUtils.js +1 -1
- package/dist/utils/BrowserStringUtils.js.map +1 -1
- package/dist/utils/BrowserUtils.js +1 -1
- package/dist/utils/BrowserUtils.js.map +1 -1
- package/dist/utils/MathUtils.js +1 -1
- package/dist/utils/MathUtils.js.map +1 -1
- package/dist/utils/PopupUtils.d.ts +1 -2
- package/dist/utils/PopupUtils.d.ts.map +1 -1
- package/dist/utils/PopupUtils.js +3 -3
- package/dist/utils/PopupUtils.js.map +1 -1
- package/lib/msal-browser.js +1473 -511
- package/lib/msal-browser.js.map +1 -1
- package/lib/msal-browser.min.js +36 -31
- package/package.json +96 -94
package/CHANGELOG.json
CHANGED
|
@@ -1,1548 +1,1758 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@azure/msal-browser",
|
|
3
|
-
"entries": [
|
|
4
|
-
{
|
|
5
|
-
"date": "
|
|
6
|
-
"tag": "@azure/msal-browser_v2.
|
|
7
|
-
"version": "2.
|
|
8
|
-
"comments": {
|
|
9
|
-
"
|
|
10
|
-
{
|
|
11
|
-
"author": "
|
|
12
|
-
"package": "@azure/msal-browser",
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
},
|
|
16
|
-
{
|
|
17
|
-
"author": "
|
|
18
|
-
"package": "@azure/msal-browser",
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
},
|
|
22
|
-
{
|
|
23
|
-
"author": "
|
|
24
|
-
"package": "@azure/msal-browser",
|
|
25
|
-
"comment": "
|
|
26
|
-
"commit": "
|
|
27
|
-
}
|
|
28
|
-
],
|
|
29
|
-
"none": [
|
|
30
|
-
{
|
|
31
|
-
"author": "thomas.norling@microsoft.com",
|
|
32
|
-
"package": "@azure/msal-browser",
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
},
|
|
36
|
-
{
|
|
37
|
-
"author": "
|
|
38
|
-
"package": "@azure/msal-browser",
|
|
39
|
-
"commit": "
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"commit": "
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"commit": "
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"commit": "
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"commit": "
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
"author": "
|
|
85
|
-
"
|
|
86
|
-
"
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
"author": "
|
|
91
|
-
"
|
|
92
|
-
"
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
"
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
"
|
|
116
|
-
"
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
"
|
|
122
|
-
"
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
{
|
|
127
|
-
"
|
|
128
|
-
"
|
|
129
|
-
"commit": "
|
|
130
|
-
"
|
|
131
|
-
},
|
|
132
|
-
{
|
|
133
|
-
"
|
|
134
|
-
"
|
|
135
|
-
"
|
|
136
|
-
"
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
"
|
|
142
|
-
"package": "@azure/msal-browser"
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
"
|
|
158
|
-
"
|
|
159
|
-
"
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
"comment": "
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
"
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
"comment": "
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
"
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
"
|
|
189
|
-
"package": "@azure/msal-browser"
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
"
|
|
195
|
-
"package": "@azure/msal-browser"
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
"
|
|
201
|
-
"package": "@azure/msal-browser"
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
{
|
|
206
|
-
"
|
|
207
|
-
"
|
|
208
|
-
"commit": "
|
|
209
|
-
"
|
|
210
|
-
}
|
|
211
|
-
]
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
"author": "
|
|
222
|
-
"
|
|
223
|
-
"
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
"comment": "
|
|
236
|
-
"
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
{
|
|
241
|
-
"
|
|
242
|
-
"
|
|
243
|
-
"
|
|
244
|
-
"
|
|
245
|
-
},
|
|
246
|
-
{
|
|
247
|
-
"
|
|
248
|
-
"
|
|
249
|
-
"commit": "
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
"
|
|
254
|
-
"
|
|
255
|
-
"commit": "
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
"
|
|
262
|
-
"
|
|
263
|
-
"commit": "
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
"
|
|
268
|
-
"
|
|
269
|
-
"commit": "
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
"
|
|
274
|
-
"
|
|
275
|
-
"commit": "
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
{
|
|
287
|
-
"comment": "Add
|
|
288
|
-
"author": "
|
|
289
|
-
"commit": "
|
|
290
|
-
"package": "@azure/msal-browser"
|
|
291
|
-
}
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
"
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
"
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
"
|
|
320
|
-
"
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
"
|
|
326
|
-
"
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
"
|
|
332
|
-
"
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
"
|
|
338
|
-
"
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
"
|
|
344
|
-
"
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
"
|
|
350
|
-
"
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
{
|
|
355
|
-
"comment": "
|
|
356
|
-
"author": "
|
|
357
|
-
"commit": "
|
|
358
|
-
"package": "@azure/msal-browser"
|
|
359
|
-
},
|
|
360
|
-
{
|
|
361
|
-
"comment": "Fix
|
|
362
|
-
"author": "hemoral@microsoft.com",
|
|
363
|
-
"commit": "
|
|
364
|
-
"package": "@azure/msal-browser"
|
|
365
|
-
},
|
|
366
|
-
{
|
|
367
|
-
"comment": "
|
|
368
|
-
"author": "thomas.norling@microsoft.com",
|
|
369
|
-
"commit": "
|
|
370
|
-
"package": "@azure/msal-browser"
|
|
371
|
-
}
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
"
|
|
376
|
-
"
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
"
|
|
382
|
-
"
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
"
|
|
391
|
-
"
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
"
|
|
397
|
-
"
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
"
|
|
403
|
-
"
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
"
|
|
409
|
-
"
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
"
|
|
427
|
-
"
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
"
|
|
448
|
-
"
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
"
|
|
454
|
-
"
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
"
|
|
460
|
-
"
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
"
|
|
466
|
-
"
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
"
|
|
474
|
-
"
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
"
|
|
484
|
-
"
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
"
|
|
498
|
-
"
|
|
499
|
-
"
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
"
|
|
513
|
-
"
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
"
|
|
522
|
-
"
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
"
|
|
528
|
-
"
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
"
|
|
534
|
-
"
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
"
|
|
540
|
-
"
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
"
|
|
546
|
-
"
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
{
|
|
551
|
-
"comment": "
|
|
552
|
-
"author": "
|
|
553
|
-
"commit": "
|
|
554
|
-
"package": "@azure/msal-browser"
|
|
555
|
-
},
|
|
556
|
-
{
|
|
557
|
-
"comment": "
|
|
558
|
-
"author": "
|
|
559
|
-
"commit": "
|
|
560
|
-
"package": "@azure/msal-browser"
|
|
561
|
-
}
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
"
|
|
566
|
-
"
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
{
|
|
571
|
-
"comment": "
|
|
572
|
-
"author": "
|
|
573
|
-
"commit": "
|
|
574
|
-
"package": "@azure/msal-browser"
|
|
575
|
-
}
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
"
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
"
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
"
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
"
|
|
607
|
-
"
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
"
|
|
623
|
-
"
|
|
624
|
-
"
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
"
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
"
|
|
637
|
-
"
|
|
638
|
-
"
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
"
|
|
658
|
-
"
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
"
|
|
664
|
-
"
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
"
|
|
677
|
-
"
|
|
678
|
-
"
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
"
|
|
690
|
-
{
|
|
691
|
-
"comment": "
|
|
692
|
-
"author": "
|
|
693
|
-
"commit": "
|
|
694
|
-
"package": "@azure/msal-browser"
|
|
695
|
-
}
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
"
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
"
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
"
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
"
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
"
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
"
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
"
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
"
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
"
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
"
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
"
|
|
763
|
-
"
|
|
764
|
-
"
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
"
|
|
769
|
-
"
|
|
770
|
-
"
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
"
|
|
775
|
-
"
|
|
776
|
-
"
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
"
|
|
782
|
-
"
|
|
783
|
-
"
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
"
|
|
797
|
-
"
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
{
|
|
802
|
-
"comment": "
|
|
803
|
-
"author": "
|
|
804
|
-
"commit": "
|
|
805
|
-
"package": "@azure/msal-browser"
|
|
806
|
-
}
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
"
|
|
811
|
-
"
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
"
|
|
830
|
-
{
|
|
831
|
-
"comment": "
|
|
832
|
-
"author": "
|
|
833
|
-
"commit": "
|
|
834
|
-
"package": "@azure/msal-browser"
|
|
835
|
-
},
|
|
836
|
-
{
|
|
837
|
-
"comment": "
|
|
838
|
-
"author": "
|
|
839
|
-
"commit": "
|
|
840
|
-
"package": "@azure/msal-browser"
|
|
841
|
-
}
|
|
842
|
-
],
|
|
843
|
-
"
|
|
844
|
-
{
|
|
845
|
-
"comment": "
|
|
846
|
-
"author": "
|
|
847
|
-
"commit": "
|
|
848
|
-
"package": "@azure/msal-browser"
|
|
849
|
-
}
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
"
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
"
|
|
867
|
-
"
|
|
868
|
-
"
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
"
|
|
873
|
-
"
|
|
874
|
-
"
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
"
|
|
885
|
-
{
|
|
886
|
-
"comment": "
|
|
887
|
-
"author": "
|
|
888
|
-
"commit": "
|
|
889
|
-
"package": "@azure/msal-browser"
|
|
890
|
-
}
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
"
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
{
|
|
913
|
-
"comment": "
|
|
914
|
-
"author": "
|
|
915
|
-
"commit": "
|
|
916
|
-
"package": "@azure/msal-browser"
|
|
917
|
-
},
|
|
918
|
-
{
|
|
919
|
-
"comment": "
|
|
920
|
-
"author": "
|
|
921
|
-
"commit": "
|
|
922
|
-
"package": "@azure/msal-browser"
|
|
923
|
-
},
|
|
924
|
-
{
|
|
925
|
-
"comment": "
|
|
926
|
-
"author": "
|
|
927
|
-
"commit": "
|
|
928
|
-
"package": "@azure/msal-browser"
|
|
929
|
-
}
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
"
|
|
934
|
-
"
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
"
|
|
940
|
-
"
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
"
|
|
956
|
-
"
|
|
957
|
-
"
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
"
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
"
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
"
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
"
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
"
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
"
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
"
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
"
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
"
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
"
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
"
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
"
|
|
1000
|
-
"
|
|
1001
|
-
"
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
"
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
"
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
"
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
"
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
"
|
|
1077
|
-
"
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
{
|
|
1082
|
-
"comment": "
|
|
1083
|
-
"author": "
|
|
1084
|
-
"commit": "
|
|
1085
|
-
"package": "@azure/msal-browser"
|
|
1086
|
-
}
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
"
|
|
1098
|
-
"
|
|
1099
|
-
"
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
"
|
|
1130
|
-
"
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
"
|
|
1136
|
-
"
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
"
|
|
1142
|
-
"
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
{
|
|
1147
|
-
"comment": "
|
|
1148
|
-
"author": "
|
|
1149
|
-
"commit": "
|
|
1150
|
-
"package": "@azure/msal-browser"
|
|
1151
|
-
},
|
|
1152
|
-
{
|
|
1153
|
-
"comment": "
|
|
1154
|
-
"author": "
|
|
1155
|
-
"commit": "
|
|
1156
|
-
"package": "@azure/msal-browser"
|
|
1157
|
-
}
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
"
|
|
1162
|
-
"
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
"
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
"
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
"
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
"
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
"
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
"
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
"
|
|
1198
|
-
"
|
|
1199
|
-
"
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
"
|
|
1212
|
-
"
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
{
|
|
1217
|
-
"comment": "
|
|
1218
|
-
"author": "
|
|
1219
|
-
"commit": "
|
|
1220
|
-
"package": "@azure/msal-browser"
|
|
1221
|
-
}
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
"
|
|
1233
|
-
"
|
|
1234
|
-
"
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
"
|
|
1239
|
-
"
|
|
1240
|
-
"
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
"
|
|
1247
|
-
"
|
|
1248
|
-
"
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
"
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
"
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
{
|
|
1269
|
-
"comment": "
|
|
1270
|
-
"author": "
|
|
1271
|
-
"commit": "
|
|
1272
|
-
"package": "@azure/msal-browser"
|
|
1273
|
-
}
|
|
1274
|
-
]
|
|
1275
|
-
}
|
|
1276
|
-
},
|
|
1277
|
-
{
|
|
1278
|
-
"date": "
|
|
1279
|
-
"tag": "@azure/msal-browser_v2.
|
|
1280
|
-
"version": "2.
|
|
1281
|
-
"comments": {
|
|
1282
|
-
"
|
|
1283
|
-
{
|
|
1284
|
-
"comment": "
|
|
1285
|
-
"author": "
|
|
1286
|
-
"commit": "
|
|
1287
|
-
"package": "@azure/msal-browser"
|
|
1288
|
-
}
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
"
|
|
1293
|
-
"
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
"
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
|
-
"
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
"
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
"
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
"
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
"
|
|
1372
|
-
"
|
|
1373
|
-
|
|
1374
|
-
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
|
|
1387
|
-
"
|
|
1388
|
-
"
|
|
1389
|
-
"
|
|
1390
|
-
|
|
1391
|
-
|
|
1392
|
-
|
|
1393
|
-
"
|
|
1394
|
-
"
|
|
1395
|
-
"
|
|
1396
|
-
|
|
1397
|
-
|
|
1398
|
-
|
|
1399
|
-
"
|
|
1400
|
-
"
|
|
1401
|
-
"
|
|
1402
|
-
|
|
1403
|
-
|
|
1404
|
-
|
|
1405
|
-
|
|
1406
|
-
"
|
|
1407
|
-
"
|
|
1408
|
-
"
|
|
1409
|
-
|
|
1410
|
-
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
"
|
|
1422
|
-
"
|
|
1423
|
-
|
|
1424
|
-
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
-
"
|
|
1428
|
-
"
|
|
1429
|
-
|
|
1430
|
-
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
"
|
|
1434
|
-
"
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
"
|
|
1444
|
-
"
|
|
1445
|
-
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
|
-
|
|
1449
|
-
"
|
|
1450
|
-
"
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
{
|
|
1455
|
-
"comment": "
|
|
1456
|
-
"author": "
|
|
1457
|
-
"commit": "
|
|
1458
|
-
"package": "@azure/msal-browser"
|
|
1459
|
-
},
|
|
1460
|
-
{
|
|
1461
|
-
"comment": "
|
|
1462
|
-
"author": "
|
|
1463
|
-
"commit": "
|
|
1464
|
-
"package": "@azure/msal-browser"
|
|
1465
|
-
}
|
|
1466
|
-
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
"
|
|
1470
|
-
"
|
|
1471
|
-
|
|
1472
|
-
|
|
1473
|
-
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
|
|
1482
|
-
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
|
|
1491
|
-
|
|
1492
|
-
|
|
1493
|
-
|
|
1494
|
-
|
|
1495
|
-
|
|
1496
|
-
"
|
|
1497
|
-
"
|
|
1498
|
-
|
|
1499
|
-
|
|
1500
|
-
|
|
1501
|
-
|
|
1502
|
-
"
|
|
1503
|
-
"
|
|
1504
|
-
|
|
1505
|
-
|
|
1506
|
-
|
|
1507
|
-
|
|
1508
|
-
|
|
1509
|
-
|
|
1510
|
-
|
|
1511
|
-
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
|
|
1516
|
-
|
|
1517
|
-
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
|
|
1521
|
-
|
|
1522
|
-
|
|
1523
|
-
|
|
1524
|
-
|
|
1525
|
-
|
|
1526
|
-
"
|
|
1527
|
-
"
|
|
1528
|
-
"
|
|
1529
|
-
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
"
|
|
1542
|
-
"
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@azure/msal-browser",
|
|
3
|
+
"entries": [
|
|
4
|
+
{
|
|
5
|
+
"date": "Tue, 08 Feb 2022 00:41:06 GMT",
|
|
6
|
+
"tag": "@azure/msal-browser_v2.22.0",
|
|
7
|
+
"version": "2.22.0",
|
|
8
|
+
"comments": {
|
|
9
|
+
"minor": [
|
|
10
|
+
{
|
|
11
|
+
"author": "hemoral@microsoft.com",
|
|
12
|
+
"package": "@azure/msal-browser",
|
|
13
|
+
"commit": "4c7418a6a76f29706ff0e5f7efd890d22fa4af0b",
|
|
14
|
+
"comment": "Add support for logout_hint #4450"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"author": "sameera.gajjarapu@microsoft.com",
|
|
18
|
+
"package": "@azure/msal-browser",
|
|
19
|
+
"commit": "d576b7d35f8f24e53946c72bc78c0401a8d2dc86",
|
|
20
|
+
"comment": "Add AzureCloudInstance to JS libraries"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"author": "beachball",
|
|
24
|
+
"package": "@azure/msal-browser",
|
|
25
|
+
"comment": "Bump @azure/msal-common to v6.1.0",
|
|
26
|
+
"commit": "639253acbc825e1f19ca712bc72dce8da149e3e8"
|
|
27
|
+
}
|
|
28
|
+
],
|
|
29
|
+
"none": [
|
|
30
|
+
{
|
|
31
|
+
"author": "thomas.norling@microsoft.com",
|
|
32
|
+
"package": "@azure/msal-browser",
|
|
33
|
+
"commit": "19f76b1d9cd2b0f1a4a7e4765c8ee9e7e17f3d59",
|
|
34
|
+
"comment": "Test changes #4383"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"author": "sgo_2001@hotmail.com",
|
|
38
|
+
"package": "@azure/msal-browser",
|
|
39
|
+
"commit": "27c04e7adc601b0855714540c2d55ab3dc8e5256",
|
|
40
|
+
"comment": "Fix typo in logger message #4385"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"author": "kamausamuel11@gmail.com",
|
|
44
|
+
"package": "@azure/msal-browser",
|
|
45
|
+
"commit": "5767008f8ef9f3b05aeba421cc4aa6c6bb616e86",
|
|
46
|
+
"comment": "fix: update package-lock files"
|
|
47
|
+
}
|
|
48
|
+
],
|
|
49
|
+
"patch": [
|
|
50
|
+
{
|
|
51
|
+
"author": "thomas.norling@microsoft.com",
|
|
52
|
+
"package": "@azure/msal-browser",
|
|
53
|
+
"commit": "67ce881faa2a6931320541d99de2efe4e9ba6a3f",
|
|
54
|
+
"comment": "Expose OIDC_DEFAULT_SCOPES constant #4280"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"author": "thomas.norling@microsoft.com",
|
|
58
|
+
"package": "@azure/msal-browser",
|
|
59
|
+
"commit": "729c4a180f8c4f8ba97856af9ad3d626ffad6416",
|
|
60
|
+
"comment": "Improve reliability of interaction_in_progress #4460"
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"author": "thomas.norling@microsoft.com",
|
|
64
|
+
"package": "@azure/msal-browser",
|
|
65
|
+
"commit": "6808be4858c97d4f7d31eda2b6d2a8403f8c6e0f",
|
|
66
|
+
"comment": "Clear hash only if it contains known response properties #4415"
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"author": "prkanher@microsoft.com",
|
|
70
|
+
"package": "@azure/msal-browser",
|
|
71
|
+
"commit": "597d8d95e15f1bfc7e62a6346733661cc2454d12",
|
|
72
|
+
"comment": "Adding exports and other changes for extensibility #4459"
|
|
73
|
+
}
|
|
74
|
+
]
|
|
75
|
+
}
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"date": "Tue, 04 Jan 2022 00:20:29 GMT",
|
|
79
|
+
"tag": "@azure/msal-browser_v2.21.0",
|
|
80
|
+
"version": "2.21.0",
|
|
81
|
+
"comments": {
|
|
82
|
+
"minor": [
|
|
83
|
+
{
|
|
84
|
+
"author": "hemoral@microsoft.com",
|
|
85
|
+
"package": "@azure/msal-browser",
|
|
86
|
+
"commit": "60e2cfc0e9daa3c24e994617b4ac42aef6880b74",
|
|
87
|
+
"comment": "Add support for requested claims in silent token acquisition #4296"
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"author": "beachball",
|
|
91
|
+
"package": "@azure/msal-browser",
|
|
92
|
+
"comment": "Bump @azure/msal-common to v6.0.0",
|
|
93
|
+
"commit": "bd9b1af91c278926ab2e6943cf90817a7ac4957b"
|
|
94
|
+
}
|
|
95
|
+
],
|
|
96
|
+
"patch": [
|
|
97
|
+
{
|
|
98
|
+
"author": "janutter@microsoft.com",
|
|
99
|
+
"package": "@azure/msal-browser",
|
|
100
|
+
"commit": "e3c66105f3bf617dc4fd06905e04b37e865c303c",
|
|
101
|
+
"comment": "Clear interaction status even if there is no ongoing request #4314"
|
|
102
|
+
}
|
|
103
|
+
]
|
|
104
|
+
}
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"date": "Tue, 07 Dec 2021 00:17:01 GMT",
|
|
108
|
+
"tag": "@azure/msal-browser_v2.20.0",
|
|
109
|
+
"version": "2.20.0",
|
|
110
|
+
"comments": {
|
|
111
|
+
"none": [
|
|
112
|
+
{
|
|
113
|
+
"author": "kamausamuel11@gmail.com",
|
|
114
|
+
"package": "@azure/msal-browser",
|
|
115
|
+
"commit": "8259de7520d2940d290332cd03c5b8babeb0966e",
|
|
116
|
+
"comment": "deps: run an audit fix on msal-browser"
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
"author": "thomas.norling@microsoft.com",
|
|
120
|
+
"package": "@azure/msal-browser",
|
|
121
|
+
"commit": "02dbd9172368bfc69e4a47f01a3ada0b96345c81",
|
|
122
|
+
"comment": "Package.json updates"
|
|
123
|
+
}
|
|
124
|
+
],
|
|
125
|
+
"minor": [
|
|
126
|
+
{
|
|
127
|
+
"author": "janutter@microsoft.com",
|
|
128
|
+
"package": "@azure/msal-browser",
|
|
129
|
+
"commit": "4741b6c3a6a3dd58feefde93c095c05e1eca5e03",
|
|
130
|
+
"comment": "Add acquireTokenByCode API for hybrid spa flow #3978"
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"author": "beachball",
|
|
134
|
+
"package": "@azure/msal-browser",
|
|
135
|
+
"comment": "Bump @azure/msal-common to v5.2.0",
|
|
136
|
+
"commit": "d7c209f7aa3ae4380a77a31ff1319fbf7201ae45"
|
|
137
|
+
}
|
|
138
|
+
],
|
|
139
|
+
"patch": [
|
|
140
|
+
{
|
|
141
|
+
"author": "hemoral@microsoft.com",
|
|
142
|
+
"package": "@azure/msal-browser",
|
|
143
|
+
"commit": "e983e25ba899bb437a135ec50ad6c77023c72e5b",
|
|
144
|
+
"comment": "Fix circular dependencies in AuthenticationHeaderParser and AsyncMemoryStorage #4235"
|
|
145
|
+
}
|
|
146
|
+
]
|
|
147
|
+
}
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"date": "Mon, 01 Nov 2021 23:53:21 GMT",
|
|
151
|
+
"tag": "@azure/msal-browser_v2.19.0",
|
|
152
|
+
"version": "2.19.0",
|
|
153
|
+
"comments": {
|
|
154
|
+
"minor": [
|
|
155
|
+
{
|
|
156
|
+
"author": "hemoral@microsoft.com",
|
|
157
|
+
"package": "@azure/msal-browser",
|
|
158
|
+
"commit": "51669adf5e2fe446bf94925fe77762b64e9513fc",
|
|
159
|
+
"comment": "Add support for in-memory storage of token binding keys #4183"
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
"author": "hemoral@microsoft.com",
|
|
163
|
+
"package": "@azure/msal-browser",
|
|
164
|
+
"commit": "a81fcef3d82523e03828d91bb0ee8d2ab2cc20d8",
|
|
165
|
+
"comment": "Add support for ephemeral SSH certificate acquisition #4178"
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"author": "hemoral@microsoft.com",
|
|
169
|
+
"package": "@azure/msal-browser",
|
|
170
|
+
"commit": "51669adf5e2fe446bf94925fe77762b64e9513fc",
|
|
171
|
+
"comment": "Add support for in-memory storage of token binding keys #4183"
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"author": "hemoral@microsoft.com",
|
|
175
|
+
"package": "@azure/msal-browser",
|
|
176
|
+
"commit": "5b350a5f97b43e1a5a87153bb4a13632f7c615b9",
|
|
177
|
+
"comment": "Add support for SHR nonce #3999"
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
"author": "beachball",
|
|
181
|
+
"package": "@azure/msal-browser",
|
|
182
|
+
"comment": "Bump @azure/msal-common to v5.1.0",
|
|
183
|
+
"commit": "6ac29855822ce1ba9531a68bcaa6f37443ef16c0"
|
|
184
|
+
}
|
|
185
|
+
],
|
|
186
|
+
"patch": [
|
|
187
|
+
{
|
|
188
|
+
"author": "hemoral@microsoft.com",
|
|
189
|
+
"package": "@azure/msal-browser",
|
|
190
|
+
"commit": "9099d711c0e52e13937bcfda7ddf34bac48f9ecd",
|
|
191
|
+
"comment": "Add support for different key types in IndexedDB storage #4052"
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
"author": "janutter@microsoft.com",
|
|
195
|
+
"package": "@azure/msal-browser",
|
|
196
|
+
"commit": "b1f5bd520f8abb972725c1a863f37b7fb5ebd756",
|
|
197
|
+
"comment": "Ensure correlation is passed to all interaction clients in acquireTokenSilent #4186"
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
"author": "Michael.Currie@rjwgroup.com",
|
|
201
|
+
"package": "@azure/msal-browser",
|
|
202
|
+
"commit": "3f3f5a8880a7e46445d71b8920a6ccc70d453f30",
|
|
203
|
+
"comment": "Fix typo in noTokenRequestCacheError (#4136)"
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
"author": "thomas.norling@microsoft.com",
|
|
207
|
+
"package": "@azure/msal-browser",
|
|
208
|
+
"commit": "dc80d3177eef0b3c7499cbf3ebb2fea8e2c408c9",
|
|
209
|
+
"comment": "Fix redirect processing when allowRedirectInIframe: true #4142"
|
|
210
|
+
}
|
|
211
|
+
]
|
|
212
|
+
}
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
"date": "Mon, 04 Oct 2021 23:12:35 GMT",
|
|
216
|
+
"tag": "@azure/msal-browser_v2.18.0",
|
|
217
|
+
"version": "2.18.0",
|
|
218
|
+
"comments": {
|
|
219
|
+
"patch": [
|
|
220
|
+
{
|
|
221
|
+
"author": "jagore@microsoft.com",
|
|
222
|
+
"package": "@azure/msal-browser",
|
|
223
|
+
"comment": "Consistently export error types and messages for errors thrown by MSAL #4117",
|
|
224
|
+
"commit": "d03c16f09026bac36048241da4635e73d32a6eed"
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
"author": "thomas.norling@microsoft.com",
|
|
228
|
+
"package": "@azure/msal-browser",
|
|
229
|
+
"comment": "Move helper functions up to BaseInteractionClient #4049",
|
|
230
|
+
"commit": "d03c16f09026bac36048241da4635e73d32a6eed"
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
"author": "thomas.norling@microsoft.com",
|
|
234
|
+
"package": "@azure/msal-browser",
|
|
235
|
+
"comment": "Export library version #4124",
|
|
236
|
+
"commit": "d03c16f09026bac36048241da4635e73d32a6eed"
|
|
237
|
+
}
|
|
238
|
+
],
|
|
239
|
+
"none": [
|
|
240
|
+
{
|
|
241
|
+
"author": "thomas.norling@microsoft.com",
|
|
242
|
+
"package": "@azure/msal-browser",
|
|
243
|
+
"comment": "Disallow major bumps",
|
|
244
|
+
"commit": "d03c16f09026bac36048241da4635e73d32a6eed"
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
"author": "thomas.norling@microsoft.com",
|
|
248
|
+
"package": "@azure/msal-browser",
|
|
249
|
+
"commit": "d03c16f09026bac36048241da4635e73d32a6eed"
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
"author": "kamausamuel11@gmail.com",
|
|
253
|
+
"package": "@azure/msal-browser",
|
|
254
|
+
"comment": "fix: add forked bindings library to node-extensions",
|
|
255
|
+
"commit": "d03c16f09026bac36048241da4635e73d32a6eed"
|
|
256
|
+
}
|
|
257
|
+
],
|
|
258
|
+
"minor": [
|
|
259
|
+
{
|
|
260
|
+
"author": "thomas.norling@microsoft.com",
|
|
261
|
+
"package": "@azure/msal-browser",
|
|
262
|
+
"comment": "Emit event when user logs in or out from a different tab or window #3981",
|
|
263
|
+
"commit": "d03c16f09026bac36048241da4635e73d32a6eed"
|
|
264
|
+
},
|
|
265
|
+
{
|
|
266
|
+
"author": "prkanher@microsoft.com",
|
|
267
|
+
"package": "@azure/msal-browser",
|
|
268
|
+
"comment": "Remove requirement of user hint on ssoSilent API #4123",
|
|
269
|
+
"commit": "d03c16f09026bac36048241da4635e73d32a6eed"
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
"author": "beachball",
|
|
273
|
+
"package": "@azure/msal-browser",
|
|
274
|
+
"comment": "Bump @azure/msal-common to v5.0.1",
|
|
275
|
+
"commit": "d03c16f09026bac36048241da4635e73d32a6eed"
|
|
276
|
+
}
|
|
277
|
+
]
|
|
278
|
+
}
|
|
279
|
+
},
|
|
280
|
+
{
|
|
281
|
+
"date": "Tue, 07 Sep 2021 23:22:24 GMT",
|
|
282
|
+
"tag": "@azure/msal-browser_v2.17.0",
|
|
283
|
+
"version": "2.17.0",
|
|
284
|
+
"comments": {
|
|
285
|
+
"minor": [
|
|
286
|
+
{
|
|
287
|
+
"comment": "Add configuration for popup window size and placement #3946",
|
|
288
|
+
"author": "joarroyo@microsoft.com",
|
|
289
|
+
"commit": "aefe791ee660bbb6bf7df789b5cfb77b46887e05",
|
|
290
|
+
"package": "@azure/msal-browser"
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
"comment": "Add API to sideload tokens to msal-browser #3895",
|
|
294
|
+
"author": "joarroyo@microsoft.com",
|
|
295
|
+
"commit": "cef2629499cf997f9167fe3ecc7628cf32513dfc",
|
|
296
|
+
"package": "@azure/msal-browser"
|
|
297
|
+
},
|
|
298
|
+
{
|
|
299
|
+
"comment": "Add SignedHttpRequest class #3058",
|
|
300
|
+
"author": "janutter@microsoft.com",
|
|
301
|
+
"commit": "19fe65ef6562deeae0778db5030f44fa6e24aa5d",
|
|
302
|
+
"package": "@azure/msal-browser"
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
"comment": "Refactor acquireToken logic into InteractionClients #3871",
|
|
306
|
+
"author": "thomas.norling@microsoft.com",
|
|
307
|
+
"commit": "8ac64949f23346cdbdac6f8a2f6c8293d016ee32",
|
|
308
|
+
"package": "@azure/msal-browser"
|
|
309
|
+
}
|
|
310
|
+
],
|
|
311
|
+
"patch": [
|
|
312
|
+
{
|
|
313
|
+
"comment": "Clear cache before constructing logout url #3982",
|
|
314
|
+
"author": "thomas.norling@microsoft.com",
|
|
315
|
+
"commit": "9e4d8a161cd8eac51ea7ded5dadc2b6ff028f5d7",
|
|
316
|
+
"package": "@azure/msal-browser"
|
|
317
|
+
},
|
|
318
|
+
{
|
|
319
|
+
"comment": "Add pop params to request thumbprint #3973",
|
|
320
|
+
"author": "hemoral@microsoft.com",
|
|
321
|
+
"commit": "b3b18bc86a5949905be265c9b892e288551ac894",
|
|
322
|
+
"package": "@azure/msal-browser"
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
"comment": "Update ADAL to MSAL SSO logic to use preferred_username instead of upn by default #3945",
|
|
326
|
+
"author": "ellymakuba@microsoft.com",
|
|
327
|
+
"commit": "0eb77a9e467f0074bb9ee5bf52d7c2dfa6f7efad",
|
|
328
|
+
"package": "@azure/msal-browser"
|
|
329
|
+
},
|
|
330
|
+
{
|
|
331
|
+
"comment": "Populate msal v2 loginHint from cached msal v1 id token #4027",
|
|
332
|
+
"author": "janutter@microsoft.com",
|
|
333
|
+
"commit": "de24de1d3a135c106143a6cc9907cc1264f546e0",
|
|
334
|
+
"package": "@azure/msal-browser"
|
|
335
|
+
},
|
|
336
|
+
{
|
|
337
|
+
"comment": "Throw interaction in progress if any msal instance has interaction in progress #4014",
|
|
338
|
+
"author": "thomas.norling@microsoft.com",
|
|
339
|
+
"commit": "5188d7d9fb2aa7a9e9f2ffd12abd8d438c4c3876",
|
|
340
|
+
"package": "@azure/msal-browser"
|
|
341
|
+
},
|
|
342
|
+
{
|
|
343
|
+
"comment": "Only emit handleRedirect start event on first invocation of handleRedirectPromise #4013",
|
|
344
|
+
"author": "thomas.norling@microsoft.com",
|
|
345
|
+
"commit": "09f8cece289c07dd9c5681a31ec285e4111db4ae",
|
|
346
|
+
"package": "@azure/msal-browser"
|
|
347
|
+
},
|
|
348
|
+
{
|
|
349
|
+
"comment": "Add correlationId to AuthenticationResult type #3947",
|
|
350
|
+
"author": "thomas.norling@microsoft.com",
|
|
351
|
+
"commit": "931061695df57488a26397763bbdb3e466713df8",
|
|
352
|
+
"package": "@azure/msal-browser"
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
"comment": "Remove token binding key from key store when refreshing pop token #3500",
|
|
356
|
+
"author": "hemoral@microsoft.com",
|
|
357
|
+
"commit": "6592652877f31405c8ed73a66f03eada90a78c0a",
|
|
358
|
+
"package": "@azure/msal-browser"
|
|
359
|
+
},
|
|
360
|
+
{
|
|
361
|
+
"comment": "Fix clearing active account on logout #3948",
|
|
362
|
+
"author": "hemoral@microsoft.com",
|
|
363
|
+
"commit": "cd45c77348f6fc259f9378f69b25569146e1c58a",
|
|
364
|
+
"package": "@azure/msal-browser"
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
"comment": "Add correlationId to errors thrown #3930",
|
|
368
|
+
"author": "thomas.norling@microsoft.com",
|
|
369
|
+
"commit": "c2d19c27d11fdab54fb336b9a455b05c753ae750",
|
|
370
|
+
"package": "@azure/msal-browser"
|
|
371
|
+
}
|
|
372
|
+
],
|
|
373
|
+
"none": [
|
|
374
|
+
{
|
|
375
|
+
"comment": "Fix accesstoken_with_authscheme implementation #3910",
|
|
376
|
+
"author": "hemoral@microsoft.com",
|
|
377
|
+
"commit": "9aceb4219ebad900277aa6a59ca1ff93c5a21e0a",
|
|
378
|
+
"package": "@azure/msal-browser"
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
"comment": "Update FAQ #3934",
|
|
382
|
+
"author": "joliuac@gmail.com",
|
|
383
|
+
"commit": "323d7eabbbd95c499d2c2a2446cdea4531af71c5",
|
|
384
|
+
"package": "@azure/msal-browser"
|
|
385
|
+
}
|
|
386
|
+
]
|
|
387
|
+
}
|
|
388
|
+
},
|
|
389
|
+
{
|
|
390
|
+
"date": "Thu, 22 Jul 2021 22:50:22 GMT",
|
|
391
|
+
"tag": "@azure/msal-browser_v2.16.0",
|
|
392
|
+
"version": "2.16.0",
|
|
393
|
+
"comments": {
|
|
394
|
+
"patch": [
|
|
395
|
+
{
|
|
396
|
+
"comment": "Add fix for loginRedirect failure when angular index.html base href is different from the origin (#3875)",
|
|
397
|
+
"author": "rishanthakumar@gmail.com",
|
|
398
|
+
"commit": "9da0b3f92216367d68bdb7fea74cd9050d202a76",
|
|
399
|
+
"package": "@azure/msal-browser"
|
|
400
|
+
},
|
|
401
|
+
{
|
|
402
|
+
"comment": "fix: fixing the npm audit issues",
|
|
403
|
+
"author": "samuelkamau@microsoft.com",
|
|
404
|
+
"commit": "9b19470078b65bedf2b69246ba764b32b533a268",
|
|
405
|
+
"package": "@azure/msal-browser"
|
|
406
|
+
},
|
|
407
|
+
{
|
|
408
|
+
"comment": "Expose isInPopup helper function #3825",
|
|
409
|
+
"author": "thomas.norling@microsoft.com",
|
|
410
|
+
"commit": "45e51762597ffde61d70a9e085e77893b339d0e1",
|
|
411
|
+
"package": "@azure/msal-browser"
|
|
412
|
+
}
|
|
413
|
+
],
|
|
414
|
+
"none": [
|
|
415
|
+
{
|
|
416
|
+
"comment": "Add support for prompt=create #3773",
|
|
417
|
+
"author": "joarroyo@microsoft.com",
|
|
418
|
+
"commit": "c9314cedfe08b643e43e358243dc7f49253f77ef",
|
|
419
|
+
"package": "@azure/msal-browser"
|
|
420
|
+
}
|
|
421
|
+
],
|
|
422
|
+
"minor": [
|
|
423
|
+
{
|
|
424
|
+
"comment": "Msal-Browser supports parallel silent requests #3837",
|
|
425
|
+
"author": "joarroyo@microsoft.com",
|
|
426
|
+
"commit": "3d6a01191deb3fa1da722b4362d52535c350ddd7",
|
|
427
|
+
"package": "@azure/msal-browser"
|
|
428
|
+
},
|
|
429
|
+
{
|
|
430
|
+
"comment": "Persist active account #3755",
|
|
431
|
+
"author": "thomas.norling@microsoft.com",
|
|
432
|
+
"commit": "db59cc072e50f201f09e03a09a1b7b8355e10ee1",
|
|
433
|
+
"package": "@azure/msal-browser"
|
|
434
|
+
}
|
|
435
|
+
]
|
|
436
|
+
}
|
|
437
|
+
},
|
|
438
|
+
{
|
|
439
|
+
"date": "Mon, 28 Jun 2021 23:39:48 GMT",
|
|
440
|
+
"tag": "@azure/msal-browser_v2.15.0",
|
|
441
|
+
"version": "2.15.0",
|
|
442
|
+
"comments": {
|
|
443
|
+
"none": [
|
|
444
|
+
{
|
|
445
|
+
"comment": "Component governance dependency updates #3655",
|
|
446
|
+
"author": "joarroyo@microsoft.com",
|
|
447
|
+
"commit": "3f74f3bffd88fc0b39a854da090f01aa9c072618",
|
|
448
|
+
"package": "@azure/msal-browser"
|
|
449
|
+
},
|
|
450
|
+
{
|
|
451
|
+
"comment": "Remove unused error #3657",
|
|
452
|
+
"author": "thomas.norling@microsoft.com",
|
|
453
|
+
"commit": "f6f7a7c738706668c869fcc84338d8c212a5ab4f",
|
|
454
|
+
"package": "@azure/msal-browser"
|
|
455
|
+
},
|
|
456
|
+
{
|
|
457
|
+
"comment": "Upgrade Jest to v27 #3719",
|
|
458
|
+
"author": "thomas.norling@microsoft.com",
|
|
459
|
+
"commit": "6c34aa5be3ee9536bd2febd2b7781fcdf0d28786",
|
|
460
|
+
"package": "@azure/msal-browser"
|
|
461
|
+
},
|
|
462
|
+
{
|
|
463
|
+
"comment": "fix: update package lock files",
|
|
464
|
+
"author": "samuelkamau@microsoft.com",
|
|
465
|
+
"commit": "0199e41269b79de70f7d0da0fb12448db534f784",
|
|
466
|
+
"package": "@azure/msal-browser"
|
|
467
|
+
}
|
|
468
|
+
],
|
|
469
|
+
"patch": [
|
|
470
|
+
{
|
|
471
|
+
"comment": "Update monitor_window_timeout error message with link to error docs #3783",
|
|
472
|
+
"author": "thomas.norling@microsoft.com",
|
|
473
|
+
"commit": "728b63ea69ba0aa57c1a1fa0a0c714dbb168b9a6",
|
|
474
|
+
"package": "@azure/msal-browser"
|
|
475
|
+
},
|
|
476
|
+
{
|
|
477
|
+
"comment": "Refactor event APIs into EventHandler class #3770",
|
|
478
|
+
"author": "thomas.norling@microsoft.com",
|
|
479
|
+
"commit": "f0c574a8c2ffeb3132703e7e9e17d01e1898abaa",
|
|
480
|
+
"package": "@azure/msal-browser"
|
|
481
|
+
},
|
|
482
|
+
{
|
|
483
|
+
"comment": "Fix logoutPopup parameter type on IPublicClientApplication #3663",
|
|
484
|
+
"author": "thomas.norling@microsoft.com",
|
|
485
|
+
"commit": "16200653c5f9d31d890d1d592e8b58ffde7259ed",
|
|
486
|
+
"package": "@azure/msal-browser"
|
|
487
|
+
}
|
|
488
|
+
],
|
|
489
|
+
"minor": [
|
|
490
|
+
{
|
|
491
|
+
"comment": "Add correlationId to log messages #3601",
|
|
492
|
+
"author": "joarroyo@microsoft.com",
|
|
493
|
+
"commit": "8d58f91c9dd9d65df4a016c7bcdbbd03e9bf573e",
|
|
494
|
+
"package": "@azure/msal-browser"
|
|
495
|
+
},
|
|
496
|
+
{
|
|
497
|
+
"comment": "Add CCS parameters to headers or form_data #3636",
|
|
498
|
+
"author": "prkanher@microsoft.com",
|
|
499
|
+
"commit": "2956380aecde38382a28c7ed15164b8dfd65cfca",
|
|
500
|
+
"package": "@azure/msal-browser"
|
|
501
|
+
}
|
|
502
|
+
]
|
|
503
|
+
}
|
|
504
|
+
},
|
|
505
|
+
{
|
|
506
|
+
"date": "Thu, 13 May 2021 18:34:08 GMT",
|
|
507
|
+
"tag": "@azure/msal-browser_v2.14.2",
|
|
508
|
+
"version": "2.14.2",
|
|
509
|
+
"comments": {
|
|
510
|
+
"none": [
|
|
511
|
+
{
|
|
512
|
+
"comment": "Enable no-param-reassign lint rule",
|
|
513
|
+
"author": "janutter@microsoft.com",
|
|
514
|
+
"commit": "e24f5cff944c05ccaecb180fa68814bc89512095",
|
|
515
|
+
"package": "@azure/msal-browser"
|
|
516
|
+
}
|
|
517
|
+
]
|
|
518
|
+
}
|
|
519
|
+
},
|
|
520
|
+
{
|
|
521
|
+
"date": "Wed, 12 May 2021 18:35:03 GMT",
|
|
522
|
+
"tag": "@azure/msal-browser_v2.14.2",
|
|
523
|
+
"version": "2.14.2",
|
|
524
|
+
"comments": {
|
|
525
|
+
"none": [
|
|
526
|
+
{
|
|
527
|
+
"comment": "[docs] updates and replacements",
|
|
528
|
+
"author": "dogan.erisen@gmail.com",
|
|
529
|
+
"commit": "56a947b117302218a625d365b63e8ad85859125f",
|
|
530
|
+
"package": "@azure/msal-browser"
|
|
531
|
+
},
|
|
532
|
+
{
|
|
533
|
+
"comment": "replace legacy password-reset flow",
|
|
534
|
+
"author": "dogan.erisen@gmail.com",
|
|
535
|
+
"commit": "f272ffce86591aeeacd892f3b53e522ebcd19555",
|
|
536
|
+
"package": "@azure/msal-browser"
|
|
537
|
+
},
|
|
538
|
+
{
|
|
539
|
+
"comment": "Regenerate package-lock #3510",
|
|
540
|
+
"author": "joarroyo@microsoft.com",
|
|
541
|
+
"commit": "ba0092a452f71a7bc58aaf7acdf94536d66f7493",
|
|
542
|
+
"package": "@azure/msal-browser"
|
|
543
|
+
},
|
|
544
|
+
{
|
|
545
|
+
"comment": "Add incompatibility with Azure App Proxy to browser FAQ",
|
|
546
|
+
"author": "janutter@microsoft.com",
|
|
547
|
+
"commit": "daf2d0cb86225ab84d9be11fd147ac045ab72e9e",
|
|
548
|
+
"package": "@azure/msal-browser"
|
|
549
|
+
},
|
|
550
|
+
{
|
|
551
|
+
"comment": "Use msrCrypto for browsers unit tests",
|
|
552
|
+
"author": "janutter@microsoft.com",
|
|
553
|
+
"commit": "9b35b53d3dcecf1e560bb7607265f3aa1a463447",
|
|
554
|
+
"package": "@azure/msal-browser"
|
|
555
|
+
},
|
|
556
|
+
{
|
|
557
|
+
"comment": "Add known issues for IE",
|
|
558
|
+
"author": "janutter@microsoft.com",
|
|
559
|
+
"commit": "f86c673b1baed6b94e0a3d890d4eecdae6a1160a",
|
|
560
|
+
"package": "@azure/msal-browser"
|
|
561
|
+
}
|
|
562
|
+
],
|
|
563
|
+
"patch": [
|
|
564
|
+
{
|
|
565
|
+
"comment": "Adjust log messages #3589",
|
|
566
|
+
"author": "joarroyo@microsoft.com",
|
|
567
|
+
"commit": "822ea2293a3f2e6fa3182a9bea97f122758952bd",
|
|
568
|
+
"package": "@azure/msal-browser"
|
|
569
|
+
},
|
|
570
|
+
{
|
|
571
|
+
"comment": "Fix hash removal from URL and browser history after interactive request #3609",
|
|
572
|
+
"author": "hemoral@microsoft.com",
|
|
573
|
+
"commit": "b773d95b05f87030ad3e72689cd2f847d8298fb7",
|
|
574
|
+
"package": "@azure/msal-browser"
|
|
575
|
+
},
|
|
576
|
+
{
|
|
577
|
+
"comment": "Update account equality check #3527",
|
|
578
|
+
"author": "thomas.norling@microsoft.com",
|
|
579
|
+
"commit": "878253750fecf12b4a865a5821df20d333ff0134",
|
|
580
|
+
"package": "@azure/msal-browser"
|
|
581
|
+
},
|
|
582
|
+
{
|
|
583
|
+
"comment": "Close popup if error is thrown before popup window navigation occurs #3572",
|
|
584
|
+
"author": "thomas.norling@microsoft.com",
|
|
585
|
+
"commit": "1ddbb1bec251759959be5d5962e44d9c6537ce7c",
|
|
586
|
+
"package": "@azure/msal-browser"
|
|
587
|
+
},
|
|
588
|
+
{
|
|
589
|
+
"comment": "change msal-browser/msal-common to preserveModules to enable tree-shaking #3300",
|
|
590
|
+
"author": "oo.thomas96@gmail.com",
|
|
591
|
+
"commit": "065f107fff0e2dd37d9c8cee2fd6808988bb4038",
|
|
592
|
+
"package": "@azure/msal-browser"
|
|
593
|
+
}
|
|
594
|
+
]
|
|
595
|
+
}
|
|
596
|
+
},
|
|
597
|
+
{
|
|
598
|
+
"date": "Thu, 22 Apr 2021 23:26:08 GMT",
|
|
599
|
+
"tag": "@azure/msal-browser_v2.14.1",
|
|
600
|
+
"version": "2.14.1",
|
|
601
|
+
"comments": {
|
|
602
|
+
"none": [
|
|
603
|
+
{
|
|
604
|
+
"comment": "Documentation Updates #3499",
|
|
605
|
+
"author": "thomas.norling@microsoft.com",
|
|
606
|
+
"commit": "366ec6a251e099a45ad83c380aa22e4dff7b4a9e",
|
|
607
|
+
"package": "@azure/msal-browser"
|
|
608
|
+
},
|
|
609
|
+
{
|
|
610
|
+
"comment": "Run npm audit for PRs",
|
|
611
|
+
"author": "janutter@microsoft.com",
|
|
612
|
+
"commit": "b3c5bcf2101cbe92edca972c53d64343f775dcc9",
|
|
613
|
+
"package": "@azure/msal-browser"
|
|
614
|
+
},
|
|
615
|
+
{
|
|
616
|
+
"comment": "Update and fix eslint rules",
|
|
617
|
+
"author": "janutter@microsoft.com",
|
|
618
|
+
"commit": "70debe58239b6a6fdf4e533a8a1ee057257846a8",
|
|
619
|
+
"package": "@azure/msal-browser"
|
|
620
|
+
},
|
|
621
|
+
{
|
|
622
|
+
"comment": "resource-and-scopes doc correction",
|
|
623
|
+
"author": "dogan.erisen@gmail.com",
|
|
624
|
+
"commit": "8e24069543f421d38a3612382691fb86fbe20178",
|
|
625
|
+
"package": "@azure/msal-browser"
|
|
626
|
+
}
|
|
627
|
+
],
|
|
628
|
+
"patch": [
|
|
629
|
+
{
|
|
630
|
+
"comment": "Add .browserslistrc #3471",
|
|
631
|
+
"author": "thomas.norling@microsoft.com",
|
|
632
|
+
"commit": "04c6d659d4dc76183ef9043075d3b6cacc450c9b",
|
|
633
|
+
"package": "@azure/msal-browser"
|
|
634
|
+
},
|
|
635
|
+
{
|
|
636
|
+
"comment": "Look for temp cache items in local storage as fallback #3509",
|
|
637
|
+
"author": "janutter@microsoft.com",
|
|
638
|
+
"commit": "01b835a2bdbc90557aa357fadae37f6bbe817ebc",
|
|
639
|
+
"package": "@azure/msal-browser"
|
|
640
|
+
}
|
|
641
|
+
]
|
|
642
|
+
}
|
|
643
|
+
},
|
|
644
|
+
{
|
|
645
|
+
"date": "Wed, 14 Apr 2021 18:39:53 GMT",
|
|
646
|
+
"tag": "@azure/msal-browser_v2.14.0",
|
|
647
|
+
"version": "2.14.0",
|
|
648
|
+
"comments": {
|
|
649
|
+
"none": [
|
|
650
|
+
{
|
|
651
|
+
"comment": "Add Typedocs links to event doc #2964",
|
|
652
|
+
"author": "thomas.norling@microsoft.com",
|
|
653
|
+
"commit": "6e6b1e9cc11140d0f8da21a19fc0fef100b550c6",
|
|
654
|
+
"package": "@azure/msal-browser"
|
|
655
|
+
},
|
|
656
|
+
{
|
|
657
|
+
"comment": "[docs] code snippet correction",
|
|
658
|
+
"author": "dogan.erisen@gmail.com",
|
|
659
|
+
"commit": "1bdda4f0c07b4c7964fd627af17e8c906fbed5df",
|
|
660
|
+
"package": "@azure/msal-browser"
|
|
661
|
+
},
|
|
662
|
+
{
|
|
663
|
+
"comment": "Changes to test files",
|
|
664
|
+
"author": "prkanher@microsoft.com",
|
|
665
|
+
"commit": "543d4a94d7508da60ca5f12c710c5de3b240e4b6",
|
|
666
|
+
"package": "@azure/msal-browser"
|
|
667
|
+
},
|
|
668
|
+
{
|
|
669
|
+
"comment": "Docs update",
|
|
670
|
+
"author": "thomas.norling@microsoft.com",
|
|
671
|
+
"commit": "4e4a6b7334dedabc783f8da4f887f575cffc9c50",
|
|
672
|
+
"package": "@azure/msal-browser"
|
|
673
|
+
},
|
|
674
|
+
{
|
|
675
|
+
"comment": "property name correction",
|
|
676
|
+
"author": "dogan.erisen@gmail.com",
|
|
677
|
+
"commit": "7d728fd177f4914ada7a25e45ea91d5fe2a9bdbc",
|
|
678
|
+
"package": "@azure/msal-browser"
|
|
679
|
+
}
|
|
680
|
+
],
|
|
681
|
+
"patch": [
|
|
682
|
+
{
|
|
683
|
+
"comment": "Make SHR parameters optional (#3320)",
|
|
684
|
+
"author": "hemoral@microsoft.com",
|
|
685
|
+
"commit": "fd0dcd559af8ab0e04dec3c30cf3d4e122d6057d",
|
|
686
|
+
"package": "@azure/msal-browser"
|
|
687
|
+
}
|
|
688
|
+
],
|
|
689
|
+
"minor": [
|
|
690
|
+
{
|
|
691
|
+
"comment": "Add support for AccessToken_With_AuthScheme credential type #3426",
|
|
692
|
+
"author": "hectormgdev@gmail.com",
|
|
693
|
+
"commit": "c35e120dd8af5dda03b2480cf559cf226fb2fc21",
|
|
694
|
+
"package": "@azure/msal-browser"
|
|
695
|
+
}
|
|
696
|
+
]
|
|
697
|
+
}
|
|
698
|
+
},
|
|
699
|
+
{
|
|
700
|
+
"date": "Wed, 31 Mar 2021 22:25:57 GMT",
|
|
701
|
+
"tag": "@azure/msal-browser_v2.13.1",
|
|
702
|
+
"version": "2.13.1",
|
|
703
|
+
"comments": {
|
|
704
|
+
"none": [
|
|
705
|
+
{
|
|
706
|
+
"comment": "Updates typdoc comments for request types #3309",
|
|
707
|
+
"author": "thomas.norling@microsoft.com",
|
|
708
|
+
"commit": "91da4f7f8dc126458dcc7b4a1e22b707f48a302a",
|
|
709
|
+
"package": "@azure/msal-browser"
|
|
710
|
+
},
|
|
711
|
+
{
|
|
712
|
+
"comment": "Add AT PoP documentation (#3071)",
|
|
713
|
+
"author": "hemoral@microsoft.com",
|
|
714
|
+
"commit": "b5f1bc8e9a400e50658fd91e14feea460cfb7ce9",
|
|
715
|
+
"package": "@azure/msal-browser"
|
|
716
|
+
}
|
|
717
|
+
],
|
|
718
|
+
"patch": [
|
|
719
|
+
{
|
|
720
|
+
"comment": "Export PopupEvent #3360",
|
|
721
|
+
"author": "joarroyo@microsoft.com",
|
|
722
|
+
"commit": "24fda4c133476d87c12ac913f49eb9aff696f68e",
|
|
723
|
+
"package": "@azure/msal-browser"
|
|
724
|
+
}
|
|
725
|
+
]
|
|
726
|
+
}
|
|
727
|
+
},
|
|
728
|
+
{
|
|
729
|
+
"date": "Wed, 24 Mar 2021 22:55:46 GMT",
|
|
730
|
+
"tag": "@azure/msal-browser_v2.13.0",
|
|
731
|
+
"version": "2.13.0",
|
|
732
|
+
"comments": {
|
|
733
|
+
"none": [
|
|
734
|
+
{
|
|
735
|
+
"comment": "Add Typedocs links to event doc #2964",
|
|
736
|
+
"author": "thomas.norling@microsoft.com",
|
|
737
|
+
"commit": "6e6b1e9cc11140d0f8da21a19fc0fef100b550c6",
|
|
738
|
+
"package": "@azure/msal-browser"
|
|
739
|
+
},
|
|
740
|
+
{
|
|
741
|
+
"comment": "Doc Updates #3287",
|
|
742
|
+
"author": "thomas.norling@microsoft.com",
|
|
743
|
+
"commit": "e4f3b3a09aa3f48c7b8d1d0b58f978f3eb8dca29",
|
|
744
|
+
"package": "@azure/msal-browser"
|
|
745
|
+
},
|
|
746
|
+
{
|
|
747
|
+
"comment": "Fix code example",
|
|
748
|
+
"author": "stef.heyenrath@gmail.com",
|
|
749
|
+
"commit": "f2542071844d89989a5db16d36552cdd5826309b",
|
|
750
|
+
"package": "@azure/msal-browser"
|
|
751
|
+
},
|
|
752
|
+
{
|
|
753
|
+
"comment": "Add custom SHR Client Claims documentation (#3089)",
|
|
754
|
+
"author": "hemoral@microsoft.com",
|
|
755
|
+
"commit": "44bc5edc3104400bef0e876c68ea529ce543e398",
|
|
756
|
+
"package": "@azure/msal-browser"
|
|
757
|
+
}
|
|
758
|
+
],
|
|
759
|
+
"patch": [
|
|
760
|
+
{
|
|
761
|
+
"comment": "Fix errors thrown on cache lookups when reading non-msal cache values #3245",
|
|
762
|
+
"author": "thomas.norling@microsoft.com",
|
|
763
|
+
"commit": "8626ba19ec3fb33bc16b9c62fda914920e3a21e0",
|
|
764
|
+
"package": "@azure/msal-browser"
|
|
765
|
+
},
|
|
766
|
+
{
|
|
767
|
+
"comment": "Update blockReloadInIframe error message with link to error doc #3294",
|
|
768
|
+
"author": "thomas.norling@microsoft.com",
|
|
769
|
+
"commit": "e4601c8d5581e0cedd4b7b0cc4301e4e56b49049",
|
|
770
|
+
"package": "@azure/msal-browser"
|
|
771
|
+
},
|
|
772
|
+
{
|
|
773
|
+
"comment": "Block nested popups #3249",
|
|
774
|
+
"author": "thomas.norling@microsoft.com",
|
|
775
|
+
"commit": "4241838226c4f0e54c2f7dee79d5e999e0f34f71",
|
|
776
|
+
"package": "@azure/msal-browser"
|
|
777
|
+
}
|
|
778
|
+
],
|
|
779
|
+
"minor": [
|
|
780
|
+
{
|
|
781
|
+
"comment": "Add logoutPopup API #3044",
|
|
782
|
+
"author": "thomas.norling@microsoft.com",
|
|
783
|
+
"commit": "9c913e05cc75728510e6a88fc50c7d759ec82fef",
|
|
784
|
+
"package": "@azure/msal-browser"
|
|
785
|
+
}
|
|
786
|
+
]
|
|
787
|
+
}
|
|
788
|
+
},
|
|
789
|
+
{
|
|
790
|
+
"date": "Mon, 15 Mar 2021 23:45:17 GMT",
|
|
791
|
+
"tag": "@azure/msal-browser_v2.12.1",
|
|
792
|
+
"version": "2.12.1",
|
|
793
|
+
"comments": {
|
|
794
|
+
"none": [
|
|
795
|
+
{
|
|
796
|
+
"comment": "Update Docs #3177",
|
|
797
|
+
"author": "thomas.norling@microsoft.com",
|
|
798
|
+
"commit": "d448f10701d5416190ea0eb267495ad6522320a2",
|
|
799
|
+
"package": "@azure/msal-browser"
|
|
800
|
+
},
|
|
801
|
+
{
|
|
802
|
+
"comment": "Docs changes for sid/loginHint in SSO scenarios #3147",
|
|
803
|
+
"author": "prkanher@microsoft.com",
|
|
804
|
+
"commit": "c4eadd724df908e287faf162787ab15a512ed192",
|
|
805
|
+
"package": "@azure/msal-browser"
|
|
806
|
+
}
|
|
807
|
+
],
|
|
808
|
+
"patch": [
|
|
809
|
+
{
|
|
810
|
+
"comment": "Clear temporary cache cookies on page load #3129",
|
|
811
|
+
"author": "prkanher@microsoft.com",
|
|
812
|
+
"commit": "3cbb550cb0cd63a78f3f78621d56ee42c905fcf3",
|
|
813
|
+
"package": "@azure/msal-browser"
|
|
814
|
+
},
|
|
815
|
+
{
|
|
816
|
+
"comment": "Throw BrowserAuthError when fetch fails #3146",
|
|
817
|
+
"author": "thomas.norling@microsoft.com",
|
|
818
|
+
"commit": "da0294f006a4646f101f646544cb9542d8b29628",
|
|
819
|
+
"package": "@azure/msal-browser"
|
|
820
|
+
}
|
|
821
|
+
]
|
|
822
|
+
}
|
|
823
|
+
},
|
|
824
|
+
{
|
|
825
|
+
"date": "Wed, 03 Mar 2021 21:47:05 GMT",
|
|
826
|
+
"tag": "@azure/msal-browser_v2.12.0",
|
|
827
|
+
"version": "2.12.0",
|
|
828
|
+
"comments": {
|
|
829
|
+
"none": [
|
|
830
|
+
{
|
|
831
|
+
"comment": "Update browser error doc (#3093)",
|
|
832
|
+
"author": "joarroyo@microsoft.com",
|
|
833
|
+
"commit": "c26265e6f337cead73979c8da396d09929d963e8",
|
|
834
|
+
"package": "@azure/msal-browser"
|
|
835
|
+
},
|
|
836
|
+
{
|
|
837
|
+
"comment": "docs: fix",
|
|
838
|
+
"author": "johnjosephmendez2016@gmail.com",
|
|
839
|
+
"commit": "0d2ad7b0170f9c7bd658dd7fa70a66d62578d76a",
|
|
840
|
+
"package": "@azure/msal-browser"
|
|
841
|
+
}
|
|
842
|
+
],
|
|
843
|
+
"patch": [
|
|
844
|
+
{
|
|
845
|
+
"comment": "Separate telemetry for ssoSilent and ATS iframe renewal (#3064)",
|
|
846
|
+
"author": "thomas.norling@microsoft.com",
|
|
847
|
+
"commit": "8fb91651b0f3e0fbfdfceaf92ca6048148a28643",
|
|
848
|
+
"package": "@azure/msal-browser"
|
|
849
|
+
},
|
|
850
|
+
{
|
|
851
|
+
"comment": "Add instrumentation to msal-browser (#3004)",
|
|
852
|
+
"author": "joarroyo@microsoft.com",
|
|
853
|
+
"commit": "e512a95d65964ccf304a9adb37aa758d25e59f58",
|
|
854
|
+
"package": "@azure/msal-browser"
|
|
855
|
+
},
|
|
856
|
+
{
|
|
857
|
+
"comment": "Memoize multiple calls to handleRedirectPromise (#3072)",
|
|
858
|
+
"author": "thomas.norling@microsoft.com",
|
|
859
|
+
"commit": "6f1537582e6f254463ee091e13747c352cb3b540",
|
|
860
|
+
"package": "@azure/msal-browser"
|
|
861
|
+
}
|
|
862
|
+
],
|
|
863
|
+
"minor": [
|
|
864
|
+
{
|
|
865
|
+
"comment": "Add option to make MSAL browser cookies secure (#3001)",
|
|
866
|
+
"author": "hemoral@microsoft.com",
|
|
867
|
+
"commit": "04db417301936b0f2ad9d36f535d9c3e6b8dc75c",
|
|
868
|
+
"package": "@azure/msal-browser"
|
|
869
|
+
},
|
|
870
|
+
{
|
|
871
|
+
"comment": "Add setNavigationClient API and expose INavigationClient interface (#2985)",
|
|
872
|
+
"author": "thomas.norling@microsoft.com",
|
|
873
|
+
"commit": "0ef9a0af4aba8a63ae84690ee62ac2ab0baaa85b",
|
|
874
|
+
"package": "@azure/msal-browser"
|
|
875
|
+
}
|
|
876
|
+
]
|
|
877
|
+
}
|
|
878
|
+
},
|
|
879
|
+
{
|
|
880
|
+
"date": "Thu, 18 Feb 2021 00:34:32 GMT",
|
|
881
|
+
"tag": "@azure/msal-browser_v2.11.2",
|
|
882
|
+
"version": "2.11.2",
|
|
883
|
+
"comments": {
|
|
884
|
+
"patch": [
|
|
885
|
+
{
|
|
886
|
+
"comment": "Ensure scrollbars are enabled for popups in browser",
|
|
887
|
+
"author": "janutter@microsoft.com",
|
|
888
|
+
"commit": "fbdccb8be4f089493b2a4130bdbf95596f0e88a4",
|
|
889
|
+
"package": "@azure/msal-browser"
|
|
890
|
+
}
|
|
891
|
+
]
|
|
892
|
+
}
|
|
893
|
+
},
|
|
894
|
+
{
|
|
895
|
+
"date": "Tue, 09 Feb 2021 01:48:22 GMT",
|
|
896
|
+
"tag": "@azure/msal-browser_v2.11.1",
|
|
897
|
+
"version": "2.11.1",
|
|
898
|
+
"comments": {
|
|
899
|
+
"patch": [
|
|
900
|
+
{
|
|
901
|
+
"comment": "Fix version.json import errors (#2993)",
|
|
902
|
+
"author": "thomas.norling@microsoft.com",
|
|
903
|
+
"commit": "6dc3bc9e2148bc53b181d9f079f6e11e0159620b",
|
|
904
|
+
"package": "@azure/msal-browser"
|
|
905
|
+
},
|
|
906
|
+
{
|
|
907
|
+
"comment": "Add missing network types to browser exports (#2995)",
|
|
908
|
+
"author": "prkanher@microsoft.com",
|
|
909
|
+
"commit": "46d7dd34752dbcad595eef1298b8c277106ef57b",
|
|
910
|
+
"package": "@azure/msal-browser"
|
|
911
|
+
},
|
|
912
|
+
{
|
|
913
|
+
"comment": "Ignore OIDC scopes during cache lookup or replacement (#2969)",
|
|
914
|
+
"author": "prkanher@microsoft.com",
|
|
915
|
+
"commit": "554f47e8ff576c3230c36df74cd73b6101d333ab",
|
|
916
|
+
"package": "@azure/msal-browser"
|
|
917
|
+
},
|
|
918
|
+
{
|
|
919
|
+
"comment": "Allow apps to not use the current page as default postLogoutRedirectUri in MSAL Browser (#2789)",
|
|
920
|
+
"author": "janutter@microsoft.com",
|
|
921
|
+
"commit": "3d8d372276d2c42d359bbf05cfcdd1d7c890c7d8",
|
|
922
|
+
"package": "@azure/msal-browser"
|
|
923
|
+
},
|
|
924
|
+
{
|
|
925
|
+
"comment": "Fix PCA stub errors (#2963)",
|
|
926
|
+
"author": "thomas.norling@microsoft.com",
|
|
927
|
+
"commit": "6a0c28447f198eaa3f02cd450d8f181c02536bcf",
|
|
928
|
+
"package": "@azure/msal-browser"
|
|
929
|
+
}
|
|
930
|
+
],
|
|
931
|
+
"none": [
|
|
932
|
+
{
|
|
933
|
+
"comment": "Add instrumentation (#2863)",
|
|
934
|
+
"author": "joarroyo@microsoft.com",
|
|
935
|
+
"commit": "838f95742432a4d19a9784b784d978834e5e19f4",
|
|
936
|
+
"package": "@azure/msal-browser"
|
|
937
|
+
},
|
|
938
|
+
{
|
|
939
|
+
"comment": "Add API Extractor for msal-node",
|
|
940
|
+
"author": "sameera.gajjarapu@microsoft.com",
|
|
941
|
+
"commit": "01747296efdf08eefe585930097d9bbbf6b00789",
|
|
942
|
+
"package": "@azure/msal-browser"
|
|
943
|
+
}
|
|
944
|
+
]
|
|
945
|
+
}
|
|
946
|
+
},
|
|
947
|
+
{
|
|
948
|
+
"date": "Tue, 02 Feb 2021 01:56:47 GMT",
|
|
949
|
+
"tag": "@azure/msal-browser_v2.11.0",
|
|
950
|
+
"version": "2.11.0",
|
|
951
|
+
"comments": {
|
|
952
|
+
"none": [
|
|
953
|
+
{
|
|
954
|
+
"comment": "Test changes",
|
|
955
|
+
"author": "prkanher@microsoft.com",
|
|
956
|
+
"commit": "12f9fa2b6a9530fac5f7570ee3c49dc39232284c",
|
|
957
|
+
"package": "@azure/msal-browser"
|
|
958
|
+
},
|
|
959
|
+
{
|
|
960
|
+
"comment": "Typedocs Updates (#2926)",
|
|
961
|
+
"author": "thomas.norling@microsoft.com",
|
|
962
|
+
"commit": "3fd4a48143ed4fb62b9e3266338b1abda920d68a",
|
|
963
|
+
"package": "@azure/msal-browser"
|
|
964
|
+
},
|
|
965
|
+
{
|
|
966
|
+
"comment": "Update acquire-token.md",
|
|
967
|
+
"author": "hello@kubaprzetakiewi.cz",
|
|
968
|
+
"commit": "828086ab6df566b7711d430cc0b98338293f1365",
|
|
969
|
+
"package": "@azure/msal-browser"
|
|
970
|
+
},
|
|
971
|
+
{
|
|
972
|
+
"comment": "Add project references (#2930)",
|
|
973
|
+
"author": "thomas.norling@microsoft.com",
|
|
974
|
+
"commit": "a836e77e372f1b4da28195d4ad8c0c75d6794875",
|
|
975
|
+
"package": "@azure/msal-browser"
|
|
976
|
+
},
|
|
977
|
+
{
|
|
978
|
+
"comment": "Test updates (#2949)",
|
|
979
|
+
"author": "thomas.norling@microsoft.com",
|
|
980
|
+
"commit": "cbdd4cd8ba23b5794aeb1f0788b828f1248f7236",
|
|
981
|
+
"package": "@azure/msal-browser"
|
|
982
|
+
},
|
|
983
|
+
{
|
|
984
|
+
"comment": "Update login-user.md",
|
|
985
|
+
"author": "hello@kubaprzetakiewi.cz",
|
|
986
|
+
"commit": "5e00712d7e7097c607cc9925b507c4532f6ecab1",
|
|
987
|
+
"package": "@azure/msal-browser"
|
|
988
|
+
},
|
|
989
|
+
{
|
|
990
|
+
"comment": "FAQ Update (#2928)",
|
|
991
|
+
"author": "thomas.norling@microsoft.com",
|
|
992
|
+
"commit": "6ad6d4d95da5f5753c3d4dea7b07b9af428cf2d2",
|
|
993
|
+
"package": "@azure/msal-browser"
|
|
994
|
+
}
|
|
995
|
+
],
|
|
996
|
+
"patch": [
|
|
997
|
+
{
|
|
998
|
+
"comment": "Fix temp cache cleanup when using localStorage (#2935)",
|
|
999
|
+
"author": "thomas.norling@microsoft.com",
|
|
1000
|
+
"commit": "21dc607120091d51da368b850f0c6f8347d974dd",
|
|
1001
|
+
"package": "@azure/msal-browser"
|
|
1002
|
+
},
|
|
1003
|
+
{
|
|
1004
|
+
"comment": "Get package version from version.json (#2915)",
|
|
1005
|
+
"author": "thomas.norling@microsoft.com",
|
|
1006
|
+
"commit": "a6f4702f9439e318a8cb6dc65d1def16351a84fd",
|
|
1007
|
+
"package": "@azure/msal-browser"
|
|
1008
|
+
}
|
|
1009
|
+
],
|
|
1010
|
+
"minor": [
|
|
1011
|
+
{
|
|
1012
|
+
"comment": "Add initializeWrapperLibrary API (#2845)",
|
|
1013
|
+
"author": "thomas.norling@microsoft.com",
|
|
1014
|
+
"commit": "27597c148c718e3d001309349a4498a958688cbd",
|
|
1015
|
+
"package": "@azure/msal-browser"
|
|
1016
|
+
},
|
|
1017
|
+
{
|
|
1018
|
+
"comment": "Add getInteractionStatusFromEvent to msal-browser (#2885)",
|
|
1019
|
+
"author": "joarroyo@microsoft.com",
|
|
1020
|
+
"commit": "c263c12b7708dd61d8772e4fd147031e4eeb280d",
|
|
1021
|
+
"package": "@azure/msal-browser"
|
|
1022
|
+
}
|
|
1023
|
+
]
|
|
1024
|
+
}
|
|
1025
|
+
},
|
|
1026
|
+
{
|
|
1027
|
+
"date": "Thu, 21 Jan 2021 21:48:01 GMT",
|
|
1028
|
+
"tag": "@azure/msal-browser_v2.10.0",
|
|
1029
|
+
"version": "2.10.0",
|
|
1030
|
+
"comments": {
|
|
1031
|
+
"minor": [
|
|
1032
|
+
{
|
|
1033
|
+
"comment": "Authority metadata caching (#2758)",
|
|
1034
|
+
"author": "thomas.norling@microsoft.com",
|
|
1035
|
+
"commit": "28b3268b1385e99249c0b7a95b0b14299011ca46",
|
|
1036
|
+
"package": "@azure/msal-browser"
|
|
1037
|
+
}
|
|
1038
|
+
],
|
|
1039
|
+
"patch": [
|
|
1040
|
+
{
|
|
1041
|
+
"comment": "Fix handling of multiple popup windows (#2842)",
|
|
1042
|
+
"author": "janutter@microsoft.com",
|
|
1043
|
+
"commit": "db5ae673ae9a115e91e0db172c53c8a463210770",
|
|
1044
|
+
"package": "@azure/msal-browser"
|
|
1045
|
+
},
|
|
1046
|
+
{
|
|
1047
|
+
"comment": "redirectStartPage supports relative URIs (#2866)",
|
|
1048
|
+
"author": "thomas.norling@microsoft.com",
|
|
1049
|
+
"commit": "e3127c06f80ebd2ad97ede8caa5e0c5bf0efa215",
|
|
1050
|
+
"package": "@azure/msal-browser"
|
|
1051
|
+
}
|
|
1052
|
+
],
|
|
1053
|
+
"none": [
|
|
1054
|
+
{
|
|
1055
|
+
"comment": "Add missing license files",
|
|
1056
|
+
"author": "janutter@microsoft.com",
|
|
1057
|
+
"commit": "bee8cbd1f3a22efccb83ba045231eb611e2a7f7d",
|
|
1058
|
+
"package": "@azure/msal-browser"
|
|
1059
|
+
}
|
|
1060
|
+
]
|
|
1061
|
+
}
|
|
1062
|
+
},
|
|
1063
|
+
{
|
|
1064
|
+
"date": "Tue, 12 Jan 2021 00:51:26 GMT",
|
|
1065
|
+
"tag": "@azure/msal-browser_v2.9.0",
|
|
1066
|
+
"version": "2.9.0",
|
|
1067
|
+
"comments": {
|
|
1068
|
+
"none": [
|
|
1069
|
+
{
|
|
1070
|
+
"comment": "Update event docs in msal-browser (#2764)",
|
|
1071
|
+
"author": "joarroyo@microsoft.com",
|
|
1072
|
+
"commit": "f85db233464aed9718444ab4d29d19f432850bdf",
|
|
1073
|
+
"package": "@azure/msal-browser"
|
|
1074
|
+
},
|
|
1075
|
+
{
|
|
1076
|
+
"comment": "Update msal-angular link in msal-browser readme (#2751)",
|
|
1077
|
+
"author": "suhendri_s@outlook.com",
|
|
1078
|
+
"commit": "16e2b6cf3d4294c3723db49e1eace1d5354e4dcb",
|
|
1079
|
+
"package": "@azure/msal-browser"
|
|
1080
|
+
},
|
|
1081
|
+
{
|
|
1082
|
+
"comment": "package.lock change",
|
|
1083
|
+
"author": "samuel.kamau@microsoft.com",
|
|
1084
|
+
"commit": "4e50ca592f5a17578072be9e4ac28e05b3e6d594",
|
|
1085
|
+
"package": "@azure/msal-browser"
|
|
1086
|
+
},
|
|
1087
|
+
{
|
|
1088
|
+
"comment": "Fix npm audit warnings",
|
|
1089
|
+
"author": "janutter@microsoft.com",
|
|
1090
|
+
"commit": "751026cdaa24dd370c50ad714bf0b1d54c71fbde",
|
|
1091
|
+
"package": "@azure/msal-browser"
|
|
1092
|
+
}
|
|
1093
|
+
],
|
|
1094
|
+
"minor": [
|
|
1095
|
+
{
|
|
1096
|
+
"comment": "Adding an active account API to PublicClientApplication (#2728)",
|
|
1097
|
+
"author": "prkanher@microsoft.com",
|
|
1098
|
+
"commit": "ca8c0d55d2abc4eefaa52c833510e313610eb424",
|
|
1099
|
+
"package": "@azure/msal-browser"
|
|
1100
|
+
},
|
|
1101
|
+
{
|
|
1102
|
+
"comment": "Add internal in-memory storage to BrowserCacheManager (#2765)",
|
|
1103
|
+
"author": "thomas.norling@microsoft.com",
|
|
1104
|
+
"commit": "d97cc2e1dc08a56614b66404294c45ff9ab43bca",
|
|
1105
|
+
"package": "@azure/msal-browser"
|
|
1106
|
+
},
|
|
1107
|
+
{
|
|
1108
|
+
"comment": "Enable strict TypeScript option (#2792)",
|
|
1109
|
+
"author": "thomas.norling@microsoft.com",
|
|
1110
|
+
"commit": "a6fae46d307d0a6101e926cb28298fd9f60d4a49",
|
|
1111
|
+
"package": "@azure/msal-browser"
|
|
1112
|
+
}
|
|
1113
|
+
]
|
|
1114
|
+
}
|
|
1115
|
+
},
|
|
1116
|
+
{
|
|
1117
|
+
"date": "Mon, 07 Dec 2020 22:19:03 GMT",
|
|
1118
|
+
"tag": "@azure/msal-browser_v2.8.0",
|
|
1119
|
+
"version": "2.8.0",
|
|
1120
|
+
"comments": {
|
|
1121
|
+
"patch": [
|
|
1122
|
+
{
|
|
1123
|
+
"comment": "Fix clearing of temporary cache items (#2696)",
|
|
1124
|
+
"author": "thomas.norling@microsoft.com",
|
|
1125
|
+
"commit": "db0e692ba0dbd1fafd0ffdbacadc83f68498d201",
|
|
1126
|
+
"package": "@azure/msal-browser"
|
|
1127
|
+
},
|
|
1128
|
+
{
|
|
1129
|
+
"comment": "Add exports to index.ts (#2680)",
|
|
1130
|
+
"author": "joarroyo@microsoft.com",
|
|
1131
|
+
"commit": "7c2b0d1aae5730017bda2f63049fab48f9e71e7f",
|
|
1132
|
+
"package": "@azure/msal-browser"
|
|
1133
|
+
},
|
|
1134
|
+
{
|
|
1135
|
+
"comment": "Expose idTokenClaims on AccountInfo (#2554)",
|
|
1136
|
+
"author": "janutter@microsoft.com",
|
|
1137
|
+
"commit": "cb2165aad7995d904ec49ade565d907dc314ce16",
|
|
1138
|
+
"package": "@azure/msal-browser"
|
|
1139
|
+
},
|
|
1140
|
+
{
|
|
1141
|
+
"comment": "Add onRedirectNavigate to redirect operations in browser (#2669)",
|
|
1142
|
+
"author": "janutter@microsoft.com",
|
|
1143
|
+
"commit": "8b460eeab3ec8f94cac5291c97a5f94a05aa9270",
|
|
1144
|
+
"package": "@azure/msal-browser"
|
|
1145
|
+
},
|
|
1146
|
+
{
|
|
1147
|
+
"comment": "Update Internal PCA Configuration (#2602)",
|
|
1148
|
+
"author": "thomas.norling@microsoft.com",
|
|
1149
|
+
"commit": "ebf18c6daead16f8cfd2afb3b63cbd59fc63046a",
|
|
1150
|
+
"package": "@azure/msal-browser"
|
|
1151
|
+
},
|
|
1152
|
+
{
|
|
1153
|
+
"comment": "Add allowRedirectInIframe flag to browser (#2593)",
|
|
1154
|
+
"author": "janutter@microsoft.com",
|
|
1155
|
+
"commit": "1b8ac77845b61603d479b3ef1096ee894b9b5065",
|
|
1156
|
+
"package": "@azure/msal-browser"
|
|
1157
|
+
},
|
|
1158
|
+
{
|
|
1159
|
+
"comment": "Log messages contain package name and version (#2589)",
|
|
1160
|
+
"author": "thomas.norling@microsoft.com",
|
|
1161
|
+
"commit": "4568c16bd425e242cdb799ec59b3508654cc2e45",
|
|
1162
|
+
"package": "@azure/msal-browser"
|
|
1163
|
+
},
|
|
1164
|
+
{
|
|
1165
|
+
"comment": "Update request types (#2512)",
|
|
1166
|
+
"author": "thomas.norling@microsoft.com",
|
|
1167
|
+
"commit": "5b891222d674eb5664af9187f319a61b50341f55",
|
|
1168
|
+
"package": "@azure/msal-browser"
|
|
1169
|
+
}
|
|
1170
|
+
],
|
|
1171
|
+
"none": [
|
|
1172
|
+
{
|
|
1173
|
+
"comment": "update browser export (#2693)",
|
|
1174
|
+
"author": "joarroyo@microsoft.com",
|
|
1175
|
+
"commit": "e5a4b5c4b2ba2e996e404883705d3b53833109b3",
|
|
1176
|
+
"package": "@azure/msal-browser"
|
|
1177
|
+
},
|
|
1178
|
+
{
|
|
1179
|
+
"comment": "Package Lock update",
|
|
1180
|
+
"author": "thomas.norling@microsoft.com",
|
|
1181
|
+
"commit": "9c029bc074ecd32483a45cfab8721f0771c31e55",
|
|
1182
|
+
"package": "@azure/msal-browser"
|
|
1183
|
+
},
|
|
1184
|
+
{
|
|
1185
|
+
"comment": "adding faq for b2c support and b2c clientId scope behavior in acquireTokenSilent",
|
|
1186
|
+
"author": "dogan.erisen@gmail.com",
|
|
1187
|
+
"commit": "adc3e98b23bb16270977021e6cd381270cd97278",
|
|
1188
|
+
"package": "@azure/msal-browser"
|
|
1189
|
+
},
|
|
1190
|
+
{
|
|
1191
|
+
"comment": "Remove console.log in unit tests (#2629)",
|
|
1192
|
+
"author": "thomas.norling@microsoft.com",
|
|
1193
|
+
"commit": "b89d8029a3703b2bfa1f9399456e652fe6f26e4f",
|
|
1194
|
+
"package": "@azure/msal-browser"
|
|
1195
|
+
},
|
|
1196
|
+
{
|
|
1197
|
+
"comment": "CDN Links",
|
|
1198
|
+
"author": "thomas.norling@microsoft.com",
|
|
1199
|
+
"commit": "dcb07e2011222da6178d4da903dcf44a9f413130",
|
|
1200
|
+
"package": "@azure/msal-browser"
|
|
1201
|
+
},
|
|
1202
|
+
{
|
|
1203
|
+
"comment": "Readme updates (#2592)",
|
|
1204
|
+
"author": "thomas.norling@microsoft.com",
|
|
1205
|
+
"commit": "cfea3b511ebfcd4a22334a1b7c7625f8a7a3a098",
|
|
1206
|
+
"package": "@azure/msal-browser"
|
|
1207
|
+
},
|
|
1208
|
+
{
|
|
1209
|
+
"comment": "Doc update (#2587)",
|
|
1210
|
+
"author": "thomas.norling@microsoft.com",
|
|
1211
|
+
"commit": "fa9b7009f094b3c17a6d177fcec9b736320735c0",
|
|
1212
|
+
"package": "@azure/msal-browser"
|
|
1213
|
+
}
|
|
1214
|
+
],
|
|
1215
|
+
"minor": [
|
|
1216
|
+
{
|
|
1217
|
+
"comment": "Enable the instance_aware flow (#1804)",
|
|
1218
|
+
"author": "prkanher@microsoft.com",
|
|
1219
|
+
"commit": "3e616e162149f4e57257b70e6d481c4596d91ef9",
|
|
1220
|
+
"package": "@azure/msal-browser"
|
|
1221
|
+
}
|
|
1222
|
+
]
|
|
1223
|
+
}
|
|
1224
|
+
},
|
|
1225
|
+
{
|
|
1226
|
+
"date": "Wed, 11 Nov 2020 23:33:20 GMT",
|
|
1227
|
+
"tag": "@azure/msal-browser_v2.7.0",
|
|
1228
|
+
"version": "2.7.0",
|
|
1229
|
+
"comments": {
|
|
1230
|
+
"patch": [
|
|
1231
|
+
{
|
|
1232
|
+
"comment": "Adds getAccountByLocalId to PCA Interface (#2588)",
|
|
1233
|
+
"author": "thomas.norling@microsoft.com",
|
|
1234
|
+
"commit": "b6e1692cc3e3ea8c0d9b5808c4469446c01cfb84",
|
|
1235
|
+
"package": "@azure/msal-browser"
|
|
1236
|
+
},
|
|
1237
|
+
{
|
|
1238
|
+
"comment": "Add navigateFrameWait and change loadFrameTimeout to browser to match core behavior (#2545)",
|
|
1239
|
+
"author": "janutter@microsoft.com",
|
|
1240
|
+
"commit": "9427b1f3ae14b7e0c143900f8b6de911db12a134",
|
|
1241
|
+
"package": "@azure/msal-browser"
|
|
1242
|
+
}
|
|
1243
|
+
],
|
|
1244
|
+
"none": [
|
|
1245
|
+
{
|
|
1246
|
+
"comment": "Documentation update for new account retrieval APIs (#2585)",
|
|
1247
|
+
"author": "hemoral@microsoft.com",
|
|
1248
|
+
"commit": "cb782967cc8f07581488de71c4509fa12a702774",
|
|
1249
|
+
"package": "@azure/msal-browser"
|
|
1250
|
+
}
|
|
1251
|
+
],
|
|
1252
|
+
"minor": [
|
|
1253
|
+
{
|
|
1254
|
+
"comment": "Support relative paths on redirectUri parameter (#2560)",
|
|
1255
|
+
"author": "thomas.norling@microsoft.com",
|
|
1256
|
+
"commit": "12ccf0441f8735e9d2875cebac6065447ecc622d",
|
|
1257
|
+
"package": "@azure/msal-browser"
|
|
1258
|
+
}
|
|
1259
|
+
]
|
|
1260
|
+
}
|
|
1261
|
+
},
|
|
1262
|
+
{
|
|
1263
|
+
"date": "Tue, 10 Nov 2020 01:48:44 GMT",
|
|
1264
|
+
"tag": "@azure/msal-browser_v2.6.1",
|
|
1265
|
+
"version": "2.6.1",
|
|
1266
|
+
"comments": {
|
|
1267
|
+
"patch": [
|
|
1268
|
+
{
|
|
1269
|
+
"comment": "Export stubbed PCA instance (#2540)",
|
|
1270
|
+
"author": "thomas.norling@microsoft.com",
|
|
1271
|
+
"commit": "612feaeb6e5099cae6d1f606d187f5e38063018f",
|
|
1272
|
+
"package": "@azure/msal-browser"
|
|
1273
|
+
}
|
|
1274
|
+
]
|
|
1275
|
+
}
|
|
1276
|
+
},
|
|
1277
|
+
{
|
|
1278
|
+
"date": "Sat, 07 Nov 2020 01:50:14 GMT",
|
|
1279
|
+
"tag": "@azure/msal-browser_v2.6.0",
|
|
1280
|
+
"version": "2.6.0",
|
|
1281
|
+
"comments": {
|
|
1282
|
+
"minor": [
|
|
1283
|
+
{
|
|
1284
|
+
"comment": "Fixing a bug and adding `localAccountId` in AccountInfo interface (#2516)",
|
|
1285
|
+
"author": "sameera.gajjarapu@microsoft.com",
|
|
1286
|
+
"commit": "98f43038608fe66a256dabfff0810476e9e6b3ab",
|
|
1287
|
+
"package": "@azure/msal-browser"
|
|
1288
|
+
}
|
|
1289
|
+
],
|
|
1290
|
+
"none": [
|
|
1291
|
+
{
|
|
1292
|
+
"comment": "Build Pipeline Changes (#2406)",
|
|
1293
|
+
"author": "thomas.norling@microsoft.com",
|
|
1294
|
+
"commit": "af8459c0d53a4dc2bf495017608c0bb03004d006",
|
|
1295
|
+
"package": "@azure/msal-browser"
|
|
1296
|
+
}
|
|
1297
|
+
]
|
|
1298
|
+
}
|
|
1299
|
+
},
|
|
1300
|
+
{
|
|
1301
|
+
"date": "Mon, 02 Nov 2020 23:33:39 GMT",
|
|
1302
|
+
"tag": "@azure/msal-browser_v2.5.2",
|
|
1303
|
+
"version": "2.5.2",
|
|
1304
|
+
"comments": {
|
|
1305
|
+
"patch": [
|
|
1306
|
+
{
|
|
1307
|
+
"comment": "Fix JSON.parse issue and cache value validation (#2527)",
|
|
1308
|
+
"author": "prkanher@microsoft.com",
|
|
1309
|
+
"commit": "62cfc6bf4a8f299ba7160a70a71c84890b49a051",
|
|
1310
|
+
"package": "@azure/msal-browser"
|
|
1311
|
+
}
|
|
1312
|
+
]
|
|
1313
|
+
}
|
|
1314
|
+
},
|
|
1315
|
+
{
|
|
1316
|
+
"date": "Fri, 30 Oct 2020 00:52:19 GMT",
|
|
1317
|
+
"tag": "@azure/msal-browser_v2.5.1",
|
|
1318
|
+
"version": "2.5.1",
|
|
1319
|
+
"comments": {
|
|
1320
|
+
"patch": [
|
|
1321
|
+
{
|
|
1322
|
+
"comment": "Restore string to cacheLocation type (#2523)",
|
|
1323
|
+
"author": "janutter@microsoft.com",
|
|
1324
|
+
"commit": "7f45b2d37f6784f25aa454f599d0cb7f81463b5c",
|
|
1325
|
+
"package": "@azure/msal-browser"
|
|
1326
|
+
}
|
|
1327
|
+
]
|
|
1328
|
+
}
|
|
1329
|
+
},
|
|
1330
|
+
{
|
|
1331
|
+
"date": "Thu, 29 Oct 2020 20:36:48 GMT",
|
|
1332
|
+
"tag": "@azure/msal-browser_v2.5.0",
|
|
1333
|
+
"version": "2.5.0",
|
|
1334
|
+
"comments": {
|
|
1335
|
+
"patch": [
|
|
1336
|
+
{
|
|
1337
|
+
"comment": "Add handleRedirect End Event (#2518)",
|
|
1338
|
+
"author": "thomas.norling@microsoft.com",
|
|
1339
|
+
"commit": "22369204b53bbd7b791d83f5b9476661eebdeda5",
|
|
1340
|
+
"package": "@azure/msal-browser"
|
|
1341
|
+
},
|
|
1342
|
+
{
|
|
1343
|
+
"comment": "Ensure history.replaceState is a function",
|
|
1344
|
+
"author": "janutter@microsoft.com",
|
|
1345
|
+
"commit": "77143b3994fb16313324fb91799e38a462bac1c1",
|
|
1346
|
+
"package": "@azure/msal-browser"
|
|
1347
|
+
},
|
|
1348
|
+
{
|
|
1349
|
+
"comment": "Allow hash to be passed into handleRedirectPromise, reset non-msal after processing",
|
|
1350
|
+
"author": "janutter@microsoft.com",
|
|
1351
|
+
"commit": "689c9df7a9fe3f9dabb7cdd604a84707fd216154",
|
|
1352
|
+
"package": "@azure/msal-browser"
|
|
1353
|
+
}
|
|
1354
|
+
],
|
|
1355
|
+
"minor": [
|
|
1356
|
+
{
|
|
1357
|
+
"comment": "Add getLogger and setLogger to msal-browser (#2513)",
|
|
1358
|
+
"author": "joarroyo@microsoft.com",
|
|
1359
|
+
"commit": "664b02b2c8075ef0a5fd3880ce38117523ed3e74",
|
|
1360
|
+
"package": "@azure/msal-browser"
|
|
1361
|
+
},
|
|
1362
|
+
{
|
|
1363
|
+
"comment": "Adding memory storage option for cache location (#2481)",
|
|
1364
|
+
"author": "prkanher@microsoft.com",
|
|
1365
|
+
"commit": "f07cef165707ffa46827069a0d0d202eb0313312",
|
|
1366
|
+
"package": "@azure/msal-browser"
|
|
1367
|
+
}
|
|
1368
|
+
],
|
|
1369
|
+
"none": [
|
|
1370
|
+
{
|
|
1371
|
+
"comment": "Add script to automate generation and updating of browser SRI hashes",
|
|
1372
|
+
"author": "janutter@microsoft.com",
|
|
1373
|
+
"commit": "894453a2e68a9570ba6984da6f692ed05188ae8f",
|
|
1374
|
+
"package": "@azure/msal-browser"
|
|
1375
|
+
}
|
|
1376
|
+
]
|
|
1377
|
+
}
|
|
1378
|
+
},
|
|
1379
|
+
{
|
|
1380
|
+
"date": "Mon, 26 Oct 2020 21:00:29 GMT",
|
|
1381
|
+
"tag": "@azure/msal-browser_v2.4.1",
|
|
1382
|
+
"version": "2.4.1",
|
|
1383
|
+
"comments": {
|
|
1384
|
+
"none": [
|
|
1385
|
+
{
|
|
1386
|
+
"comment": "Update SRI hashes for msal@1.4.2 and browser@2.4.0",
|
|
1387
|
+
"author": "janutter@microsoft.com",
|
|
1388
|
+
"commit": "2edf8ba703ad49c78f548e17ace9ee494abf30f1",
|
|
1389
|
+
"package": "@azure/msal-browser"
|
|
1390
|
+
},
|
|
1391
|
+
{
|
|
1392
|
+
"comment": "Update Readme (#2468)",
|
|
1393
|
+
"author": "thomas.norling@microsoft.com",
|
|
1394
|
+
"commit": "dca9f652c157ee621302225c04ec87f488b2c8cb",
|
|
1395
|
+
"package": "@azure/msal-browser"
|
|
1396
|
+
},
|
|
1397
|
+
{
|
|
1398
|
+
"comment": "Add docs for event API (#2459)",
|
|
1399
|
+
"author": "joarroyo@microsoft.com",
|
|
1400
|
+
"commit": "9b6fd4426eac56327a6180739888ecaa4b54af7e",
|
|
1401
|
+
"package": "@azure/msal-browser"
|
|
1402
|
+
}
|
|
1403
|
+
],
|
|
1404
|
+
"patch": [
|
|
1405
|
+
{
|
|
1406
|
+
"comment": "msal-browser and msal-node cache Interfaces to msal-common updated (#2415)",
|
|
1407
|
+
"author": "sameera.gajjarapu@microsoft.com",
|
|
1408
|
+
"commit": "9d4c4a18de10eb3d918810dc10766fbd5547165d",
|
|
1409
|
+
"package": "@azure/msal-browser"
|
|
1410
|
+
}
|
|
1411
|
+
]
|
|
1412
|
+
}
|
|
1413
|
+
},
|
|
1414
|
+
{
|
|
1415
|
+
"date": "Tue, 20 Oct 2020 23:47:28 GMT",
|
|
1416
|
+
"tag": "@azure/msal-browser_v2.4.0",
|
|
1417
|
+
"version": "2.4.0",
|
|
1418
|
+
"comments": {
|
|
1419
|
+
"none": [
|
|
1420
|
+
{
|
|
1421
|
+
"comment": "Updated cdn docs for MSAL Browser",
|
|
1422
|
+
"author": "janutter@microsoft.com",
|
|
1423
|
+
"commit": "034fc94ad59499932fe7530b0e5ab3152bcbf11e",
|
|
1424
|
+
"package": "@azure/msal-browser"
|
|
1425
|
+
},
|
|
1426
|
+
{
|
|
1427
|
+
"comment": "Update FAQ (#2440)",
|
|
1428
|
+
"author": "thomas.norling@microsoft.com",
|
|
1429
|
+
"commit": "1de35f42e0340d2b3020ba7938d0ae5d7d067a42",
|
|
1430
|
+
"package": "@azure/msal-browser"
|
|
1431
|
+
},
|
|
1432
|
+
{
|
|
1433
|
+
"comment": "Updated eslint rules (#2345)",
|
|
1434
|
+
"author": "janutter@microsoft.com",
|
|
1435
|
+
"commit": "64a4f9e868e63346dfd711dec717abe7fd14d949",
|
|
1436
|
+
"package": "@azure/msal-browser"
|
|
1437
|
+
}
|
|
1438
|
+
],
|
|
1439
|
+
"minor": [
|
|
1440
|
+
{
|
|
1441
|
+
"comment": "Add removeEventCallback API (#2462)",
|
|
1442
|
+
"author": "thomas.norling@microsoft.com",
|
|
1443
|
+
"commit": "f934892a769d3287a8edda8ec3f72928ff288ea8",
|
|
1444
|
+
"package": "@azure/msal-browser"
|
|
1445
|
+
},
|
|
1446
|
+
{
|
|
1447
|
+
"comment": "Add event api to msal-browser (#2394)",
|
|
1448
|
+
"author": "joarroyo@microsoft.com",
|
|
1449
|
+
"commit": "b1a6ccc6348b556cd4636511aeb8e58060154daa",
|
|
1450
|
+
"package": "@azure/msal-browser"
|
|
1451
|
+
}
|
|
1452
|
+
],
|
|
1453
|
+
"patch": [
|
|
1454
|
+
{
|
|
1455
|
+
"comment": "Use history API to clear hash for msal-browser",
|
|
1456
|
+
"author": "janutter@microsoft.com",
|
|
1457
|
+
"commit": "9a3618b430e9f174505529949ebacf4bccd04858",
|
|
1458
|
+
"package": "@azure/msal-browser"
|
|
1459
|
+
},
|
|
1460
|
+
{
|
|
1461
|
+
"comment": "Export InteractionType (#2438)",
|
|
1462
|
+
"author": "thomas.norling@microsoft.com",
|
|
1463
|
+
"commit": "9fc76a676ed0e157e43e6a9512352fcb29099aae",
|
|
1464
|
+
"package": "@azure/msal-browser"
|
|
1465
|
+
},
|
|
1466
|
+
{
|
|
1467
|
+
"comment": "Add extraQueryParameters to acquireTokenSilent in msal-browser",
|
|
1468
|
+
"author": "janutter@microsoft.com",
|
|
1469
|
+
"commit": "d2132c15c759f33c299761b9869dd1144907c0a8",
|
|
1470
|
+
"package": "@azure/msal-browser"
|
|
1471
|
+
},
|
|
1472
|
+
{
|
|
1473
|
+
"comment": "Fix unexpected interaction_required error in redirect flow (#2404)",
|
|
1474
|
+
"author": "thomas.norling@microsoft.com",
|
|
1475
|
+
"commit": "c22bb29b8880de4bf0b9437a1c2ad48776a9d88f",
|
|
1476
|
+
"package": "@azure/msal-browser"
|
|
1477
|
+
},
|
|
1478
|
+
{
|
|
1479
|
+
"comment": "Adds support for any OIDC-compliant authority (#2389).",
|
|
1480
|
+
"author": "jamckenn@microsoft.com",
|
|
1481
|
+
"commit": "2b6b9ec9033a8b829393e44c3feb7b19b163d2cd",
|
|
1482
|
+
"package": "@azure/msal-browser"
|
|
1483
|
+
}
|
|
1484
|
+
]
|
|
1485
|
+
}
|
|
1486
|
+
},
|
|
1487
|
+
{
|
|
1488
|
+
"date": "Wed, 14 Oct 2020 23:45:07 GMT",
|
|
1489
|
+
"tag": "@azure/msal-browser_v2.3.1",
|
|
1490
|
+
"version": "2.3.1",
|
|
1491
|
+
"comments": {
|
|
1492
|
+
"patch": [
|
|
1493
|
+
{
|
|
1494
|
+
"comment": "Remove rogue console.log() in the BrowserCrypto.ts file and add a lint rule to prevent future issues (#2410)",
|
|
1495
|
+
"author": "prkanher@microsoft.com",
|
|
1496
|
+
"commit": "d2fc6bb778a79d9160474cebfc6c5a52bcf464ff",
|
|
1497
|
+
"package": "@azure/msal-browser"
|
|
1498
|
+
},
|
|
1499
|
+
{
|
|
1500
|
+
"comment": "Check for Headers class when configuring network client",
|
|
1501
|
+
"author": "janutter@microsoft.com",
|
|
1502
|
+
"commit": "15798f723cd9beb8f6160703168f3ff63bcb8793",
|
|
1503
|
+
"package": "@azure/msal-browser"
|
|
1504
|
+
},
|
|
1505
|
+
{
|
|
1506
|
+
"comment": "Update getItem to return ServerTelemetryEntity (#2223)",
|
|
1507
|
+
"author": "thomas.norling@microsoft.com",
|
|
1508
|
+
"commit": "82b982ba38d70d9060e3cf5d9c38e0203b60d963",
|
|
1509
|
+
"package": "@azure/msal-browser"
|
|
1510
|
+
}
|
|
1511
|
+
],
|
|
1512
|
+
"none": [
|
|
1513
|
+
{
|
|
1514
|
+
"comment": "Update docs to explain B2C invite flow (#2392)",
|
|
1515
|
+
"author": "thomas.norling@microsoft.com",
|
|
1516
|
+
"commit": "319fe7bb2f6e2c7ea905d1df10ed7665d64264f3",
|
|
1517
|
+
"package": "@azure/msal-browser"
|
|
1518
|
+
},
|
|
1519
|
+
{
|
|
1520
|
+
"comment": "Update README.md",
|
|
1521
|
+
"author": "prkanher@microsoft.com",
|
|
1522
|
+
"commit": "8f5e957039dfbfb0ecfa42a2f1244873d2f4b5b1",
|
|
1523
|
+
"package": "@azure/msal-browser"
|
|
1524
|
+
},
|
|
1525
|
+
{
|
|
1526
|
+
"comment": "Add enhanced documentation about responseMode in browser (#2228)",
|
|
1527
|
+
"author": "jamckenn@microsoft.com",
|
|
1528
|
+
"commit": "1c098e24d82c19f32dc5c493b76f46a89eca1828",
|
|
1529
|
+
"package": "@azure/msal-browser"
|
|
1530
|
+
}
|
|
1531
|
+
]
|
|
1532
|
+
}
|
|
1533
|
+
},
|
|
1534
|
+
{
|
|
1535
|
+
"date": "Fri, 02 Oct 2020 17:42:35 GMT",
|
|
1536
|
+
"tag": "@azure/msal-browser_v2.3.0",
|
|
1537
|
+
"version": "2.3.0",
|
|
1538
|
+
"comments": {
|
|
1539
|
+
"minor": [
|
|
1540
|
+
{
|
|
1541
|
+
"comment": "Implementation of Access Token Proof-of-Possession Flow (#2151, #2153, #2154, #2209, #2289)",
|
|
1542
|
+
"author": "prkanher@microsoft.com",
|
|
1543
|
+
"commit": "3cffbc99730532bbd0b35f2e3a9df17f032c0675",
|
|
1544
|
+
"package": "@azure/msal-browser"
|
|
1545
|
+
}
|
|
1546
|
+
]
|
|
1547
|
+
}
|
|
1548
|
+
},
|
|
1549
|
+
{
|
|
1550
|
+
"date": "Wed, 30 Sep 2020 17:58:33 GMT",
|
|
1551
|
+
"tag": "@azure/msal-browser_v2.2.1",
|
|
1552
|
+
"version": "2.2.1",
|
|
1553
|
+
"comments": {
|
|
1554
|
+
"patch": [
|
|
1555
|
+
{
|
|
1556
|
+
"comment": "Support SSR in msal-browser (#2073)",
|
|
1557
|
+
"author": "thomas.norling@microsoft.com",
|
|
1558
|
+
"commit": "e697ad8b77313a7f01d21f71f1ca841af87c2459",
|
|
1559
|
+
"package": "@azure/msal-browser"
|
|
1560
|
+
}
|
|
1561
|
+
],
|
|
1562
|
+
"none": [
|
|
1563
|
+
{
|
|
1564
|
+
"comment": "Updating dependency versions and package-lock.json(#2342)",
|
|
1565
|
+
"author": "sameera.gajjarapu@microsoft.com",
|
|
1566
|
+
"commit": "bc3f324edd6cf83937c31f73d3aefc6dbaf5f748",
|
|
1567
|
+
"package": "@azure/msal-browser"
|
|
1568
|
+
}
|
|
1569
|
+
]
|
|
1570
|
+
}
|
|
1571
|
+
},
|
|
1572
|
+
{
|
|
1573
|
+
"date": "Thu, 17 Sep 2020 23:16:22 GMT",
|
|
1574
|
+
"tag": "@azure/msal-browser_v2.2.0",
|
|
1575
|
+
"version": "2.2.0",
|
|
1576
|
+
"comments": {
|
|
1577
|
+
"patch": [
|
|
1578
|
+
{
|
|
1579
|
+
"comment": "Fix issue with base64 encoding of spaces (#2248)",
|
|
1580
|
+
"author": "prkanher@microsoft.com",
|
|
1581
|
+
"commit": "",
|
|
1582
|
+
"package": "@azure/msal-browser"
|
|
1583
|
+
},
|
|
1584
|
+
{
|
|
1585
|
+
"comment": "Properly support multiple concurrent RT requests (#2290)",
|
|
1586
|
+
"author": "janutter@microsoft.com",
|
|
1587
|
+
"commit": "5956762593a9d0d2b23a33d8ad9f94eb5d2342dd",
|
|
1588
|
+
"package": "@azure/msal-browser"
|
|
1589
|
+
},
|
|
1590
|
+
{
|
|
1591
|
+
"comment": "Default scope addition done in msal-common (#2267)",
|
|
1592
|
+
"author": "thomas.norling@microsoft.com",
|
|
1593
|
+
"commit": "3a18b100f38149a35c01cc491a9de78ea505d771",
|
|
1594
|
+
"package": "@azure/msal-browser"
|
|
1595
|
+
},
|
|
1596
|
+
{
|
|
1597
|
+
"comment": "acquireTokenSilent calls ssoSilent (#2264)",
|
|
1598
|
+
"author": "thomas.norling@microsoft.com",
|
|
1599
|
+
"commit": "6923e66fc9ca44c460489b41ff6a4d104ebde864",
|
|
1600
|
+
"package": "@azure/msal-browser"
|
|
1601
|
+
},
|
|
1602
|
+
{
|
|
1603
|
+
"comment": "Check for interaction in progress when processing redirect hash (#2183)",
|
|
1604
|
+
"author": "thomas.norling@microsoft.com",
|
|
1605
|
+
"commit": "40458a19510286c3ad7eba566bdd283d7ba83bfa",
|
|
1606
|
+
"package": "@azure/msal-browser"
|
|
1607
|
+
},
|
|
1608
|
+
{
|
|
1609
|
+
"comment": "Creating ClientApplication.ts subclass (#2199)",
|
|
1610
|
+
"author": "prkanher@microsoft.com",
|
|
1611
|
+
"commit": "6750c4f1aa6a230bac76c37aab185aa04b894a2c",
|
|
1612
|
+
"package": "@azure/msal-browser"
|
|
1613
|
+
},
|
|
1614
|
+
{
|
|
1615
|
+
"comment": "Add SsoSilentRequest for ssoSilent, update tests and samples",
|
|
1616
|
+
"author": "joarroyo@microsoft.com",
|
|
1617
|
+
"commit": "a7e1bb304b93509400405915a4df32e651ec16bf",
|
|
1618
|
+
"package": "@azure/msal-browser"
|
|
1619
|
+
},
|
|
1620
|
+
{
|
|
1621
|
+
"comment": "Add Angular 10 browser sample, update documentation",
|
|
1622
|
+
"author": "joarroyo@microsoft.com",
|
|
1623
|
+
"commit": "98e1960987d13950d080ba5e15b0b17260ec47e2",
|
|
1624
|
+
"package": "@azure/msal-browser"
|
|
1625
|
+
}
|
|
1626
|
+
],
|
|
1627
|
+
"none": [
|
|
1628
|
+
{
|
|
1629
|
+
"comment": "Add name field to AccountInfo (#2288)",
|
|
1630
|
+
"author": "jamckenn@microsoft.com",
|
|
1631
|
+
"commit": "d917d6a91987522f1c4390817966945ce18fa099",
|
|
1632
|
+
"package": "@azure/msal-browser"
|
|
1633
|
+
},
|
|
1634
|
+
{
|
|
1635
|
+
"comment": "Update core, browser, common to use central eslint configuration",
|
|
1636
|
+
"author": "janutter@microsoft.com",
|
|
1637
|
+
"commit": "fc49c6f16b3f7a62a67d249107fc484272133305",
|
|
1638
|
+
"package": "@azure/msal-browser"
|
|
1639
|
+
},
|
|
1640
|
+
{
|
|
1641
|
+
"comment": "Doc updates (#2215)",
|
|
1642
|
+
"author": "thomas.norling@microsoft.com",
|
|
1643
|
+
"commit": "b50572c407dbe3a5f61ebde7d50171e9044cb894",
|
|
1644
|
+
"package": "@azure/msal-browser"
|
|
1645
|
+
},
|
|
1646
|
+
{
|
|
1647
|
+
"comment": "Doc updates",
|
|
1648
|
+
"author": "thomas.norling@microsoft.com",
|
|
1649
|
+
"commit": "a89fcea6df5c806a99de9e38ca67816910c93883",
|
|
1650
|
+
"package": "@azure/msal-browser"
|
|
1651
|
+
},
|
|
1652
|
+
{
|
|
1653
|
+
"comment": "update cdn hash for v2.1.0",
|
|
1654
|
+
"author": "prkanher@microsoft.com",
|
|
1655
|
+
"commit": "14acf773f07700f8dd9bac1459e204d97385eb84",
|
|
1656
|
+
"package": "@azure/msal-browser"
|
|
1657
|
+
},
|
|
1658
|
+
{
|
|
1659
|
+
"comment": "Fix Unit Tests (#2191)",
|
|
1660
|
+
"author": "thomas.norling@microsoft.com",
|
|
1661
|
+
"commit": "f0f2d5c884431a93f32e50d78b2f29b83e6f0449",
|
|
1662
|
+
"package": "@azure/msal-browser"
|
|
1663
|
+
},
|
|
1664
|
+
{
|
|
1665
|
+
"comment": "Updating CDN docs",
|
|
1666
|
+
"author": "prkanher@microsoft.com",
|
|
1667
|
+
"commit": "f831b9f079665b839168a27badd2f9dcbe884214",
|
|
1668
|
+
"package": "@azure/msal-browser"
|
|
1669
|
+
},
|
|
1670
|
+
{
|
|
1671
|
+
"comment": "none",
|
|
1672
|
+
"author": "sameera.gajjarapu@microsoft.com",
|
|
1673
|
+
"commit": "9760b6ff6c0ad403ac1b26968cb10d3d7e72a6fd",
|
|
1674
|
+
"package": "@azure/msal-browser"
|
|
1675
|
+
}
|
|
1676
|
+
],
|
|
1677
|
+
"minor": [
|
|
1678
|
+
{
|
|
1679
|
+
"comment": "Added client-side throttling to enhance server stability (#1907)",
|
|
1680
|
+
"author": "jamckenn@microsoft.com",
|
|
1681
|
+
"commit": "91a1dba29dbfb8f6fc329c0381767d6b6f661281",
|
|
1682
|
+
"package": "@azure/msal-browser"
|
|
1683
|
+
}
|
|
1684
|
+
]
|
|
1685
|
+
}
|
|
1686
|
+
},
|
|
1687
|
+
{
|
|
1688
|
+
"date": "Tue, 25 Aug 2020 00:40:45 GMT",
|
|
1689
|
+
"tag": "@azure/msal-browser_v2.1.0",
|
|
1690
|
+
"version": "2.1.0",
|
|
1691
|
+
"comments": {
|
|
1692
|
+
"patch": [
|
|
1693
|
+
{
|
|
1694
|
+
"comment": "update APP_META_DATA to APP_METADATA",
|
|
1695
|
+
"author": "sameera.gajjarapu@microsoft.com",
|
|
1696
|
+
"commit": "282035aecb07956dca323d65275fdaa703c4a325",
|
|
1697
|
+
"package": "@azure/msal-browser"
|
|
1698
|
+
},
|
|
1699
|
+
{
|
|
1700
|
+
"comment": "Add getAccountByHomeId API (#2114)",
|
|
1701
|
+
"author": "thomas.norling@microsoft.com",
|
|
1702
|
+
"commit": "40b1716fec63893f57762f37b55944f6c8c86e21",
|
|
1703
|
+
"package": "@azure/msal-browser"
|
|
1704
|
+
},
|
|
1705
|
+
{
|
|
1706
|
+
"comment": "Change msal-browser loginPopup and openPopup, add ability to configure popup delay (#2132)",
|
|
1707
|
+
"author": "joarroyo@microsoft.com",
|
|
1708
|
+
"commit": "61a1173a2cb96170b8898973c7ea3ede435cffa2",
|
|
1709
|
+
"package": "@azure/msal-browser"
|
|
1710
|
+
},
|
|
1711
|
+
{
|
|
1712
|
+
"comment": "Update POST header to type Record (#2128)",
|
|
1713
|
+
"author": "thomas.norling@microsoft.com",
|
|
1714
|
+
"commit": "c9b65c59797cd3240aad2b4f1e0e866a90373c4a",
|
|
1715
|
+
"package": "@azure/msal-browser"
|
|
1716
|
+
}
|
|
1717
|
+
],
|
|
1718
|
+
"minor": [
|
|
1719
|
+
{
|
|
1720
|
+
"comment": "Client Capabilities Support (#2169)",
|
|
1721
|
+
"author": "thomas.norling@microsoft.com",
|
|
1722
|
+
"commit": "0cdad1b8a3855b2414be9740862df29524897a22",
|
|
1723
|
+
"package": "@azure/msal-browser"
|
|
1724
|
+
}
|
|
1725
|
+
]
|
|
1726
|
+
}
|
|
1727
|
+
},
|
|
1728
|
+
{
|
|
1729
|
+
"date": "Thu, 13 Aug 2020 02:20:48 GMT",
|
|
1730
|
+
"tag": "@azure/msal-browser_v2.0.2",
|
|
1731
|
+
"version": "2.0.2",
|
|
1732
|
+
"comments": {
|
|
1733
|
+
"patch": [
|
|
1734
|
+
{
|
|
1735
|
+
"comment": "Fix hash parsing issue from #2118 and back button cache clearing (#2129)",
|
|
1736
|
+
"author": "prkanher@microsoft.com",
|
|
1737
|
+
"commit": "10ab51ecd9e4bb1ba1668972b693055310c65736",
|
|
1738
|
+
"package": "@azure/msal-browser"
|
|
1739
|
+
}
|
|
1740
|
+
],
|
|
1741
|
+
"none": [
|
|
1742
|
+
{
|
|
1743
|
+
"comment": "Update Migration Guide (#2111)",
|
|
1744
|
+
"author": "thomas.l.norling@gmail.com",
|
|
1745
|
+
"commit": "671ababe31fe86f8e702507d261101e50548346d",
|
|
1746
|
+
"package": "@azure/msal-browser"
|
|
1747
|
+
},
|
|
1748
|
+
{
|
|
1749
|
+
"comment": "Add beachball config",
|
|
1750
|
+
"author": "prkanher@microsoft.com",
|
|
1751
|
+
"commit": "50d9a9533b07a4a5bf7833bd6a5d0d35798c4903",
|
|
1752
|
+
"package": "@azure/msal-browser"
|
|
1753
|
+
}
|
|
1754
|
+
]
|
|
1755
|
+
}
|
|
1756
|
+
}
|
|
1757
|
+
]
|
|
1758
|
+
}
|