@azure/msal-browser
Advanced tools
Comparing version 2.13.0 to 2.13.1
@@ -5,2 +5,31 @@ { | ||
{ | ||
"date": "Wed, 31 Mar 2021 22:25:57 GMT", | ||
"tag": "@azure/msal-browser_v2.13.1", | ||
"version": "2.13.1", | ||
"comments": { | ||
"none": [ | ||
{ | ||
"comment": "Updates typdoc comments for request types #3309", | ||
"author": "thomas.norling@microsoft.com", | ||
"commit": "91da4f7f8dc126458dcc7b4a1e22b707f48a302a", | ||
"package": "@azure/msal-browser" | ||
}, | ||
{ | ||
"comment": "Add AT PoP documentation (#3071)", | ||
"author": "hemoral@microsoft.com", | ||
"commit": "b5f1bc8e9a400e50658fd91e14feea460cfb7ce9", | ||
"package": "@azure/msal-browser" | ||
} | ||
], | ||
"patch": [ | ||
{ | ||
"comment": "Export PopupEvent #3360", | ||
"author": "joarroyo@microsoft.com", | ||
"commit": "24fda4c133476d87c12ac913f49eb9aff696f68e", | ||
"package": "@azure/msal-browser" | ||
} | ||
] | ||
} | ||
}, | ||
{ | ||
"date": "Wed, 24 Mar 2021 22:55:46 GMT", | ||
@@ -7,0 +36,0 @@ "tag": "@azure/msal-browser_v2.13.0", |
# Change Log - @azure/msal-browser | ||
This log was last generated on Wed, 24 Mar 2021 22:55:46 GMT and should not be manually modified. | ||
This log was last generated on Wed, 31 Mar 2021 22:25:57 GMT and should not be manually modified. | ||
<!-- Start content --> | ||
## 2.13.1 | ||
Wed, 31 Mar 2021 22:25:57 GMT | ||
### Patches | ||
- Export PopupEvent #3360 (joarroyo@microsoft.com) | ||
## 2.13.0 | ||
@@ -8,0 +16,0 @@ |
@@ -22,5 +22,5 @@ /** | ||
export { AuthorizationUrlRequest } from "./request/AuthorizationUrlRequest"; | ||
export { EventMessage, EventPayload, EventError, EventCallbackFunction, EventMessageUtils } from "./event/EventMessage"; | ||
export { EventMessage, EventPayload, EventError, EventCallbackFunction, EventMessageUtils, PopupEvent } from "./event/EventMessage"; | ||
export { EventType } from "./event/EventType"; | ||
export { AuthenticationScheme, AccountInfo, AccountEntity, AuthenticationResult, InteractionRequiredAuthError, AuthError, AuthErrorMessage, INetworkModule, NetworkResponse, NetworkRequestOptions, ILoggerCallback, Logger, LogLevel, ProtocolMode, StringUtils, UrlString } from "@azure/msal-common"; | ||
//# sourceMappingURL=index.d.ts.map |
export declare const name = "@azure/msal-browser"; | ||
export declare const version = "2.13.0"; | ||
export declare const version = "2.13.1"; | ||
//# sourceMappingURL=packageMetadata.d.ts.map |
@@ -20,3 +20,4 @@ import { CommonAuthorizationUrlRequest } from "@azure/msal-common"; | ||
* - domainHint - Provides a hint about the tenant or domain that the user should use to sign in. The value of the domain hint is a registered domain for the tenant. | ||
* - extraQueryParameters - String to string map of custom query parameters. | ||
* - extraQueryParameters - String to string map of custom query parameters added to the /authorize call | ||
* - tokenQueryParameters - String to string map of custom query parameters added to the /token call | ||
* - claims - In cases where Azure AD tenant admin has enabled conditional access policies, and the policy has not been met, exceptions will contain claims that need to be consented to. | ||
@@ -23,0 +24,0 @@ * - nonce - A value included in the request that is returned in the id token. A randomly generated unique value is typically used to mitigate replay attacks. |
@@ -20,3 +20,4 @@ import { CommonAuthorizationUrlRequest } from "@azure/msal-common"; | ||
* - domainHint - Provides a hint about the tenant or domain that the user should use to sign in. The value of the domain hint is a registered domain for the tenant. | ||
* - extraQueryParameters - String to string map of custom query parameters. | ||
* - extraQueryParameters - String to string map of custom query parameters added to the /authorize call | ||
* - tokenQueryParameters - String to string map of custom query parameters added to the /token call | ||
* - claims - In cases where Azure AD tenant admin has enabled conditional access policies, and the policy has not been met, exceptions will contain claims that need to be consented to. | ||
@@ -23,0 +24,0 @@ * - nonce - A value included in the request that is returned in the id token. A randomly generated unique value is typically used to mitigate replay attacks. |
@@ -12,3 +12,4 @@ import { AccountInfo, CommonSilentFlowRequest, StringDict } from "@azure/msal-common"; | ||
* - forceRefresh - Forces silent requests to make network calls if true. | ||
* - extraQueryParameters - String to string map of custom query parameters. Only used when renewing the refresh token. | ||
* - extraQueryParameters - String to string map of custom query parameters added to the /authorize call. Only used when renewing the refresh token. | ||
* - tokenQueryParameters - String to string map of custom query parameters added to the /token call. Only used when renewing access tokens. | ||
* - redirectUri - The redirect URI where authentication responses can be received by your application. It must exactly match one of the redirect URIs registered in the Azure portal. Only used for cases where refresh token is expired. | ||
@@ -15,0 +16,0 @@ */ |
@@ -20,3 +20,4 @@ import { CommonAuthorizationUrlRequest } from "@azure/msal-common"; | ||
* - domainHint - Provides a hint about the tenant or domain that the user should use to sign in. The value of the domain hint is a registered domain for the tenant. | ||
* - extraQueryParameters - String to string map of custom query parameters. | ||
* - extraQueryParameters - String to string map of custom query parameters added to the /authorize call | ||
* - tokenQueryParameters - String to string map of custom query parameters added to the /token call | ||
* - nonce - A value included in the request that is returned in the id token. A randomly generated unique value is typically used to mitigate replay attacks. | ||
@@ -23,0 +24,0 @@ */ |
@@ -13,3 +13,3 @@ { | ||
}, | ||
"version": "2.13.0", | ||
"version": "2.13.1", | ||
"description": "Microsoft Authentication Library for js", | ||
@@ -97,4 +97,4 @@ "keywords": [ | ||
"dependencies": { | ||
"@azure/msal-common": "^4.1.0" | ||
"@azure/msal-common": "^4.1.1" | ||
} | ||
} |
@@ -60,3 +60,3 @@ # Microsoft Authentication Library for JavaScript (MSAL.js) 2.0 for Browser-Based Single-Page Applications | ||
```html | ||
<script type="text/javascript" src="https://alcdn.msauth.net/browser/2.13.0/js/msal-browser.min.js"></script> | ||
<script type="text/javascript" src="https://alcdn.msauth.net/browser/2.13.1/js/msal-browser.min.js"></script> | ||
``` | ||
@@ -63,0 +63,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
6362801
38159
Updated@azure/msal-common@^4.1.1