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