@azure/msal-browser 2.16.0 → 2.19.0

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