Skip to content

Release 1.3.2 #1748

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jun 10, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions lib/msal-core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,48 +19,48 @@ MSAL for JavaScript enables client-side JavaScript web applications, running in

#### Latest compiled and minified JavaScript (US West region)
```html
<script type="text/javascript" src="https://alcdn.msauth.net/lib/1.3.1/js/msal.js"></script>
<script type="text/javascript" src="https://alcdn.msauth.net/lib/1.3.2/js/msal.js"></script>
```
```html
<script type="text/javascript" src="https://alcdn.msauth.net/lib/1.3.1/js/msal.min.js"></script>
<script type="text/javascript" src="https://alcdn.msauth.net/lib/1.3.2/js/msal.min.js"></script>
````

#### Alternate region URLs (Europe region)
```html
<script type="text/javascript" src="https://alcdn.msftauth.net/lib/1.3.1/js/msal.js"></script>
<script type="text/javascript" src="https://alcdn.msftauth.net/lib/1.3.2/js/msal.js"></script>
```
```html
<script type="text/javascript" src="https://alcdn.msftauth.net/lib/1.3.1/js/msal.min.js"></script>
<script type="text/javascript" src="https://alcdn.msftauth.net/lib/1.3.2/js/msal.min.js"></script>
```

### Via Latest Microsoft CDN Version (with SRI Hash):

#### Latest compiled and minified JavaScript

```html
<script type="text/javascript" src="https://alcdn.msauth.net/lib/1.3.1/js/msal.js" integrity="sha384-YjtcEEqiYcRGh2K/ehq07C6Bk9jKrKoMgdFy9YGfTxtrmzV3GyNi0DDgwhmcCNrE" crossorigin="anonymous"></script>
<script type="text/javascript" src="https://alcdn.msauth.net/lib/1.3.2/js/msal.js" integrity="sha384-rwyXLM4dOdS5ptZmCIqzjVrWmbPA6bnan0Fy35CYYY13MdE0gK/L0TVDnKdEQV7q" crossorigin="anonymous"></script>
```
```html
<script type="text/javascript" src="https://alcdn.msauth.net/lib/1.3.1/js/msal.min.js" integrity="sha384-kb1EkR5mZZRISRcdpYMFQRBDBb/RG/tKvYeCbgFjLUhPu54tjm1O4OPkvmOMnpPJ" crossorigin="anonymous"></script>
<script type="text/javascript" src="https://alcdn.msauth.net/lib/1.3.2/js/msal.min.js" integrity="sha384-4cH4i4aLXsdIJJz5DF27S+GxZXRSqBORS4NN7kc7NyZBBIugxFyt6hQt5FiR/DuZ" crossorigin="anonymous"></script>
```

#### Alternate region URLs

To help ensure reliability, Microsoft provides a second CDN:

```html
<script type="text/javascript" src="https://alcdn.msftauth.net/lib/1.3.1/js/msal.js" integrity="sha384-YjtcEEqiYcRGh2K/ehq07C6Bk9jKrKoMgdFy9YGfTxtrmzV3GyNi0DDgwhmcCNrE" crossorigin="anonymous"></script>
<script type="text/javascript" src="https://alcdn.msftauth.net/lib/1.3.2/js/msal.js" integrity="sha384-rwyXLM4dOdS5ptZmCIqzjVrWmbPA6bnan0Fy35CYYY13MdE0gK/L0TVDnKdEQV7q" crossorigin="anonymous"></script>
```
```html
<script type="text/javascript" src="https://alcdn.msftauth.net/lib/1.3.1/js/msal.min.js" integrity="sha384-kb1EkR5mZZRISRcdpYMFQRBDBb/RG/tKvYeCbgFjLUhPu54tjm1O4OPkvmOMnpPJ" crossorigin="anonymous"></script>
<script type="text/javascript" src="https://alcdn.msftauth.net/lib/1.3.2/js/msal.min.js" integrity="sha384-4cH4i4aLXsdIJJz5DF27S+GxZXRSqBORS4NN7kc7NyZBBIugxFyt6hQt5FiR/DuZ" crossorigin="anonymous"></script>
```

Below is an example of how to use one CDN as a fallback when the other CDN is not working:

```html
<script type="text/javascript" src="https://alcdn.msauth.net/lib/1.3.1/js/msal.js"></script>
<script type="text/javascript" src="https://alcdn.msauth.net/lib/1.3.2/js/msal.js"></script>
<script type="text/javascript">
if(typeof Msal === 'undefined')document.write(unescape("%3Cscript src='https://alcdn.msftauth.net/lib/1.3.1/js/msal.js' type='text/javascript' %3E%3C/script%3E"));
if(typeof Msal === 'undefined')document.write(unescape("%3Cscript src='https://alcdn.msftauth.net/lib/1.3.2/js/msal.js' type='text/javascript' %3E%3C/script%3E"));
</script>
```

Expand Down
14 changes: 14 additions & 0 deletions lib/msal-core/changelog.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/msal-core/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/msal-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion lib/msal-core/src/utils/Constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -157,5 +157,5 @@ export const FramePrefix = {
* MSAL JS Library Version
*/
export function libraryVersion(): string {
return "1.3.1";
return "1.3.2";
}