diff --git a/lib/msal-core/README.md b/lib/msal-core/README.md index 11a8830e84..f878af0a73 100644 --- a/lib/msal-core/README.md +++ b/lib/msal-core/README.md @@ -19,18 +19,18 @@ MSAL for JavaScript enables client-side JavaScript web applications, running in #### Latest compiled and minified JavaScript (US West region) ```html - + ``` ```html - + ```` #### Alternate region URLs (Europe region) ```html - + ``` ```html - + ``` ### Via Latest Microsoft CDN Version (with SRI Hash): @@ -38,10 +38,10 @@ MSAL for JavaScript enables client-side JavaScript web applications, running in #### Latest compiled and minified JavaScript ```html - + ``` ```html - + ``` #### Alternate region URLs @@ -49,18 +49,18 @@ MSAL for JavaScript enables client-side JavaScript web applications, running in To help ensure reliability, Microsoft provides a second CDN: ```html - + ``` ```html - + ``` Below is an example of how to use one CDN as a fallback when the other CDN is not working: ```html - + ``` diff --git a/lib/msal-core/changelog.md b/lib/msal-core/changelog.md index 7044ae30da..60944d3156 100644 --- a/lib/msal-core/changelog.md +++ b/lib/msal-core/changelog.md @@ -1,3 +1,17 @@ +# 1.3.2 + +## Bugs +* Ensure decoding query parameters doesnt remove plus signs twice. (#1746) +* Fix popup about:blank errors. (#1667) +* Fix processing and redirection of acquireTokenRedirect. (#1758) + +## Enhancements +* Remove url from timeout error message, move to errorPii logger. (#1686) +* Add onRedirectNavigate callback to stop navigatation and get redirect url. (#1691) +* Allow applications to bypass network request for OpenID configuration. (#1578) +* Extend acquireTokenSilent Instrumentation. (#1629) +* Add performance instrumentation to TelemetryManager events. (#1643) + # 1.3.1 ## Bugs diff --git a/lib/msal-core/package-lock.json b/lib/msal-core/package-lock.json index dcbd7d98b2..99bd705346 100644 --- a/lib/msal-core/package-lock.json +++ b/lib/msal-core/package-lock.json @@ -1,6 +1,6 @@ { "name": "msal", - "version": "1.3.1", + "version": "1.3.2", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/lib/msal-core/package.json b/lib/msal-core/package.json index 263a9a6bcc..a5f02ee70b 100644 --- a/lib/msal-core/package.json +++ b/lib/msal-core/package.json @@ -10,7 +10,7 @@ "type": "git", "url": "https://github.com/AzureAD/microsoft-authentication-library-for-js.git" }, - "version": "1.3.1", + "version": "1.3.2", "description": "Microsoft Authentication Library for js", "keywords": [ "implicit", diff --git a/lib/msal-core/src/utils/Constants.ts b/lib/msal-core/src/utils/Constants.ts index ca254ba0a3..a6fe6502fc 100644 --- a/lib/msal-core/src/utils/Constants.ts +++ b/lib/msal-core/src/utils/Constants.ts @@ -157,5 +157,5 @@ export const FramePrefix = { * MSAL JS Library Version */ export function libraryVersion(): string { - return "1.3.1"; + return "1.3.2"; }