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

Commit ac8094f

Browse files
authored
Merge pull request #178 from AzureAD/dev
Release 0.1.24
2 parents c3f0840 + c565b8b commit ac8094f

31 files changed

+2545
-1038
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,6 @@ Thumbs.db
2828
# WebStorm #
2929
.idea/
3030

31+
# TS #
32+
test/**/*.js
33+
*.js.map

.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
language: node_js
2+
sudo: false
3+
node_js:
4+
- "8"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
The ADAL for node.js library makes it easy for node.js applications to authenticate to AAD in order to access AAD protected web resources. It supports 3 authentication modes shown in the quickstart code below.
33

44
## Versions
5-
Current version - 0.1.23
5+
Current version - 0.1.24
66
Minimum recommended version - 0.1.22
77
You can find the changes for each version in the [change log](https://github.com/AzureAD/azure-activedirectory-library-for-nodejs/blob/master/changelog.txt).
88

changelog.md

Lines changed: 106 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,106 @@
1+
Version 0.1.24
2+
--------------
3+
Release Date: 06 November 2017
4+
* Added type definitions to the project. This should help users developing their apps in TypeScript #142, [DefinitelyTyped](https://github.com/DefinitelyTyped/DefinitelyTyped/issues/12586).
5+
* Replaced `"node-uuid"` with `"uuid"` #170.
6+
7+
Version 0.1.23
8+
--------------
9+
Release Date: 26 Oct 2017
10+
* Fix Issue #95 - Change npm licenses to license and use spdx syntax
11+
* Fix Issue #122 - Broken link on README file
12+
* Fix Issue #155 - remove need for dynamic access to package.json to obtain lib version (util.js)
13+
* Fix Issue #172 - Add `login.microsoftonline.us` endpoint
14+
* Added Windows Graph Sample
15+
16+
Version 0.1.22
17+
--------------
18+
Release Date: 1 Aug 2016
19+
* Fix Issue #132 - Trim developer provided authority to construct endpoints
20+
21+
Version 0.1.21
22+
--------------
23+
Release Date: 23 Jun 2016
24+
* Policheck and credscan fixes
25+
26+
Version 0.1.20
27+
--------------
28+
Release Date: 17 Jun 2016
29+
* Add support for resource owner grant flow for ADFS
30+
31+
Version 0.1.19
32+
--------------
33+
Release Date: 26 Apr 2016
34+
* Fixed CredScan issue for the checked in pem file
35+
* Policheck fixes
36+
* Updated node-uuid
37+
* Fixed Readme.md
38+
* Inline the adal version during compile time
39+
* Fix issue #71 - client-credential cert-bad-cert failing
40+
* Fix issue #78 - Express dependency in package.json doesn't match syntax used in website-sample.js
41+
* Fix issue #80 - Unreachable ADFS server results in misleading error message
42+
43+
Version 0.1.18
44+
--------------
45+
Release Date: 5 Feb 2016
46+
* Add oid in IDTokenMap to expose for returned user info.
47+
48+
Version 0.1.17
49+
--------------
50+
Release Date: 8 Oct 2015
51+
* Add support for cross tenant refresh token
52+
53+
Version 0.1.16
54+
--------------
55+
Release Date: 3 Sep 2015
56+
* Add support for device profile
57+
58+
Version 0.1.15
59+
--------------
60+
Release Date: 4 Aug 2015
61+
* Fix issue #68 - add support for wstrust 2005 endpoint.
62+
* Fix issue #62 - escape xml chars in password before creating a xml request for wstrust.
63+
64+
Version 0.1.14
65+
--------------
66+
Release Date: 5 May 2015
67+
* Add timestamp to the log entries.
68+
69+
Version 0.1.13
70+
--------------
71+
Release Date: 1 May 2015
72+
* Scrub security sensitive data in WS-Trust exchange from log messages.
73+
* Update the version of the jws dependency to the latest release.
74+
75+
Version 0.1.12
76+
--------------
77+
Release Date: 19 February 2015
78+
* Add login.microsoftonline.com to the static list of known authorities.
79+
* Bug fixes. (#36)
80+
81+
Version 0.1.11
82+
--------------
83+
Release Date: 16 December 2014
84+
* Added support for certificate authentication for confidential clients.
85+
86+
Version 0.1.10
87+
--------------
88+
Release Date: 24 November 2014
89+
* 0.1.9 published version was corrupt.
90+
91+
Version 0.1.9
92+
--------------
93+
Release Date: 24 November 2014
94+
* Fixed issue #22 - ADAL needs a method that allows confidential clients
95+
to acquire a new token via a refresh token.The `acquireTokenWithRefreshToken` function was updated to take an additional `clientSecret` argument. Passing this new argument is optional and the change should not breakapps using this function before the additional argument was added.
96+
97+
Version 0.1.8
98+
--------------
99+
Release Date: 29 October 2014
100+
* Update version of xpath.js dependency to 1.0.5
101+
* Fix a bug in the regular expression used to parse a 401 challenge.
102+
103+
Version 0.1.7
104+
--------------
105+
Release Date: 2 September 2014
106+
* Add caching support to AuthenticationContext.acquireTokenWithClientCredentials

changelog.txt

Lines changed: 0 additions & 108 deletions
This file was deleted.

0 commit comments

Comments
 (0)