@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.md
DELETED
|
@@ -1,523 +0,0 @@
|
|
|
1
|
-
# Change Log - @azure/msal-browser
|
|
2
|
-
|
|
3
|
-
This log was last generated on Tue, 07 Dec 2021 00:17:01 GMT and should not be manually modified.
|
|
4
|
-
|
|
5
|
-
<!-- Start content -->
|
|
6
|
-
|
|
7
|
-
## 2.20.0
|
|
8
|
-
|
|
9
|
-
Tue, 07 Dec 2021 00:17:01 GMT
|
|
10
|
-
|
|
11
|
-
### Minor changes
|
|
12
|
-
|
|
13
|
-
- Add acquireTokenByCode API for hybrid spa flow #3978 (janutter@microsoft.com)
|
|
14
|
-
- Bump @azure/msal-common to v5.2.0
|
|
15
|
-
|
|
16
|
-
### Patches
|
|
17
|
-
|
|
18
|
-
- Fix circular dependencies in AuthenticationHeaderParser and AsyncMemoryStorage #4235 (hemoral@microsoft.com)
|
|
19
|
-
|
|
20
|
-
## 2.19.0
|
|
21
|
-
|
|
22
|
-
Mon, 01 Nov 2021 23:53:21 GMT
|
|
23
|
-
|
|
24
|
-
### Minor changes
|
|
25
|
-
|
|
26
|
-
- Add support for in-memory storage of token binding keys #4183 (hemoral@microsoft.com)
|
|
27
|
-
- Add support for ephemeral SSH certificate acquisition #4178 (hemoral@microsoft.com)
|
|
28
|
-
- Add support for in-memory storage of token binding keys #4183 (hemoral@microsoft.com)
|
|
29
|
-
- Add support for SHR nonce #3999 (hemoral@microsoft.com)
|
|
30
|
-
- Bump @azure/msal-common to v5.1.0
|
|
31
|
-
|
|
32
|
-
### Patches
|
|
33
|
-
|
|
34
|
-
- Add support for different key types in IndexedDB storage #4052 (hemoral@microsoft.com)
|
|
35
|
-
- Ensure correlation is passed to all interaction clients in acquireTokenSilent #4186 (janutter@microsoft.com)
|
|
36
|
-
- Fix typo in noTokenRequestCacheError (#4136) (Michael.Currie@rjwgroup.com)
|
|
37
|
-
- Fix redirect processing when allowRedirectInIframe: true #4142 (thomas.norling@microsoft.com)
|
|
38
|
-
|
|
39
|
-
## 2.18.0
|
|
40
|
-
|
|
41
|
-
Mon, 04 Oct 2021 23:12:35 GMT
|
|
42
|
-
|
|
43
|
-
### Minor changes
|
|
44
|
-
|
|
45
|
-
- Emit event when user logs in or out from a different tab or window #3981 (thomas.norling@microsoft.com)
|
|
46
|
-
- Remove requirement of user hint on ssoSilent API #4123 (prkanher@microsoft.com)
|
|
47
|
-
- Bump @azure/msal-common to v5.0.1
|
|
48
|
-
|
|
49
|
-
### Patches
|
|
50
|
-
|
|
51
|
-
- Consistently export error types and messages for errors thrown by MSAL #4117 (jagore@microsoft.com)
|
|
52
|
-
- Move helper functions up to BaseInteractionClient #4049 (thomas.norling@microsoft.com)
|
|
53
|
-
- Export library version #4124 (thomas.norling@microsoft.com)
|
|
54
|
-
|
|
55
|
-
## 2.17.0
|
|
56
|
-
|
|
57
|
-
Tue, 07 Sep 2021 23:22:24 GMT
|
|
58
|
-
|
|
59
|
-
### Minor changes
|
|
60
|
-
|
|
61
|
-
- Add configuration for popup window size and placement #3946 (joarroyo@microsoft.com)
|
|
62
|
-
- Add API to sideload tokens to msal-browser #3895 (joarroyo@microsoft.com)
|
|
63
|
-
- Add SignedHttpRequest class #3058 (janutter@microsoft.com)
|
|
64
|
-
- Refactor acquireToken logic into InteractionClients #3871 (thomas.norling@microsoft.com)
|
|
65
|
-
|
|
66
|
-
### Patches
|
|
67
|
-
|
|
68
|
-
- Clear cache before constructing logout url #3982 (thomas.norling@microsoft.com)
|
|
69
|
-
- Add pop params to request thumbprint #3973 (hemoral@microsoft.com)
|
|
70
|
-
- Update ADAL to MSAL SSO logic to use preferred_username instead of upn by default #3945 (ellymakuba@microsoft.com)
|
|
71
|
-
- Populate msal v2 loginHint from cached msal v1 id token #4027 (janutter@microsoft.com)
|
|
72
|
-
- Throw interaction in progress if any msal instance has interaction in progress #4014 (thomas.norling@microsoft.com)
|
|
73
|
-
- Only emit handleRedirect start event on first invocation of handleRedirectPromise #4013 (thomas.norling@microsoft.com)
|
|
74
|
-
- Add correlationId to AuthenticationResult type #3947 (thomas.norling@microsoft.com)
|
|
75
|
-
- Remove token binding key from key store when refreshing pop token #3500 (hemoral@microsoft.com)
|
|
76
|
-
- Fix clearing active account on logout #3948 (hemoral@microsoft.com)
|
|
77
|
-
- Add correlationId to errors thrown #3930 (thomas.norling@microsoft.com)
|
|
78
|
-
|
|
79
|
-
## 2.16.0
|
|
80
|
-
|
|
81
|
-
Thu, 22 Jul 2021 22:50:22 GMT
|
|
82
|
-
|
|
83
|
-
### Minor changes
|
|
84
|
-
|
|
85
|
-
- Msal-Browser supports parallel silent requests #3837 (joarroyo@microsoft.com)
|
|
86
|
-
- Persist active account #3755 (thomas.norling@microsoft.com)
|
|
87
|
-
|
|
88
|
-
### Patches
|
|
89
|
-
|
|
90
|
-
- Add fix for loginRedirect failure when angular index.html base href is different from the origin (#3875) (rishanthakumar@gmail.com)
|
|
91
|
-
- fix: fixing the npm audit issues (samuelkamau@microsoft.com)
|
|
92
|
-
- Expose isInPopup helper function #3825 (thomas.norling@microsoft.com)
|
|
93
|
-
|
|
94
|
-
## 2.15.0
|
|
95
|
-
|
|
96
|
-
Mon, 28 Jun 2021 23:39:48 GMT
|
|
97
|
-
|
|
98
|
-
### Minor changes
|
|
99
|
-
|
|
100
|
-
- Add correlationId to log messages #3601 (joarroyo@microsoft.com)
|
|
101
|
-
- Add CCS parameters to headers or form_data #3636 (prkanher@microsoft.com)
|
|
102
|
-
|
|
103
|
-
### Patches
|
|
104
|
-
|
|
105
|
-
- Update monitor_window_timeout error message with link to error docs #3783 (thomas.norling@microsoft.com)
|
|
106
|
-
- Refactor event APIs into EventHandler class #3770 (thomas.norling@microsoft.com)
|
|
107
|
-
- Fix logoutPopup parameter type on IPublicClientApplication #3663 (thomas.norling@microsoft.com)
|
|
108
|
-
|
|
109
|
-
## 2.14.2
|
|
110
|
-
|
|
111
|
-
Wed, 12 May 2021 18:35:03 GMT
|
|
112
|
-
|
|
113
|
-
### Patches
|
|
114
|
-
|
|
115
|
-
- Adjust log messages #3589 (joarroyo@microsoft.com)
|
|
116
|
-
- Fix hash removal from URL and browser history after interactive request #3609 (hemoral@microsoft.com)
|
|
117
|
-
- Update account equality check #3527 (thomas.norling@microsoft.com)
|
|
118
|
-
- Close popup if error is thrown before popup window navigation occurs #3572 (thomas.norling@microsoft.com)
|
|
119
|
-
- change msal-browser/msal-common to preserveModules to enable tree-shaking #3300 (oo.thomas96@gmail.com)
|
|
120
|
-
|
|
121
|
-
## 2.14.1
|
|
122
|
-
|
|
123
|
-
Thu, 22 Apr 2021 23:26:08 GMT
|
|
124
|
-
|
|
125
|
-
### Patches
|
|
126
|
-
|
|
127
|
-
- Add .browserslistrc #3471 (thomas.norling@microsoft.com)
|
|
128
|
-
- Look for temp cache items in local storage as fallback #3509 (janutter@microsoft.com)
|
|
129
|
-
|
|
130
|
-
## 2.14.0
|
|
131
|
-
|
|
132
|
-
Wed, 14 Apr 2021 18:39:53 GMT
|
|
133
|
-
|
|
134
|
-
### Minor changes
|
|
135
|
-
|
|
136
|
-
- Add support for AccessToken_With_AuthScheme credential type #3426 (hectormgdev@gmail.com)
|
|
137
|
-
|
|
138
|
-
### Patches
|
|
139
|
-
|
|
140
|
-
- Make SHR parameters optional (#3320) (hemoral@microsoft.com)
|
|
141
|
-
|
|
142
|
-
## 2.13.1
|
|
143
|
-
|
|
144
|
-
Wed, 31 Mar 2021 22:25:57 GMT
|
|
145
|
-
|
|
146
|
-
### Patches
|
|
147
|
-
|
|
148
|
-
- Export PopupEvent #3360 (joarroyo@microsoft.com)
|
|
149
|
-
|
|
150
|
-
## 2.13.0
|
|
151
|
-
|
|
152
|
-
Wed, 24 Mar 2021 22:55:46 GMT
|
|
153
|
-
|
|
154
|
-
### Minor changes
|
|
155
|
-
|
|
156
|
-
- Add logoutPopup API #3044 (thomas.norling@microsoft.com)
|
|
157
|
-
|
|
158
|
-
### Patches
|
|
159
|
-
|
|
160
|
-
- Fix errors thrown on cache lookups when reading non-msal cache values #3245 (thomas.norling@microsoft.com)
|
|
161
|
-
- Update blockReloadInIframe error message with link to error doc #3294 (thomas.norling@microsoft.com)
|
|
162
|
-
- Block nested popups #3249 (thomas.norling@microsoft.com)
|
|
163
|
-
|
|
164
|
-
## 2.12.1
|
|
165
|
-
|
|
166
|
-
Mon, 15 Mar 2021 23:45:17 GMT
|
|
167
|
-
|
|
168
|
-
### Patches
|
|
169
|
-
|
|
170
|
-
- Clear temporary cache cookies on page load #3129 (prkanher@microsoft.com)
|
|
171
|
-
- Throw BrowserAuthError when fetch fails #3146 (thomas.norling@microsoft.com)
|
|
172
|
-
|
|
173
|
-
## 2.12.0
|
|
174
|
-
|
|
175
|
-
Wed, 03 Mar 2021 21:47:05 GMT
|
|
176
|
-
|
|
177
|
-
### Minor changes
|
|
178
|
-
|
|
179
|
-
- Add option to make MSAL browser cookies secure (#3001) (hemoral@microsoft.com)
|
|
180
|
-
- Add setNavigationClient API and expose INavigationClient interface (#2985) (thomas.norling@microsoft.com)
|
|
181
|
-
|
|
182
|
-
### Patches
|
|
183
|
-
|
|
184
|
-
- Separate telemetry for ssoSilent and ATS iframe renewal (#3064) (thomas.norling@microsoft.com)
|
|
185
|
-
- Add instrumentation to msal-browser (#3004) (joarroyo@microsoft.com)
|
|
186
|
-
- Memoize multiple calls to handleRedirectPromise (#3072) (thomas.norling@microsoft.com)
|
|
187
|
-
|
|
188
|
-
## 2.11.2
|
|
189
|
-
|
|
190
|
-
Thu, 18 Feb 2021 00:34:32 GMT
|
|
191
|
-
|
|
192
|
-
### Patches
|
|
193
|
-
|
|
194
|
-
- Ensure scrollbars are enabled for popups in browser (janutter@microsoft.com)
|
|
195
|
-
|
|
196
|
-
## 2.11.1
|
|
197
|
-
|
|
198
|
-
Tue, 09 Feb 2021 01:48:22 GMT
|
|
199
|
-
|
|
200
|
-
### Patches
|
|
201
|
-
|
|
202
|
-
- Fix version.json import errors (#2993) (thomas.norling@microsoft.com)
|
|
203
|
-
- Add missing network types to browser exports (#2995) (prkanher@microsoft.com)
|
|
204
|
-
- Ignore OIDC scopes during cache lookup or replacement (#2969) (prkanher@microsoft.com)
|
|
205
|
-
- Allow apps to not use the current page as default postLogoutRedirectUri in MSAL Browser (#2789) (janutter@microsoft.com)
|
|
206
|
-
- Fix PCA stub errors (#2963) (thomas.norling@microsoft.com)
|
|
207
|
-
|
|
208
|
-
## 2.11.0
|
|
209
|
-
|
|
210
|
-
Tue, 02 Feb 2021 01:56:47 GMT
|
|
211
|
-
|
|
212
|
-
### Minor changes
|
|
213
|
-
|
|
214
|
-
- Add initializeWrapperLibrary API (#2845) (thomas.norling@microsoft.com)
|
|
215
|
-
- Add getInteractionStatusFromEvent to msal-browser (#2885) (joarroyo@microsoft.com)
|
|
216
|
-
|
|
217
|
-
### Patches
|
|
218
|
-
|
|
219
|
-
- Fix temp cache cleanup when using localStorage (#2935) (thomas.norling@microsoft.com)
|
|
220
|
-
- Get package version from version.json (#2915) (thomas.norling@microsoft.com)
|
|
221
|
-
|
|
222
|
-
## 2.10.0
|
|
223
|
-
|
|
224
|
-
Thu, 21 Jan 2021 21:48:01 GMT
|
|
225
|
-
|
|
226
|
-
### Minor changes
|
|
227
|
-
|
|
228
|
-
- Authority metadata caching (#2758) (thomas.norling@microsoft.com)
|
|
229
|
-
|
|
230
|
-
### Patches
|
|
231
|
-
|
|
232
|
-
- Fix handling of multiple popup windows (#2842) (janutter@microsoft.com)
|
|
233
|
-
- redirectStartPage supports relative URIs (#2866) (thomas.norling@microsoft.com)
|
|
234
|
-
|
|
235
|
-
## 2.9.0
|
|
236
|
-
|
|
237
|
-
Tue, 12 Jan 2021 00:51:26 GMT
|
|
238
|
-
|
|
239
|
-
### Minor changes
|
|
240
|
-
|
|
241
|
-
- Adding an active account API to PublicClientApplication (#2728) (prkanher@microsoft.com)
|
|
242
|
-
- Add internal in-memory storage to BrowserCacheManager (#2765) (thomas.norling@microsoft.com)
|
|
243
|
-
- Enable strict TypeScript option (#2792) (thomas.norling@microsoft.com)
|
|
244
|
-
|
|
245
|
-
## 2.8.0
|
|
246
|
-
|
|
247
|
-
Mon, 07 Dec 2020 22:19:03 GMT
|
|
248
|
-
|
|
249
|
-
### Minor changes
|
|
250
|
-
|
|
251
|
-
- Enable the instance_aware flow (#1804) (prkanher@microsoft.com)
|
|
252
|
-
|
|
253
|
-
### Patches
|
|
254
|
-
|
|
255
|
-
- Fix clearing of temporary cache items (#2696) (thomas.norling@microsoft.com)
|
|
256
|
-
- Add exports to index.ts (#2680) (joarroyo@microsoft.com)
|
|
257
|
-
- Expose idTokenClaims on AccountInfo (#2554) (janutter@microsoft.com)
|
|
258
|
-
- Add onRedirectNavigate to redirect operations in browser (#2669) (janutter@microsoft.com)
|
|
259
|
-
- Update Internal PCA Configuration (#2602) (thomas.norling@microsoft.com)
|
|
260
|
-
- Add allowRedirectInIframe flag to browser (#2593) (janutter@microsoft.com)
|
|
261
|
-
- Log messages contain package name and version (#2589) (thomas.norling@microsoft.com)
|
|
262
|
-
- Update request types (#2512) (thomas.norling@microsoft.com)
|
|
263
|
-
|
|
264
|
-
## 2.7.0
|
|
265
|
-
|
|
266
|
-
Wed, 11 Nov 2020 23:33:20 GMT
|
|
267
|
-
|
|
268
|
-
### Minor changes
|
|
269
|
-
|
|
270
|
-
- Support relative paths on redirectUri parameter (#2560) (thomas.norling@microsoft.com)
|
|
271
|
-
|
|
272
|
-
### Patches
|
|
273
|
-
|
|
274
|
-
- Adds getAccountByLocalId to PCA Interface (#2588) (thomas.norling@microsoft.com)
|
|
275
|
-
- Add navigateFrameWait and change loadFrameTimeout to browser to match core behavior (#2545) (janutter@microsoft.com)
|
|
276
|
-
|
|
277
|
-
## 2.6.1
|
|
278
|
-
|
|
279
|
-
Tue, 10 Nov 2020 01:48:44 GMT
|
|
280
|
-
|
|
281
|
-
### Patches
|
|
282
|
-
|
|
283
|
-
- Export stubbed PCA instance (#2540) (thomas.norling@microsoft.com)
|
|
284
|
-
|
|
285
|
-
## 2.6.0
|
|
286
|
-
|
|
287
|
-
Sat, 07 Nov 2020 01:50:14 GMT
|
|
288
|
-
|
|
289
|
-
### Minor changes
|
|
290
|
-
|
|
291
|
-
- Fixing a bug and adding `localAccountId` in AccountInfo interface (#2516) (sameera.gajjarapu@microsoft.com)
|
|
292
|
-
|
|
293
|
-
## 2.5.2
|
|
294
|
-
|
|
295
|
-
Mon, 02 Nov 2020 23:33:39 GMT
|
|
296
|
-
|
|
297
|
-
### Patches
|
|
298
|
-
|
|
299
|
-
- Fix JSON.parse issue and cache value validation (#2527) (prkanher@microsoft.com)
|
|
300
|
-
|
|
301
|
-
## 2.5.1
|
|
302
|
-
|
|
303
|
-
Fri, 30 Oct 2020 00:52:19 GMT
|
|
304
|
-
|
|
305
|
-
### Patches
|
|
306
|
-
|
|
307
|
-
- Restore string to cacheLocation type (#2523) (janutter@microsoft.com)
|
|
308
|
-
|
|
309
|
-
## 2.5.0
|
|
310
|
-
|
|
311
|
-
Thu, 29 Oct 2020 20:36:48 GMT
|
|
312
|
-
|
|
313
|
-
### Minor changes
|
|
314
|
-
|
|
315
|
-
- Add getLogger and setLogger to msal-browser (#2513) (joarroyo@microsoft.com)
|
|
316
|
-
- Adding memory storage option for cache location (#2481) (prkanher@microsoft.com)
|
|
317
|
-
|
|
318
|
-
### Patches
|
|
319
|
-
|
|
320
|
-
- Add handleRedirect End Event (#2518) (thomas.norling@microsoft.com)
|
|
321
|
-
- Ensure history.replaceState is a function (janutter@microsoft.com)
|
|
322
|
-
- Allow hash to be passed into handleRedirectPromise, reset non-msal after processing (janutter@microsoft.com)
|
|
323
|
-
|
|
324
|
-
## 2.4.1
|
|
325
|
-
|
|
326
|
-
Mon, 26 Oct 2020 21:00:29 GMT
|
|
327
|
-
|
|
328
|
-
### Patches
|
|
329
|
-
|
|
330
|
-
- msal-browser and msal-node cache Interfaces to msal-common updated (#2415) (sameera.gajjarapu@microsoft.com)
|
|
331
|
-
|
|
332
|
-
## 2.4.0
|
|
333
|
-
|
|
334
|
-
Tue, 20 Oct 2020 23:47:28 GMT
|
|
335
|
-
|
|
336
|
-
### Minor changes
|
|
337
|
-
|
|
338
|
-
- Add removeEventCallback API (#2462) (thomas.norling@microsoft.com)
|
|
339
|
-
- Add event api to msal-browser (#2394) (joarroyo@microsoft.com)
|
|
340
|
-
|
|
341
|
-
### Patches
|
|
342
|
-
|
|
343
|
-
- Use history API to clear hash for msal-browser (janutter@microsoft.com)
|
|
344
|
-
- Export InteractionType (#2438) (thomas.norling@microsoft.com)
|
|
345
|
-
- Add extraQueryParameters to acquireTokenSilent in msal-browser (janutter@microsoft.com)
|
|
346
|
-
- Fix unexpected interaction_required error in redirect flow (#2404) (thomas.norling@microsoft.com)
|
|
347
|
-
- Adds support for any OIDC-compliant authority (#2389). (jamckenn@microsoft.com)
|
|
348
|
-
|
|
349
|
-
## 2.3.1
|
|
350
|
-
|
|
351
|
-
Wed, 14 Oct 2020 23:45:07 GMT
|
|
352
|
-
|
|
353
|
-
### Patches
|
|
354
|
-
|
|
355
|
-
- Remove rogue console.log() in the BrowserCrypto.ts file and add a lint rule to prevent future issues (#2410) (prkanher@microsoft.com)
|
|
356
|
-
- Check for Headers class when configuring network client (janutter@microsoft.com)
|
|
357
|
-
- Update getItem to return ServerTelemetryEntity (#2223) (thomas.norling@microsoft.com)
|
|
358
|
-
|
|
359
|
-
## 2.3.0
|
|
360
|
-
|
|
361
|
-
Fri, 02 Oct 2020 17:42:35 GMT
|
|
362
|
-
|
|
363
|
-
### Minor changes
|
|
364
|
-
|
|
365
|
-
- Implementation of Access Token Proof-of-Possession Flow (#2151, #2153, #2154, #2209, #2289) (prkanher@microsoft.com)
|
|
366
|
-
|
|
367
|
-
## 2.2.1
|
|
368
|
-
|
|
369
|
-
Wed, 30 Sep 2020 17:58:33 GMT
|
|
370
|
-
|
|
371
|
-
### Patches
|
|
372
|
-
|
|
373
|
-
- Support SSR in msal-browser (#2073) (thomas.norling@microsoft.com)
|
|
374
|
-
|
|
375
|
-
## 2.2.0
|
|
376
|
-
|
|
377
|
-
Thu, 17 Sep 2020 23:16:22 GMT
|
|
378
|
-
|
|
379
|
-
### Minor changes
|
|
380
|
-
|
|
381
|
-
- Added client-side throttling to enhance server stability (#1907) (jamckenn@microsoft.com)
|
|
382
|
-
|
|
383
|
-
### Patches
|
|
384
|
-
|
|
385
|
-
- Fix issue with base64 encoding of spaces (#2248) (prkanher@microsoft.com)
|
|
386
|
-
- Properly support multiple concurrent RT requests (#2290) (janutter@microsoft.com)
|
|
387
|
-
- Default scope addition done in msal-common (#2267) (thomas.norling@microsoft.com)
|
|
388
|
-
- acquireTokenSilent calls ssoSilent (#2264) (thomas.norling@microsoft.com)
|
|
389
|
-
- Check for interaction in progress when processing redirect hash (#2183) (thomas.norling@microsoft.com)
|
|
390
|
-
- Creating ClientApplication.ts subclass (#2199) (prkanher@microsoft.com)
|
|
391
|
-
- Add SsoSilentRequest for ssoSilent, update tests and samples (joarroyo@microsoft.com)
|
|
392
|
-
- Add Angular 10 browser sample, update documentation (joarroyo@microsoft.com)
|
|
393
|
-
|
|
394
|
-
## 2.1.0
|
|
395
|
-
|
|
396
|
-
Tue, 25 Aug 2020 00:40:45 GMT
|
|
397
|
-
|
|
398
|
-
### Minor changes
|
|
399
|
-
|
|
400
|
-
- Client Capabilities Support (#2169) (thomas.norling@microsoft.com)
|
|
401
|
-
|
|
402
|
-
### Patches
|
|
403
|
-
|
|
404
|
-
- update APP_META_DATA to APP_METADATA (sameera.gajjarapu@microsoft.com)
|
|
405
|
-
- Add getAccountByHomeId API (#2114) (thomas.norling@microsoft.com)
|
|
406
|
-
- Change msal-browser loginPopup and openPopup, add ability to configure popup delay (#2132) (joarroyo@microsoft.com)
|
|
407
|
-
- Update POST header to type Record (#2128) (thomas.norling@microsoft.com)
|
|
408
|
-
|
|
409
|
-
## 2.0.2
|
|
410
|
-
|
|
411
|
-
Thu, 13 Aug 2020 02:20:48 GMT
|
|
412
|
-
|
|
413
|
-
### Patches
|
|
414
|
-
|
|
415
|
-
- Fix hash parsing issue from #2118 and back button cache clearing (#2129) (prkanher@microsoft.com)
|
|
416
|
-
|
|
417
|
-
# 2.0.1
|
|
418
|
-
## Breaking Changes
|
|
419
|
-
* None
|
|
420
|
-
|
|
421
|
-
## Features and Fixes
|
|
422
|
-
* Make request object optional for login APIs in PublicClientApplication (#2061)
|
|
423
|
-
* Fix `getAccountByUsername()` API signatures to return null (#2059)
|
|
424
|
-
* (#2078) Fix issues with `handleRedirectPromise()` where:
|
|
425
|
-
* state mismatches occur if `handleRedirectPromise()` is called multiple times.
|
|
426
|
-
* `currentUrl` and `loginRequestUrl` being evaluated as not equal if one has a trailing slash and the other does not
|
|
427
|
-
* When `loginRequestUrl` is not in the cache, msal redirects to the homepage but would not process the hash
|
|
428
|
-
* Add `sid` from `AuthorizationUrlRequest` to SSO check in `ssoSilent()` (#2030)
|
|
429
|
-
* Add interaction type to platform state and check before processing hash (#2045)
|
|
430
|
-
* Implements telemetry error calculation and caching for server telemetry information in browser scenarios (#1918)
|
|
431
|
-
* Fix promise handling in PublicClientApplication (#2091)
|
|
432
|
-
|
|
433
|
-
# 2.0.0
|
|
434
|
-
## Breaking Changes
|
|
435
|
-
* None
|
|
436
|
-
|
|
437
|
-
## Features and Fixes
|
|
438
|
-
* Fix an issue where logout was not clearing all accounts (#1919)
|
|
439
|
-
* Typescript sample for browser (#1920)
|
|
440
|
-
* Add SilentRequest.ts object (#1964)
|
|
441
|
-
* Fix an issue where popup window position value did not have a floor (#1981)
|
|
442
|
-
* Fix an issue where getAccountByUsername was case-sensitive for the given username (#1982)
|
|
443
|
-
* Fix an issue where `openid` and `profile` were being added to silent requests (#1962)
|
|
444
|
-
* Fix an issue where the hash was not handled if `navigateToLoginRequestUrl`=`false` (#1973)
|
|
445
|
-
* Fix an error that occurs when the request object is not provided to login and the redirectStartPage is expected (#1998)
|
|
446
|
-
|
|
447
|
-
# 2.0.0-beta.4
|
|
448
|
-
## Breaking Changes
|
|
449
|
-
* Updated all APIs to send `openid` and `profile` by default in all requests (#1868)
|
|
450
|
-
|
|
451
|
-
## Features and Fixes
|
|
452
|
-
* add interface for PublicClientApplication (#1870)
|
|
453
|
-
* Update `monitorIframeForHash` to be purely time-based (#1873)
|
|
454
|
-
* Instantiate Logger instance for PublicClientApplication (#1882)
|
|
455
|
-
* Fix an issue with encoding in cookies and state values (#1852)
|
|
456
|
-
* Fix issue where cache isn't being cleaned correctly (#1856)
|
|
457
|
-
* Fix issue where expiration isn't calculated correctly (#1860)
|
|
458
|
-
* Fix an issue where the crypto APIs were not truly random (#1872)
|
|
459
|
-
* Remove all non-application specific initialization from PublicClientApplication constructor (#1885, #1886)
|
|
460
|
-
* Added support for IE11 (#1883, #1884)
|
|
461
|
-
* Added support for redirection to pages with custom hashes or query params (#1862)
|
|
462
|
-
* Remove deprecated `handleRedirectCallback()` API (#1863)
|
|
463
|
-
* Remove function typings for `redirectUri` and `postLogoutRedirectUri` (#1861).
|
|
464
|
-
* Add support for Instance Discovery, combine all authority classes into a single generic class (#1811)
|
|
465
|
-
|
|
466
|
-
# 2.0.0-beta.3
|
|
467
|
-
## Breaking Changes
|
|
468
|
-
* `@azure/msal-browser` now follows a unified cache schema similar to other MSAL libraries (#1624, #1655, #1680, #1711, #1762, #1771)
|
|
469
|
-
* Updated browser library to follow common format for request, response, and client configurations (#1682, #1711, #1762, #1770, #1771, #1793)
|
|
470
|
-
* Account interface updated to AccountInfo.ts (#1789)
|
|
471
|
-
|
|
472
|
-
## Features and Fixes
|
|
473
|
-
* add `setKnownAuthorities` to constructor call for B2C Authority scenarios (#1646)
|
|
474
|
-
* Library state is now sent as a encoded JSON object (#1790)
|
|
475
|
-
* Added a request object for logout APIs, made logout async (#1802)
|
|
476
|
-
|
|
477
|
-
# 2.0.0-beta.2
|
|
478
|
-
* Fixed an issue where the system config values were being overwritten with `undefined` (#1631)
|
|
479
|
-
|
|
480
|
-
# 2.0.0-beta.1
|
|
481
|
-
## Features
|
|
482
|
-
* Added a silent iframe flow in the @azure/msal-browser package (#1451)
|
|
483
|
-
* Includes an ssoSilent() API to acquire tokens silently with a user context (loginHint)
|
|
484
|
-
|
|
485
|
-
## Bugs
|
|
486
|
-
* Fixed an issue where TokenResponse is not exported
|
|
487
|
-
|
|
488
|
-
## Enhancements
|
|
489
|
-
* handleRedirectCallback flow was modified, will be deprecated in favor of handleRedirectPromise(), added log message (#1490, #1543)
|
|
490
|
-
|
|
491
|
-
# 2.0.0-beta.0
|
|
492
|
-
## Features
|
|
493
|
-
* Removed client_secret from config and added docs for new registration experience (#1421)
|
|
494
|
-
|
|
495
|
-
## Enhancements
|
|
496
|
-
* Test pipelines in place. (#1393)
|
|
497
|
-
* Added docs and samples. (#1421, #1321)
|
|
498
|
-
|
|
499
|
-
## Bugs
|
|
500
|
-
* Minor bug fixes from unit testing. (#1236)
|
|
501
|
-
* navigateToLoginRequestUrl works correctly (#1320)
|
|
502
|
-
|
|
503
|
-
# 2.0.0-alpha.0
|
|
504
|
-
## Features
|
|
505
|
-
* Added Rollup as build tool (#1108)
|
|
506
|
-
* Added APIs and major type files (#1109)
|
|
507
|
-
* Added tests and code coverage (#1127)
|
|
508
|
-
* Added Authority and protocol classes (#1133)
|
|
509
|
-
* Added browser storage implementation (#1140)
|
|
510
|
-
* Added implementation of crypto for browser (#1141)
|
|
511
|
-
* Added fetch client (#1144)
|
|
512
|
-
* Creating of login url (#1149)
|
|
513
|
-
* Added logger class (#1155)
|
|
514
|
-
* Added redirect handling code (#1164)
|
|
515
|
-
* Successful token exchange (#1181)
|
|
516
|
-
* Response handling code (#1183)
|
|
517
|
-
* Token caching (#1185)
|
|
518
|
-
* Popup handling (#1190)
|
|
519
|
-
* Silent renewal using refresh tokens and logout (#1208)
|
|
520
|
-
* SSO fixes for login_hint (#1211)
|
|
521
|
-
|
|
522
|
-
# 0.0.1
|
|
523
|
-
- Created library with initial files for repo structure, build and package dependencies
|