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

Commit 703e560

Browse files
Merge pull request #721 from AzureAD/rn/release1017
release adal 1.0.17
2 parents 0d21ac0 + 5d60fe8 commit 703e560

8 files changed

+20
-13
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ Via NPM:
2121
Via CDN:
2222

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

27-
CDN will be updated to latest version 1.0.16.
27+
CDN will be updated to latest version 1.0.17.
2828

2929
Via Bower:
3030

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

334334
## Versions
335-
This is a GA released version. Current version - **1.0.16**
335+
This is a GA released version. Current version - **1.0.17**
336336
Minimum recommended version - 1.0.11
337337
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).
338338

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "adal-angular",
3-
"version": "1.0.16",
3+
"version": "1.0.17",
44
"homepage": "https://github.com/AzureAD/azure-activedirectory-library-for-js",
55
"authors": [
66
"MSOpentech"

changelog.txt

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
Version 1.0.17
2+
=========================
3+
* Added sid support. When the session id parameter is provided in the id_token, use that instead of the upn
4+
* 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.
5+
* Removed const keyword to support ES5 compatibility.
6+
* Other bug fixes and updates
7+
18
Version 1.0.16
29
=========================
310
* 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.

dist/adal-angular.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/adal.min.js

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/adal-angular.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//----------------------------------------------------------------------
2-
// AdalJS v1.0.16
2+
// AdalJS v1.0.17
33
// @preserve Copyright (c) Microsoft Open Technologies, Inc.
44
// All Rights Reserved
55
// Apache License 2.0

lib/adal.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//----------------------------------------------------------------------
2-
// AdalJS v1.0.16
2+
// AdalJS v1.0.17
33
// @preserve Copyright (c) Microsoft Open Technologies, Inc.
44
// All Rights Reserved
55
// Apache License 2.0
@@ -1920,7 +1920,7 @@ var AuthenticationContext = (function () {
19201920
* @ignore
19211921
*/
19221922
AuthenticationContext.prototype._libVersion = function () {
1923-
return '1.0.16';
1923+
return '1.0.17';
19241924
};
19251925

19261926
/**

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"type": "git",
1111
"url": "https://github.com/AzureAD/azure-activedirectory-library-for-js.git"
1212
},
13-
"version": "1.0.16",
13+
"version": "1.0.17",
1414
"description": "Windows Azure Active Directory Client Library for js",
1515
"keywords": [
1616
"implicit",

0 commit comments

Comments
 (0)