Skip to content

Commit 44bcb64

Browse files
authored
Merge branch 'master' into dependabot/github_actions/gradle/gradle-build-action-3.5.0
2 parents fe1f3c6 + 8959fc1 commit 44bcb64

Some content is hidden

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

46 files changed

+2262
-141
lines changed

.github/actions/maven-publish/action.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,18 @@ runs:
2727
source "/home/runner/.sdkman/bin/sdkman-init.sh"
2828
sdk list java
2929
sdk install java ${{ inputs.java-version }} && sdk default java ${{ inputs.java-version }}
30+
export JAVA_HOME=${SDKMAN_DIR}/candidates/java/current
31+
echo "JAVA_HOME is set to $JAVA_HOME"
3032
3133
- uses: gradle/wrapper-validation-action@56b90f209b02bf6d1deae490e9ef18b21a389cd4 # pin@1.1.0
34+
env:
35+
JAVA_HOME: ${{ env.JAVA_HOME }}
3236

3337
- name: Publish Android/Java Packages to Maven
3438
shell: bash
3539
run: ./gradlew publish -PisSnapshot=false --stacktrace
3640
env:
41+
JAVA_HOME: ${{ env.JAVA_HOME }}
3742
MAVEN_USERNAME: ${{ inputs.ossr-username }}
3843
MAVEN_PASSWORD: ${{ inputs.ossr-token }}
3944
SIGNING_KEY: ${{ inputs.signing-key}}

.github/workflows/java-release.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,12 @@ jobs:
6464
- if: steps.tag_exists.outputs.exists == 'true'
6565
run: exit 1
6666

67+
# Set JAVA_HOME here and pass it to subsequent steps
68+
- name: Set JAVA_HOME for Gradle
69+
run: echo "JAVA_HOME=/home/runner/.sdkman/candidates/java/current" >> $GITHUB_ENV # This ensures JAVA_HOME is set globally
70+
env:
71+
SDKMAN_DIR: /home/runner/.sdkman
72+
6773
# Publish the release to Maven
6874
- uses: ./.github/actions/maven-publish
6975
with:
@@ -72,6 +78,8 @@ jobs:
7278
ossr-token: ${{ secrets.ossr-token }}
7379
signing-key: ${{ secrets.signing-key }}
7480
signing-password: ${{ secrets.signing-password }}
81+
env:
82+
JAVA_HOME: ${{ env.JAVA_HOME }}
7583

7684
# Create a release for the tag
7785
- uses: ./.github/actions/release-create

.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.17.0
1+
2.19.0

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,33 @@
11
# Change Log
22

