Skip to content
This repository has been archived by the owner on Jun 26, 2021. It is now read-only.

Commit

Permalink
Merge pull request #721 from AzureAD/rn/release1017
Browse files Browse the repository at this point in the history
release adal 1.0.17
  • Loading branch information
rohitnarula7176 authored Feb 27, 2018
2 parents 0d21ac0 + 5d60fe8 commit 703e560
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 13 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ Via NPM:
Via CDN:

<!-- Latest compiled and minified JavaScript -->
<script src="https://secure.aadcdn.microsoftonline-p.com/lib/1.0.16/js/adal.min.js"></script>
<script src="https://secure.aadcdn.microsoftonline-p.com/lib/1.0.16/js/adal-angular.min.js"></script>
<script src="https://secure.aadcdn.microsoftonline-p.com/lib/1.0.17/js/adal.min.js"></script>
<script src="https://secure.aadcdn.microsoftonline-p.com/lib/1.0.17/js/adal-angular.min.js"></script>

CDN will be updated to latest version 1.0.16.
CDN will be updated to latest version 1.0.17.

Via Bower:

Expand Down Expand Up @@ -332,7 +332,7 @@ Install grunt and run the command
We encourage and welcome contributions to the library. Please read the [contributing guide](./contributing.md) before starting.

## Versions
This is a GA released version. Current version - **1.0.16**
This is a GA released version. Current version - **1.0.17**
Minimum recommended version - 1.0.11
You can find the changes for each version in the [change log](https://github.com/AzureAD/azure-activedirectory-library-for-js/blob/master/changelog.txt).

Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "adal-angular",
"version": "1.0.16",
"version": "1.0.17",
"homepage": "https://github.com/AzureAD/azure-activedirectory-library-for-js",
"authors": [
"MSOpentech"
Expand Down
7 changes: 7 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
Version 1.0.17
=========================
* Added sid support. When the session id parameter is provided in the id_token, use that instead of the upn
* Add GDPR compliant logging. You can now set a flag piiLoggingEnabled by calling Logging.piiLoggingEnabled = true which when set, Adal JS will not log messages that contain the user's personal identifier.
* Removed const keyword to support ES5 compatibility.
* Other bug fixes and updates

Version 1.0.16
=========================
* Added ability to login in multiple tabs simultaneously when using localStorage where data is shared across tabs. Please see this: https://github.com/AzureAD/azure-activedirectory-library-for-js/issues/639.
Expand Down
2 changes: 1 addition & 1 deletion dist/adal-angular.min.js

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

6 changes: 3 additions & 3 deletions dist/adal.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/adal-angular.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//----------------------------------------------------------------------
// AdalJS v1.0.16
// AdalJS v1.0.17
// @preserve Copyright (c) Microsoft Open Technologies, Inc.
// All Rights Reserved
// Apache License 2.0
Expand Down
4 changes: 2 additions & 2 deletions lib/adal.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//----------------------------------------------------------------------
// AdalJS v1.0.16
// AdalJS v1.0.17
// @preserve Copyright (c) Microsoft Open Technologies, Inc.
// All Rights Reserved
// Apache License 2.0
Expand Down Expand Up @@ -1920,7 +1920,7 @@ var AuthenticationContext = (function () {
* @ignore
*/
AuthenticationContext.prototype._libVersion = function () {
return '1.0.16';
return '1.0.17';
};

/**
Expand Down
2 changes: 1 addition & 1 deletion 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/azure-activedirectory-library-for-js.git"
},
"version": "1.0.16",
"version": "1.0.17",
"description": "Windows Azure Active Directory Client Library for js",
"keywords": [
"implicit",
Expand Down

0 comments on commit 703e560

Please sign in to comment.