Skip to content

Commit

Permalink
Release 1.14.0/1.0.0 version changes (#736)
Browse files Browse the repository at this point in the history
* Delete codeql.yml

* Test framework update (#672)

* Initial working tests

* Remove CIAM extra query parameter

* Fix failing tests

* Remove duplicate unit tests

* Remove duplicate unit tests

* Update tests with mocking to use Mockito

* Remove testng and powermock, add junit and mockito

* Remove AbstractMsalTests and PowerMockTestCase

* Fix mistaken null check

* Properly scope dependency

* Update CIAM tests (#673)

* Bump guava from 31.1-jre to 32.0.0-jre in /msal4j-sdk (#671)

Bumps [guava](https://github.com/google/guava) from 31.1-jre to 32.0.0-jre.
- [Release notes](https://github.com/google/guava/releases)
- [Commits](https://github.com/google/guava/commits)

---
updated-dependencies:
- dependency-name: com.google.guava:guava
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Avery-Dunn <avdunn@microsoft.com>

* Delete contributing.md (#667)

Co-authored-by: Avery-Dunn <avdunn@microsoft.com>

* Create Contributing.md (#668)

Co-authored-by: Avery-Dunn <avdunn@microsoft.com>

* Version changes for 1.13.9 (#674)

* Add space between command and arguments when executing linux command to open browser. Refs #682 (#683)

Co-authored-by: Ric Emery <remery@denmartech.com>

* Assorted fixes (#684)

* Remove default timeouts and improve exception messages

* Fix NPE for on-prem ADFS scenario

* Log MSAL message but re-throw exception

* Update vulnerable test dependency

* Issue-679: Fix for Account Cache; .contains() was not possible and you had to iterate through all elements as workaround. (#681)

* Version changes for 1.13.10 (#685)

* Move changelog

* Move changelog to root

* Update issue templates (#707)

* Re-add lombok source line (#705)

* Version changes for release 1.13.11 (#714)

* Update bug report

* Delete .github/ISSUE_TEMPLATE/bug_report.md

* Update bug_report.yaml

* Create FeatureRequest.yaml

* Update FeatureRequest.yaml

* Set default throttling time to 5 sec (#721)

Co-authored-by: Kulyakhtin, Alexander (Ext) <alexander.kulyakhtin_ext@novartis.com>

* Version changes for 1.14.0 msal4j and 1.0.0 msal4j-brokers

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: Bogdan Gavril <bogavril@microsoft.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Ric Emery <ric.emery@gmail.com>
Co-authored-by: Ric Emery <remery@denmartech.com>
Co-authored-by: Maximilian Pfeffer <admin@maxpfeffer.de>
Co-authored-by: akulyakhtin <akulyakhtin@gmail.com>
Co-authored-by: Kulyakhtin, Alexander (Ext) <alexander.kulyakhtin_ext@novartis.com>
  • Loading branch information
8 people committed Oct 26, 2023
1 parent d30509c commit 27c3fee
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 15 deletions.
13 changes: 8 additions & 5 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
Version 1.14.3-beta
Version 1.14.0
=============
- GA release of MSAL Java Brokers package
- Add support for acquiring bearer and proof-of-possession tokens using WAM as the broker (#590)
- Default throttling time for password grant requests lowered to 5 seconds (#721)
- Fix internal docs generation issue (#705)

Version 1.14.1-beta
=============
- Add proof-of-possession token support
- Add MSALRuntime logging support
Expand All @@ -8,10 +15,6 @@ Version 1.14.0-beta
- Add IBroker interface
- Add app-level parameter for enabling the use of auth brokers

Version 1.13.11
=============
- Hotfix for internal docs generation issue (#705)

Version 1.13.10
=============
- Remove default HTTP timeout (#664)
Expand Down
4 changes: 2 additions & 2 deletions msal4j-brokers/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Version 1.0.0-beta
Version 1.0.0
=============
- Initial release
- Provides the API and dependencies needed to utilize auth brokers through MSALRuntime
- Provides the API and dependencies needed to acquire tokens via WAM
4 changes: 2 additions & 2 deletions msal4j-brokers/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.microsoft.azure</groupId>
<artifactId>msal4j-brokers</artifactId>
<version>1.0.3-beta</version>
<version>1.0.0</version>
<packaging>jar</packaging>
<name>msal4j-brokers</name>
<description>
Expand Down Expand Up @@ -34,7 +34,7 @@
<dependency>
<groupId>com.microsoft.azure</groupId>
<artifactId>msal4j</artifactId>
<version>1.14.3-beta</version>
<version>1.14.0</version>
</dependency>
<dependency>
<groupId>com.microsoft.azure</groupId>
Expand Down
6 changes: 3 additions & 3 deletions msal4j-sdk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Quick links:
The library supports the following Java environments:
- Java 8 (or higher)

Current version - 1.14.3-beta
Current version - 1.14.0

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).

Expand All @@ -28,13 +28,13 @@ Find [the latest package in the Maven repository](https://mvnrepository.com/arti
<dependency>
<groupId>com.microsoft.azure</groupId>
<artifactId>msal4j</artifactId>
<version>1.14.3-beta</version>
<version>1.14.0</version>
</dependency>
```
### Gradle

```gradle
compile group: 'com.microsoft.azure', name: 'msal4j', version: '1.14.3-beta'
compile group: 'com.microsoft.azure', name: 'msal4j', version: '1.14.0'
```

## Usage
Expand Down
2 changes: 1 addition & 1 deletion msal4j-sdk/bnd.bnd
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Export-Package: com.microsoft.aad.msal4j;version="1.14.3-beta"
Export-Package: com.microsoft.aad.msal4j;version="1.14.0"
Automatic-Module-Name: com.microsoft.aad.msal4j
3 changes: 1 addition & 2 deletions msal4j-sdk/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.microsoft.azure</groupId>
<artifactId>msal4j</artifactId>
<version>1.14.3-beta</version>
<version>1.14.0</version>
<packaging>jar</packaging>
<name>msal4j</name>
<description>
Expand Down Expand Up @@ -103,7 +103,6 @@
<version>1.14.5</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.skyscreamer</groupId>
<artifactId>jsonassert</artifactId>
Expand Down

0 comments on commit 27c3fee

Please sign in to comment.