@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.
- package/CHANGELOG.json +240 -0
- package/{changelog.md → CHANGELOG.md} +489 -430
- package/LICENSE +21 -21
- package/README.md +212 -206
- package/dist/_virtual/_tslib.js +1 -1
- package/dist/app/ClientApplication.d.ts +19 -140
- package/dist/app/ClientApplication.d.ts.map +1 -1
- package/dist/app/ClientApplication.js +115 -895
- package/dist/app/ClientApplication.js.map +1 -1
- package/dist/app/IPublicClientApplication.d.ts +6 -0
- package/dist/app/IPublicClientApplication.d.ts.map +1 -1
- package/dist/app/IPublicClientApplication.js +13 -1
- package/dist/app/IPublicClientApplication.js.map +1 -1
- package/dist/app/PublicClientApplication.d.ts.map +1 -1
- package/dist/app/PublicClientApplication.js +35 -41
- package/dist/app/PublicClientApplication.js.map +1 -1
- package/dist/cache/AsyncMemoryStorage.d.ts +46 -0
- package/dist/cache/AsyncMemoryStorage.d.ts.map +1 -0
- package/dist/cache/AsyncMemoryStorage.js +195 -0
- package/dist/cache/AsyncMemoryStorage.js.map +1 -0
- package/dist/cache/BrowserCacheManager.d.ts +19 -2
- package/dist/cache/BrowserCacheManager.d.ts.map +1 -1
- package/dist/cache/BrowserCacheManager.js +104 -15
- package/dist/cache/BrowserCacheManager.js.map +1 -1
- package/dist/cache/BrowserStorage.d.ts +1 -1
- package/dist/cache/BrowserStorage.d.ts.map +1 -1
- package/dist/cache/BrowserStorage.js +1 -1
- package/dist/cache/BrowserStorage.js.map +1 -1
- package/dist/cache/DatabaseStorage.d.ts +29 -4
- package/dist/cache/DatabaseStorage.d.ts.map +1 -1
- package/dist/cache/DatabaseStorage.js +151 -45
- package/dist/cache/DatabaseStorage.js.map +1 -1
- package/dist/cache/IAsyncMemoryStorage.d.ts +28 -0
- package/dist/cache/IAsyncMemoryStorage.d.ts.map +1 -0
- package/dist/cache/ITokenCache.d.ts +8 -0
- package/dist/cache/ITokenCache.d.ts.map +1 -0
- package/dist/cache/IWindowStorage.d.ts +3 -3
- package/dist/cache/IWindowStorage.d.ts.map +1 -1
- package/dist/cache/MemoryStorage.d.ts +3 -3
- package/dist/cache/MemoryStorage.d.ts.map +1 -1
- package/dist/cache/MemoryStorage.js +1 -1
- package/dist/cache/MemoryStorage.js.map +1 -1
- package/dist/cache/TokenCache.d.ts +48 -0
- package/dist/cache/TokenCache.d.ts.map +1 -0
- package/dist/cache/TokenCache.js +124 -0
- package/dist/cache/TokenCache.js.map +1 -0
- package/dist/config/Configuration.js +1 -1
- package/dist/config/Configuration.js.map +1 -1
- package/dist/crypto/BrowserCrypto.d.ts +3 -1
- package/dist/crypto/BrowserCrypto.d.ts.map +1 -1
- package/dist/crypto/BrowserCrypto.js +3 -2
- package/dist/crypto/BrowserCrypto.js.map +1 -1
- package/dist/crypto/CryptoOps.d.ts +21 -6
- package/dist/crypto/CryptoOps.d.ts.map +1 -1
- package/dist/crypto/CryptoOps.js +67 -15
- package/dist/crypto/CryptoOps.js.map +1 -1
- package/dist/crypto/GuidGenerator.js +1 -1
- package/dist/crypto/GuidGenerator.js.map +1 -1
- package/dist/crypto/PkceGenerator.js +1 -1
- package/dist/crypto/PkceGenerator.js.map +1 -1
- package/dist/crypto/SignedHttpRequest.d.ts +31 -0
- package/dist/crypto/SignedHttpRequest.d.ts.map +1 -0
- package/dist/crypto/SignedHttpRequest.js +70 -0
- package/dist/crypto/SignedHttpRequest.js.map +1 -0
- package/dist/encode/Base64Decode.js +1 -1
- package/dist/encode/Base64Decode.js.map +1 -1
- package/dist/encode/Base64Encode.js +1 -1
- package/dist/encode/Base64Encode.js.map +1 -1
- package/dist/error/BrowserAuthError.d.ts +28 -4
- package/dist/error/BrowserAuthError.d.ts.map +1 -1
- package/dist/error/BrowserAuthError.js +41 -11
- package/dist/error/BrowserAuthError.js.map +1 -1
- package/dist/error/BrowserConfigurationAuthError.js +1 -1
- package/dist/error/BrowserConfigurationAuthError.js.map +1 -1
- package/dist/event/EventHandler.d.ts +13 -0
- package/dist/event/EventHandler.d.ts.map +1 -1
- package/dist/event/EventHandler.js +66 -1
- package/dist/event/EventHandler.js.map +1 -1
- package/dist/event/EventMessage.d.ts +4 -3
- package/dist/event/EventMessage.d.ts.map +1 -1
- package/dist/event/EventMessage.js +24 -5
- package/dist/event/EventMessage.js.map +1 -1
- package/dist/event/EventType.d.ts +2 -0
- package/dist/event/EventType.d.ts.map +1 -1
- package/dist/event/EventType.js +3 -1
- package/dist/event/EventType.js.map +1 -1
- package/dist/index.cjs.js +4505 -3045
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +5 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/dist/interaction_client/BaseInteractionClient.d.ts +42 -0
- package/dist/interaction_client/BaseInteractionClient.d.ts.map +1 -0
- package/dist/interaction_client/BaseInteractionClient.js +131 -0
- package/dist/interaction_client/BaseInteractionClient.js.map +1 -0
- package/dist/interaction_client/PopupClient.d.ts +37 -0
- package/dist/interaction_client/PopupClient.d.ts.map +1 -0
- package/dist/interaction_client/PopupClient.js +234 -0
- package/dist/interaction_client/PopupClient.js.map +1 -0
- package/dist/interaction_client/RedirectClient.d.ts +42 -0
- package/dist/interaction_client/RedirectClient.d.ts.map +1 -0
- package/dist/interaction_client/RedirectClient.js +301 -0
- package/dist/interaction_client/RedirectClient.js.map +1 -0
- package/dist/interaction_client/SilentCacheClient.d.ts +22 -0
- package/dist/interaction_client/SilentCacheClient.d.ts.map +1 -0
- package/dist/interaction_client/SilentCacheClient.js +85 -0
- package/dist/interaction_client/SilentCacheClient.js.map +1 -0
- package/dist/interaction_client/SilentIframeClient.d.ts +29 -0
- package/dist/interaction_client/SilentIframeClient.d.ts.map +1 -0
- package/dist/interaction_client/SilentIframeClient.js +107 -0
- package/dist/interaction_client/SilentIframeClient.js.map +1 -0
- package/dist/interaction_client/SilentRefreshClient.d.ts +20 -0
- package/dist/interaction_client/SilentRefreshClient.d.ts.map +1 -0
- package/dist/interaction_client/SilentRefreshClient.js +76 -0
- package/dist/interaction_client/SilentRefreshClient.js.map +1 -0
- package/dist/interaction_client/StandardInteractionClient.d.ts +66 -0
- package/dist/interaction_client/StandardInteractionClient.d.ts.map +1 -0
- package/dist/interaction_client/StandardInteractionClient.js +249 -0
- package/dist/interaction_client/StandardInteractionClient.js.map +1 -0
- package/dist/interaction_handler/InteractionHandler.js +1 -1
- package/dist/interaction_handler/InteractionHandler.js.map +1 -1
- package/dist/interaction_handler/PopupHandler.d.ts +2 -0
- package/dist/interaction_handler/PopupHandler.d.ts.map +1 -1
- package/dist/interaction_handler/PopupHandler.js +3 -4
- 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 +6 -5
- package/dist/interaction_handler/RedirectHandler.js.map +1 -1
- package/dist/interaction_handler/SilentHandler.js +1 -1
- package/dist/interaction_handler/SilentHandler.js.map +1 -1
- package/dist/navigation/NavigationClient.js +1 -1
- package/dist/navigation/NavigationClient.js.map +1 -1
- package/dist/network/FetchClient.js +1 -1
- package/dist/network/FetchClient.js.map +1 -1
- package/dist/network/XhrClient.js +1 -1
- package/dist/network/XhrClient.js.map +1 -1
- package/dist/packageMetadata.d.ts +1 -1
- package/dist/packageMetadata.js +2 -2
- package/dist/packageMetadata.js.map +1 -1
- package/dist/request/EndSessionPopupRequest.d.ts +3 -0
- package/dist/request/EndSessionPopupRequest.d.ts.map +1 -1
- package/dist/request/PopupRequest.d.ts +3 -0
- package/dist/request/PopupRequest.d.ts.map +1 -1
- package/dist/request/RedirectRequest.d.ts.map +1 -1
- package/dist/utils/BrowserConstants.d.ts +12 -1
- package/dist/utils/BrowserConstants.d.ts.map +1 -1
- package/dist/utils/BrowserConstants.js +16 -3
- package/dist/utils/BrowserConstants.js.map +1 -1
- package/dist/utils/BrowserProtocolUtils.js +1 -1
- package/dist/utils/BrowserProtocolUtils.js.map +1 -1
- package/dist/utils/BrowserStringUtils.js +1 -1
- package/dist/utils/BrowserStringUtils.js.map +1 -1
- package/dist/utils/BrowserUtils.js +1 -1
- package/dist/utils/BrowserUtils.js.map +1 -1
- package/dist/utils/MathUtils.js +1 -1
- package/dist/utils/MathUtils.js.map +1 -1
- package/dist/utils/PopupUtils.d.ts +26 -2
- package/dist/utils/PopupUtils.d.ts.map +1 -1
- package/dist/utils/PopupUtils.js +42 -15
- package/dist/utils/PopupUtils.js.map +1 -1
- package/lib/msal-browser.js +4505 -3045
- package/lib/msal-browser.js.map +1 -1
- package/lib/msal-browser.min.js +42 -42
- package/package.json +8 -2
package/CHANGELOG.json
CHANGED
|
@@ -1,6 +1,246 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure/msal-browser",
|
|
3
3
|
"entries": [
|
|
4
|
+
{
|
|
5
|
+
"date": "Mon, 01 Nov 2021 23:53:21 GMT",
|
|
6
|
+
"tag": "@azure/msal-browser_v2.19.0",
|
|
7
|
+
"version": "2.19.0",
|
|
8
|
+
"comments": {
|
|
9
|
+
"minor": [
|
|
10
|
+
{
|
|
11
|
+
"author": "hemoral@microsoft.com",
|
|
12
|
+
"package": "@azure/msal-browser",
|
|
13
|
+
"commit": "51669adf5e2fe446bf94925fe77762b64e9513fc",
|
|
14
|
+
"comment": "Add support for in-memory storage of token binding keys #4183"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"author": "hemoral@microsoft.com",
|
|
18
|
+
"package": "@azure/msal-browser",
|
|
19
|
+
"commit": "a81fcef3d82523e03828d91bb0ee8d2ab2cc20d8",
|
|
20
|
+
"comment": "Add support for ephemeral SSH certificate acquisition #4178"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"author": "hemoral@microsoft.com",
|
|
24
|
+
"package": "@azure/msal-browser",
|
|
25
|
+
"commit": "51669adf5e2fe446bf94925fe77762b64e9513fc",
|
|
26
|
+
"comment": "Add support for in-memory storage of token binding keys #4183"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"author": "hemoral@microsoft.com",
|
|
30
|
+
"package": "@azure/msal-browser",
|
|
31
|
+
"commit": "5b350a5f97b43e1a5a87153bb4a13632f7c615b9",
|
|
32
|
+
"comment": "Add support for SHR nonce #3999"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"author": "beachball",
|
|
36
|
+
"package": "@azure/msal-browser",
|
|
37
|
+
"comment": "Bump @azure/msal-common to v5.1.0",
|
|
38
|
+
"commit": "6ac29855822ce1ba9531a68bcaa6f37443ef16c0"
|
|
39
|
+
}
|
|
40
|
+
],
|
|
41
|
+
"patch": [
|
|
42
|
+
{
|
|
43
|
+
"author": "hemoral@microsoft.com",
|
|
44
|
+
"package": "@azure/msal-browser",
|
|
45
|
+
"commit": "9099d711c0e52e13937bcfda7ddf34bac48f9ecd",
|
|
46
|
+
"comment": "Add support for different key types in IndexedDB storage #4052"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"author": "janutter@microsoft.com",
|
|
50
|
+
"package": "@azure/msal-browser",
|
|
51
|
+
"commit": "b1f5bd520f8abb972725c1a863f37b7fb5ebd756",
|
|
52
|
+
"comment": "Ensure correlation is passed to all interaction clients in acquireTokenSilent #4186"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"author": "Michael.Currie@rjwgroup.com",
|
|
56
|
+
"package": "@azure/msal-browser",
|
|
57
|
+
"commit": "3f3f5a8880a7e46445d71b8920a6ccc70d453f30",
|
|
58
|
+
"comment": "Fix typo in noTokenRequestCacheError (#4136)"
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"author": "thomas.norling@microsoft.com",
|
|
62
|
+
"package": "@azure/msal-browser",
|
|
63
|
+
"commit": "dc80d3177eef0b3c7499cbf3ebb2fea8e2c408c9",
|
|
64
|
+
"comment": "Fix redirect processing when allowRedirectInIframe: true #4142"
|
|
65
|
+
}
|
|
66
|
+
]
|
|
67
|
+
}
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"date": "Mon, 04 Oct 2021 23:12:35 GMT",
|
|
71
|
+
"tag": "@azure/msal-browser_v2.18.0",
|
|
72
|
+
"version": "2.18.0",
|
|
73
|
+
"comments": {
|
|
74
|
+
"patch": [
|
|
75
|
+
{
|
|
76
|
+
"author": "jagore@microsoft.com",
|
|
77
|
+
"package": "@azure/msal-browser",
|
|
78
|
+
"comment": "Consistently export error types and messages for errors thrown by MSAL #4117",
|
|
79
|
+
"commit": "d03c16f09026bac36048241da4635e73d32a6eed"
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"author": "thomas.norling@microsoft.com",
|
|
83
|
+
"package": "@azure/msal-browser",
|
|
84
|
+
"comment": "Move helper functions up to BaseInteractionClient #4049",
|
|
85
|
+
"commit": "d03c16f09026bac36048241da4635e73d32a6eed"
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"author": "thomas.norling@microsoft.com",
|
|
89
|
+
"package": "@azure/msal-browser",
|
|
90
|
+
"comment": "Export library version #4124",
|
|
91
|
+
"commit": "d03c16f09026bac36048241da4635e73d32a6eed"
|
|
92
|
+
}
|
|
93
|
+
],
|
|
94
|
+
"none": [
|
|
95
|
+
{
|
|
96
|
+
"author": "thomas.norling@microsoft.com",
|
|
97
|
+
"package": "@azure/msal-browser",
|
|
98
|
+
"comment": "Disallow major bumps",
|
|
99
|
+
"commit": "d03c16f09026bac36048241da4635e73d32a6eed"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"author": "thomas.norling@microsoft.com",
|
|
103
|
+
"package": "@azure/msal-browser",
|
|
104
|
+
"commit": "d03c16f09026bac36048241da4635e73d32a6eed"
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"author": "kamausamuel11@gmail.com",
|
|
108
|
+
"package": "@azure/msal-browser",
|
|
109
|
+
"comment": "fix: add forked bindings library to node-extensions",
|
|
110
|
+
"commit": "d03c16f09026bac36048241da4635e73d32a6eed"
|
|
111
|
+
}
|
|
112
|
+
],
|
|
113
|
+
"minor": [
|
|
114
|
+
{
|
|
115
|
+
"author": "thomas.norling@microsoft.com",
|
|
116
|
+
"package": "@azure/msal-browser",
|
|
117
|
+
"comment": "Emit event when user logs in or out from a different tab or window #3981",
|
|
118
|
+
"commit": "d03c16f09026bac36048241da4635e73d32a6eed"
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"author": "prkanher@microsoft.com",
|
|
122
|
+
"package": "@azure/msal-browser",
|
|
123
|
+
"comment": "Remove requirement of user hint on ssoSilent API #4123",
|
|
124
|
+
"commit": "d03c16f09026bac36048241da4635e73d32a6eed"
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"author": "beachball",
|
|
128
|
+
"package": "@azure/msal-browser",
|
|
129
|
+
"comment": "Bump @azure/msal-common to v5.0.1",
|
|
130
|
+
"commit": "d03c16f09026bac36048241da4635e73d32a6eed"
|
|
131
|
+
}
|
|
132
|
+
]
|
|
133
|
+
}
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"date": "Tue, 07 Sep 2021 23:22:24 GMT",
|
|
137
|
+
"tag": "@azure/msal-browser_v2.17.0",
|
|
138
|
+
"version": "2.17.0",
|
|
139
|
+
"comments": {
|
|
140
|
+
"minor": [
|
|
141
|
+
{
|
|
142
|
+
"comment": "Add configuration for popup window size and placement #3946",
|
|
143
|
+
"author": "joarroyo@microsoft.com",
|
|
144
|
+
"commit": "aefe791ee660bbb6bf7df789b5cfb77b46887e05",
|
|
145
|
+
"package": "@azure/msal-browser"
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"comment": "Add API to sideload tokens to msal-browser #3895",
|
|
149
|
+
"author": "joarroyo@microsoft.com",
|
|
150
|
+
"commit": "cef2629499cf997f9167fe3ecc7628cf32513dfc",
|
|
151
|
+
"package": "@azure/msal-browser"
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
"comment": "Add SignedHttpRequest class #3058",
|
|
155
|
+
"author": "janutter@microsoft.com",
|
|
156
|
+
"commit": "19fe65ef6562deeae0778db5030f44fa6e24aa5d",
|
|
157
|
+
"package": "@azure/msal-browser"
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"comment": "Refactor acquireToken logic into InteractionClients #3871",
|
|
161
|
+
"author": "thomas.norling@microsoft.com",
|
|
162
|
+
"commit": "8ac64949f23346cdbdac6f8a2f6c8293d016ee32",
|
|
163
|
+
"package": "@azure/msal-browser"
|
|
164
|
+
}
|
|
165
|
+
],
|
|
166
|
+
"patch": [
|
|
167
|
+
{
|
|
168
|
+
"comment": "Clear cache before constructing logout url #3982",
|
|
169
|
+
"author": "thomas.norling@microsoft.com",
|
|
170
|
+
"commit": "9e4d8a161cd8eac51ea7ded5dadc2b6ff028f5d7",
|
|
171
|
+
"package": "@azure/msal-browser"
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"comment": "Add pop params to request thumbprint #3973",
|
|
175
|
+
"author": "hemoral@microsoft.com",
|
|
176
|
+
"commit": "b3b18bc86a5949905be265c9b892e288551ac894",
|
|
177
|
+
"package": "@azure/msal-browser"
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
"comment": "Update ADAL to MSAL SSO logic to use preferred_username instead of upn by default #3945",
|
|
181
|
+
"author": "ellymakuba@microsoft.com",
|
|
182
|
+
"commit": "0eb77a9e467f0074bb9ee5bf52d7c2dfa6f7efad",
|
|
183
|
+
"package": "@azure/msal-browser"
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
"comment": "Populate msal v2 loginHint from cached msal v1 id token #4027",
|
|
187
|
+
"author": "janutter@microsoft.com",
|
|
188
|
+
"commit": "de24de1d3a135c106143a6cc9907cc1264f546e0",
|
|
189
|
+
"package": "@azure/msal-browser"
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
"comment": "Throw interaction in progress if any msal instance has interaction in progress #4014",
|
|
193
|
+
"author": "thomas.norling@microsoft.com",
|
|
194
|
+
"commit": "5188d7d9fb2aa7a9e9f2ffd12abd8d438c4c3876",
|
|
195
|
+
"package": "@azure/msal-browser"
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"comment": "Only emit handleRedirect start event on first invocation of handleRedirectPromise #4013",
|
|
199
|
+
"author": "thomas.norling@microsoft.com",
|
|
200
|
+
"commit": "09f8cece289c07dd9c5681a31ec285e4111db4ae",
|
|
201
|
+
"package": "@azure/msal-browser"
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
"comment": "Add correlationId to AuthenticationResult type #3947",
|
|
205
|
+
"author": "thomas.norling@microsoft.com",
|
|
206
|
+
"commit": "931061695df57488a26397763bbdb3e466713df8",
|
|
207
|
+
"package": "@azure/msal-browser"
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
"comment": "Remove token binding key from key store when refreshing pop token #3500",
|
|
211
|
+
"author": "hemoral@microsoft.com",
|
|
212
|
+
"commit": "6592652877f31405c8ed73a66f03eada90a78c0a",
|
|
213
|
+
"package": "@azure/msal-browser"
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
"comment": "Fix clearing active account on logout #3948",
|
|
217
|
+
"author": "hemoral@microsoft.com",
|
|
218
|
+
"commit": "cd45c77348f6fc259f9378f69b25569146e1c58a",
|
|
219
|
+
"package": "@azure/msal-browser"
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
"comment": "Add correlationId to errors thrown #3930",
|
|
223
|
+
"author": "thomas.norling@microsoft.com",
|
|
224
|
+
"commit": "c2d19c27d11fdab54fb336b9a455b05c753ae750",
|
|
225
|
+
"package": "@azure/msal-browser"
|
|
226
|
+
}
|
|
227
|
+
],
|
|
228
|
+
"none": [
|
|
229
|
+
{
|
|
230
|
+
"comment": "Fix accesstoken_with_authscheme implementation #3910",
|
|
231
|
+
"author": "hemoral@microsoft.com",
|
|
232
|
+
"commit": "9aceb4219ebad900277aa6a59ca1ff93c5a21e0a",
|
|
233
|
+
"package": "@azure/msal-browser"
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
"comment": "Update FAQ #3934",
|
|
237
|
+
"author": "joliuac@gmail.com",
|
|
238
|
+
"commit": "323d7eabbbd95c499d2c2a2446cdea4531af71c5",
|
|
239
|
+
"package": "@azure/msal-browser"
|
|
240
|
+
}
|
|
241
|
+
]
|
|
242
|
+
}
|
|
243
|
+
},
|
|
4
244
|
{
|
|
5
245
|
"date": "Thu, 22 Jul 2021 22:50:22 GMT",
|
|
6
246
|
"tag": "@azure/msal-browser_v2.16.0",
|