Skip to content

Commit 5232f53

Browse files
authored
Merge pull request #77 from AzureAD/sagonzal/0.5.0-preview
Release 0.5.0-preview
2 parents 01498d5 + 519b989 commit 5232f53

File tree

6 files changed

+19
-4
lines changed

6 files changed

+19
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ The MSAL library for Java gives your app the ability to begin using the Microsof
1111

1212

1313
## Versions
14-
Current version - 0.4.0-preview
14+
Current version - 0.5.0-preview
1515

1616
You can find the changes for each version in the [change log](https://github.com/AzureAD/microsoft-authentication-library-for-java/blob/master/changelog.txt).
1717

changelog.txt

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
1+
Version 0.5.0-preview
2+
=============
3+
- Refactored AuthenticationException to MsalServiceException, MsalClientException, MsalInteractionRequiredException
4+
- Added cache lookup to acquireToken by client credentials grant
5+
- Updated Javadoc reference
6+
- Updated license headers
7+
18
Version 0.4.0-preview
29
=============
3-
- Exposing acquire token by refresh token api
10+
- Exposed acquire token by refresh token api
411

512
Version 0.3.0-preview
613
=============

pom.xml

Lines changed: 1 addition & 1 deletion
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>msal4j</artifactId>
6-
<version>0.4.0-preview</version>
6+
<version>0.5.0-preview</version>
77
<packaging>jar</packaging>
88
<name>msal4j</name>
99
<description>

src/main/java/com/microsoft/aad/msal4j/AuthenticationErrorCode.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33

44
package com.microsoft.aad.msal4j;
55

6+
/**
7+
* Class containing error codes returned by the service or generated by the client
8+
*/
69
public class AuthenticationErrorCode {
710

811
/**

src/main/java/com/microsoft/aad/msal4j/SilentParameters.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,11 @@ public static SilentParametersBuilder builder(Set<String> scopes, IAccount accou
5252
.account(account);
5353
}
5454

55+
/**
56+
* Builder for SilentParameters
57+
* @param scopes scopes application is requesting access to
58+
* @return builder object that can be used to construct SilentParameters
59+
*/
5560
public static SilentParametersBuilder builder(Set<String> scopes) {
5661
validateNotEmpty("scopes", scopes);
5762

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<dependency>
1616
<groupId>com.microsoft.azure</groupId>
1717
<artifactId>msal4j</artifactId>
18-
<version>0.4.0-preview</version>
18+
<version>0.5.0-preview</version>
1919
</dependency>
2020
<dependency>
2121
<groupId>com.nimbusds</groupId>

0 commit comments

Comments
 (0)