3+
## [2.19.0](https://github.com/auth0/auth0-java/tree/2.19.0) (2025-03-28)
4+
[Full Changelog](https://github.com/auth0/auth0-java/compare/2.18.0...2.19.0)
5+
6+
**Added**
7+
- Added support for SSO-FF [\#702](https://github.com/auth0/auth0-java/pull/702) ([tanya732](https://github.com/tanya732))
8+
- Check point pagination support for get connection [\#704](https://github.com/auth0/auth0-java/pull/704) ([tanya732](https://github.com/tanya732))
9+
10+
## [2.18.0](https://github.com/auth0/auth0-java/tree/2.18.0) (2025-02-19)
11+
[Full Changelog](https://github.com/auth0/auth0-java/compare/2.17.0...2.18.0)
12+
13+
**Added**
14+
- Added missing fields in LogEventClass [\#698](https://github.com/auth0/auth0-java/pull/698) ([tanya732](https://github.com/tanya732))
15+
- Added support for revoke session endpoint [\#699](https://github.com/auth0/auth0-java/pull/699) ([tanya732](https://github.com/tanya732))
16+
- Added Connection's SCIM Server Support [\#696](https://github.com/auth0/auth0-java/pull/696) ([tanya732](https://github.com/tanya732))
17+
18+
## [2.17.0](https://github.com/auth0/auth0-java/tree/2.17.0) (2025-01-10)
19+
[Full Changelog](https://github.com/auth0/auth0-java/compare/2.16.0...2.17.0)
20+
21+
**Added**
22+
- Update EXAMPLES.md to fix variable usage [\#690](https://github.com/auth0/auth0-java/pull/690) ([tanya732](https://github.com/tanya732))
23+
- Added Support for Self-Service-Profile [\#683](https://github.com/auth0/auth0-java/pull/683) ([tanya732](https://github.com/tanya732))
24+
- Added support for Back Channel Login [\#682](https://github.com/auth0/auth0-java/pull/682) ([tanya732](https://github.com/tanya732))
25+
326
## [2.17.0](https://github.com/auth0/auth0-java/tree/2.17.0) (2025-01-08)
427
[Full Changelog](https://github.com/auth0/auth0-java/compare/2.16.0...2.17.0)
528

629
**Added**
30+
- Update EXAMPLES.md to fix variable usage [\#690](https://github.com/auth0/auth0-java/pull/690) ([tanya732](https://github.com/tanya732))
731
- Added Support for Self-Service-Profile [\#683](https://github.com/auth0/auth0-java/pull/683) ([tanya732](https://github.com/tanya732))
832
- Added support for Back Channel Login [\#682](https://github.com/auth0/auth0-java/pull/682) ([tanya732](https://github.com/tanya732))
933

EXAMPLES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ To verify an ID Token that is signed using the RS256 signing algorithm, you will
5858

5959
```java
6060
JwkProvider provider = new JwkProviderBuilder("https://your-domain.auth0.com").build();
61-
SignatureVerifier sigVerifier = SignatureVerifier.forRS256(new PublicKeyProvider() {
61+
SignatureVerifier signatureVerifier = SignatureVerifier.forRS256(new PublicKeyProvider() {
6262
@Override
6363
public RSAPublicKey getPublicKeyById(String keyId) throws PublicKeyProviderException {
6464
try {

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,14 @@ Add the dependency via Maven:
3434
<dependency>
3535
<groupId>com.auth0</groupId>
3636
<artifactId>auth0</artifactId>
37-
<version>2.17.0</version>
37+
<version>2.19.0</version>
3838
</dependency>
3939
```
4040

4141
or Gradle:
4242

4343
```gradle
44-
implementation 'com.auth0:auth0:2.17.0'
44+
implementation 'com.auth0:auth0:2.19.0'
4545
```
4646

4747
### Configure the SDK

build.gradle

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ buildscript {
66
dependencies {
77
// https://github.com/melix/japicmp-gradle-plugin/issues/36
88
classpath 'com.google.guava:guava:31.1-jre'
9+
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.1.0"
910
}
1011
}
1112

@@ -114,7 +115,7 @@ test {
114115
}
115116

116117
ext {
117-
okhttpVersion = '4.11.0'
118+
okhttpVersion = '4.12.0'
118119
hamcrestVersion = '2.2'
119120
jupiterVersion = '5.9.3'
120121

@@ -126,9 +127,14 @@ dependencies {
126127
// TODO remove direct dependency when OkHttp 4.12.0 is released
127128
implementation ("com.squareup.okhttp3:okhttp:${okhttpVersion}") {
128129
exclude group: 'com.squareup.okhttp3', module: 'okio'
130+
exclude group: 'org.jetbrains.kotlin', module: 'kotlin-stdlib'
131+
exclude group: 'org.jetbrains.kotlin', module: 'kotlin-stdlib-jdk8'
129132
}
130133
implementation "com.squareup.okio:okio:3.5.0"
131134

135+
implementation "org.jetbrains.kotlin:kotlin-stdlib:2.1.0"
136+
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.1.0"
137+
132138
implementation "com.squareup.okhttp3:logging-interceptor:${okhttpVersion}"
133139
implementation "com.fasterxml.jackson.core:jackson-databind:2.15.0"
134140
implementation "com.auth0:java-jwt:4.4.0"

gradle/wrapper/gradle-wrapper.jar

1.52 KB
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.9.2-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)