Skip to content
This repository was archived by the owner on Jul 5, 2023. It is now read-only.

Commit 75610d7

Browse files
authored
1.6.6 release (#298)
* 1.6.6 release
1 parent 8758a6a commit 75610d7

File tree

7 files changed

+13
-9
lines changed

7 files changed

+13
-9
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ ADAL4J is in maintenance mode and no new features will be added going forward ex
3737
You can find the steps for installation and basic usage documented in the [ADAL4J Basics Wiki](https://github.com/AzureAD/azure-activedirectory-library-for-java/wiki/ADAL4J-Basics).
3838

3939
## Versions
40-
Current version - 1.6.5
40+
Current version - 1.6.6
4141

42-
Minimum recommended version - 1.6.5
42+
Minimum recommended version - 1.6.6
4343

4444
From version 1.3.0 support for handling Conditional Access claims challenge was added. You can read about CA [here](https://go.microsoft.com/fwlink/?linkid=855860) and refer this [sample](https://github.com/AzureAD/azure-activedirectory-library-for-java/tree/dev/src/samples/web-app-samples-for-adal4j) to handle it.
4545

changelog.txt

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Version 1.6.6
2+
=============
3+
- updated oauth2-oidc-sdk to 7.4
4+
15
Version 1.6.5
26
=============
37
- updated commons-codec to 1.14

pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.microsoft.azure</groupId>
55
<artifactId>adal4j</artifactId>
6-
<version>1.6.5</version>
6+
<version>1.6.6</version>
77
<packaging>jar</packaging>
88
<name>adal4j</name>
99
<description>
@@ -70,7 +70,7 @@
7070
<dependency>
7171
<groupId>com.nimbusds</groupId>
7272
<artifactId>oauth2-oidc-sdk</artifactId>
73-
<version>6.5</version>
73+
<version>7.4</version>
7474
</dependency>
7575
<dependency>
7676
<groupId>com.google.code.gson</groupId>

src/samples/public-client-app-sample/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<dependency>
1616
<groupId>com.microsoft.azure</groupId>
1717
<artifactId>adal4j</artifactId>
18-
<version>1.6.5</version>
18+
<version>1.6.6</version>
1919
</dependency>
2020
</dependencies>
2121

src/samples/public-client-device-code-sample/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<dependency>
2020
<groupId>com.microsoft.azure</groupId>
2121
<artifactId>adal4j</artifactId>
22-
<version>1.6.5</version>
22+
<version>1.6.6</version>
2323
</dependency>
2424
</dependencies>
2525

src/samples/web-app-samples-for-adal4j/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<dependency>
1616
<groupId>com.microsoft.azure</groupId>
1717
<artifactId>adal4j</artifactId>
18-
<version>1.6.5</version>
18+
<version>1.6.6</version>
1919
</dependency>
2020
<dependency>
2121
<groupId>com.nimbusds</groupId>

src/test/java/com/microsoft/aad/adal4j/AdalOAuthRequestTest.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ public void testConstructor() throws MalformedURLException {
5252
assertNotNull(request);
5353
}
5454

55-
56-
@Test(expectedExceptions = IOException.class, expectedExceptionsMessageRegExp = "Couldn't parse Content-Type header: Invalid Content-Type value: In Content-Type string <invalid-content>, expected '/', got null")
55+
@Test(expectedExceptions = IOException.class, expectedExceptionsMessageRegExp =
56+
"Couldn't parse Content-Type header: Invalid Content-Type value: Invalid content type string")
5757
public void testCreateResponseContentTypeParsingFailure()
5858
throws Exception {
5959

0 commit comments

Comments
 (0)