Skip to content

Commit e6df4c1

Browse files
committed
Revert "Fix main branch issues (#641)"
This reverts commit a08b9be.
1 parent a1dcbca commit e6df4c1

File tree

338 files changed

+313
-1512
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

338 files changed

+313
-1512
lines changed

.github/workflows/codeql.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ jobs:
2121

2222
# Initializes the CodeQL tools for scanning.
2323
- name: Initialize CodeQL
24-
uses: github/codeql-action/init@v2
24+
uses: github/codeql-action/init@v1
2525
# Override language selection by uncommenting this and choosing your languages
2626
# with:
2727
# languages: go, javascript, csharp, python, cpp, java
2828

2929
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
3030
# If this step fails, then you should remove it and run the build manually (see below).
3131
- name: Autobuild
32-
uses: github/codeql-action/autobuild@v2
32+
uses: github/codeql-action/autobuild@v1
3333

3434
# ℹ️ Command-line programs to run using the OS shell.
3535
# 📚 https://git.io/JvXDl
@@ -43,4 +43,4 @@ jobs:
4343
# make release
4444

4545
- name: Perform CodeQL Analysis
46-
uses: github/codeql-action/analyze@v2
46+
uses: github/codeql-action/analyze@v1

msal4j-brokers/.gitignore renamed to .gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*.rar
2121

2222
# Intellij
23-
../.idea/
23+
.idea/
2424

2525
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
2626
hs_err_pid*

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
`main` branch | `dev` branch | Reference Docs
44
--------------------|-----------------|---------------
5-
[![Build status](https://identitydivision.visualstudio.com/IDDP/_apis/build/status/CI/Java/MSAL%20Java%20CI%20Build?branchName=main)](https://identitydivision.visualstudio.com/IDDP/_build/latest?definitionId=762) | [![Build status](https://identitydivision.visualstudio.com/IDDP/_apis/build/status/CI/Java/MSAL%20Java%20CI%20Build?branchName=dev)](https://identitydivision.visualstudio.com/IDDP/_build/latest?definitionId=762)| [MSAL Java reference](https://learn.microsoft.com/en-us/java/api/com.microsoft.aad.msal4j?view=msal-java-latest)
5+
[![Build status](https://identitydivision.visualstudio.com/IDDP/_apis/build/status/CI/Java/MSAL%20Java%20CI%20Build?branchName=main)](https://identitydivision.visualstudio.com/IDDP/_build/latest?definitionId=762) | [![Build status](https://identitydivision.visualstudio.com/IDDP/_apis/build/status/CI/Java/MSAL%20Java%20CI%20Build?branchName=dev)](https://identitydivision.visualstudio.com/IDDP/_build/latest?definitionId=762)| [![Javadocs](http://javadoc.io/badge/com.microsoft.azure/msal4j.svg)](http://javadoc.io/doc/com.microsoft.azure/msal4j)
66

77
The Microsoft Authentication Library for Java (MSAL4J) enables applications to integrate with the [Microsoft identity platform](https://docs.microsoft.com/en-us/azure/active-directory/develop/). It allows you to sign in users or apps with Microsoft identities (Azure AD, Microsoft accounts and Azure AD B2C accounts) and obtain tokens to call Microsoft APIs such as [Microsoft Graph](https://graph.microsoft.io/) or your own APIs registered with the Microsoft identity platform. It is built using industry standard OAuth2 and OpenID Connect protocols.
88

@@ -16,25 +16,25 @@ Quick links:
1616
The library supports the following Java environments:
1717
- Java 8 (or higher)
1818

19-
Current version - 1.13.8
19+
Current version - 1.13.2
2020

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

23-
You can get the com.microsoft.aad.msal4j package through Maven or Gradle.
23+
You can get the msal4j package through Maven or Gradle.
2424

2525
### Maven
2626
Find [the latest package in the Maven repository](https://mvnrepository.com/artifact/com.microsoft.azure/msal4j).
2727
```xml
2828
<dependency>
2929
<groupId>com.microsoft.azure</groupId>
3030
<artifactId>msal4j</artifactId>
31-
<version>1.13.8</version>
31+
<version>1.13.2</version>
3232
</dependency>
3333
```
3434
### Gradle
3535

3636
```gradle
37-
implementation group: 'com.microsoft.azure', name: 'com.microsoft.aad.msal4j', version: '1.13.8'
37+
implementation group: 'com.microsoft.azure', name: 'com.microsoft.aad.msal4j', version: '1.13.2'
3838
```
3939

4040
## Usage

msal4j-sdk/changelog.txt renamed to changelog.txt

Lines changed: 0 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,3 @@
1-
Version 1.13.8
2-
=============
3-
- Added support for CIAM authority
4-
- Added refresh_in logic for managed identity flow
5-
- Better exception handling in interactive flow
6-
- Updated vulnerable dependency versions
7-
8-
Version 1.13.7
9-
=============
10-
- Update json-smart library version to a secured one.
11-
12-
Version 1.13.6
13-
=============
14-
- Added ExtraQueryParameters API.
15-
- added tests for a CIAM user.
16-
- updated condition to throw exception only for an invalid authority while performing instance discovery.
17-
18-
Version 1.13.5
19-
=============
20-
- fixed url for admin consent.
21-
- added 2s timeout to IMDS endpoint call.
22-
- fixed url for regional endpoint calls.
23-
- added support for current and legacy B2c authority formats.
24-
25-
Version 1.13.4
26-
=============
27-
- regional endpoint updates
28-
- fixed manifest
29-
- Expose instance discovery flag to perform instance discovery.
30-
31-
Version 1.13.3
32-
=============
33-
- Update jackson-databind version to be in compatible with Azure-SDKs
34-
35-
Version 1.13.2
36-
=============
37-
- Add IBroker interface
38-
- Update AppTokenProvider callback logging to be consistent with Azure SDK logging
39-
- Restructure library and add broker module
40-
- Update version of vulnerable libraries
41-
- Update README for broken links
42-
431
Version 1.13.1
442
=============
453
- Bug fixes and improvements for region API
File renamed without changes.

msal4j-brokers/README.md

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

msal4j-brokers/pom.xml

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

msal4j-brokers/src/main/java/com/microsoft/aad/msal4jbrokers/MSALRuntimeBroker.java

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

msal4j-sdk/.gitignore

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

0 commit comments

Comments
 (0)