Skip to content

Commit 90779c8

Browse files
committed
Merge master
2 parents b260b3f + 02ff79d commit 90779c8

File tree

14 files changed

+68
-16
lines changed

14 files changed

+68
-16
lines changed

.github/workflows/build-and-test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,28 +4,28 @@ on:
44
pull_request:
55
merge_group:
66
push:
7-
branches: ["master", "main", "v1"]
7+
branches: ["master", "main", "v3"]
88

99
jobs:
1010
gradle:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v5
13+
- uses: actions/checkout@v6
1414
- uses: actions/setup-java@v5
1515
with:
1616
distribution: temurin
1717
java-version: 8
1818

1919
- name: Set up Gradle
20-
uses: gradle/actions/setup-gradle@06832c7b30a0129d7fb559bcc6e43d26f6374244 # v4.3.1
20+
uses: gradle/actions/setup-gradle@4d9f0ba0025fe599b4ebab900eb7f3a1d93ef4c2 # v5.0.0
2121

2222
- name: Test and Assemble with Gradle
2323
run: ./gradlew assemble check --continue --console=plain
2424

2525
- uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5.5.1
2626
with:
2727
flags: unittests
28-
- uses: actions/upload-artifact@v4
28+
- uses: actions/upload-artifact@v5
2929
with:
3030
name: Reports
3131
path: build/reports
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: Claude Code PR Review
2+
3+
on:
4+
issue_comment:
5+
types: [ created ]
6+
pull_request_review_comment:
7+
types: [ created ]
8+
9+
jobs:
10+
claude-review:
11+
uses: auth0/auth0-ai-pr-analyzer-gh-action/.github/workflows/claude-code-review.yml@main

.github/workflows/gradle-wrapper-validation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ jobs:
66
name: "validation/gradlew"
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v5
10-
- uses: gradle/actions/wrapper-validation@v4
9+
- uses: actions/checkout@v6
10+
- uses: gradle/actions/wrapper-validation@v5

.github/workflows/java-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030

3131
steps:
3232
# Checkout the code
33-
- uses: actions/checkout@v5
33+
- uses: actions/checkout@v6
3434
with:
3535
fetch-depth: 0
3636

.github/workflows/rl-scanner.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131

3232
steps:
3333
- name: Checkout code
34-
uses: actions/checkout@v5
34+
uses: actions/checkout@v6
3535

3636
- name: Set up Java
3737
uses: actions/setup-java@v5
@@ -40,7 +40,7 @@ jobs:
4040
java-version: ${{ inputs.java-version }}
4141

4242
- name: Set up Gradle
43-
uses: gradle/actions/setup-gradle@06832c7b30a0129d7fb559bcc6e43d26f6374244 # v4.3.1
43+
uses: gradle/actions/setup-gradle@4d9f0ba0025fe599b4ebab900eb7f3a1d93ef4c2 # v5.0.0
4444

4545
- name: Test and Assemble and ApiDiff with Gradle
4646
run: ./gradlew assemble apiDiff check jacocoTestReport --continue --console=plain

.github/workflows/snyk.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ jobs:
3030
- if: github.actor == 'dependabot[bot]' || github.event_name == 'merge_group'
3131
run: exit 0 # Skip unnecessary test runs for dependabot and merge queues. Artifically flag as successful, as this is a required check for branch protection.
3232

33-
- uses: actions/checkout@v5
33+
- uses: actions/checkout@v6
3434
with:
3535
ref: ${{ github.event.pull_request.head.sha || github.ref }}
3636

37-
- uses: snyk/actions/gradle-jdk11@b98d498629f1c368650224d6d212bf7dfa89e4bf # pin@0.4.0
37+
- uses: snyk/actions/gradle-jdk11@9adf32b1121593767fc3c057af55b55db032dc04 # pin@1.0.0
3838
env:
3939
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}

.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.26.0
1+
2.27.0

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
# Change Log
22

33
## [v3.0.0-beta.0](https://github.com/auth0/auth0-java/tree/v3.0.0-beta.0) (2025-12-18)
4-
54
[Full Changelog](https://github.com/auth0/auth0-java/compare/v4.26.0...v3.0.0-beta.0)
65

6+
> **Warning** This SDK is in beta and is subject to breaking changes. It is not recommended for production use, but your feedback and help in testing is appreciated!
7+
8+
**Added**
79
- Complete rewrite of the **Management API client** using Fern code generation
810
- Update OkHttp to 5.2.1
911
- API attributes can set null for patch operations
@@ -13,6 +15,15 @@
1315
- [Migration guide](v3_MIGRATION_GUIDE.md) available for upgrading from v2.x
1416

1517

18+
## [2.27.0](https://github.com/auth0/auth0-java/tree/2.27.0) (2025-12-18)
19+
[Full Changelog](https://github.com/auth0/auth0-java/compare/2.26.0...2.27.0)
20+
21+
**Added**
22+
- Feat: Add Google WorkSpace Provisioning Config Support [\#795](https://github.com/auth0/auth0-java/pull/795) ([tanya732](https://github.com/tanya732))
23+
24+
**Fixed**
25+
- Fix: updated token_lifetime to Integer [\#797](https://github.com/auth0/auth0-java/pull/797) ([tanya732](https://github.com/tanya732))
26+
1627
## [2.26.0](https://github.com/auth0/auth0-java/tree/2.26.0) (2025-10-24)
1728
[Full Changelog](https://github.com/auth0/auth0-java/compare/2.25.0...2.26.0)
1829

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,21 @@
33
>
44
> While this change won't affect most developers, if you have implemented a dependency signature validation step in your build process, you may notice a warning that past releases can't be verified. This is expected, and a result of the key rotation process. Updating to the latest version will resolve this for you.
55
6+
> **Warning** Releasing v3 beta version; it is subject to breaking changes prior to the General Availability release. It is not recommended for production use, but your feedback and help in testing is appreciated!
67
![A Java client library for the Auth0 Authentication and Management APIs.](https://cdn.auth0.com/website/sdks/banners/auth0-java-banner.png)
78

89
![Build Status](https://img.shields.io/github/checks-status/auth0/auth0-java/master)
910
[![Coverage Status](https://codecov.io/gh/auth0/auth0-java/branch/master/graph/badge.svg?style=flat-square)](https://codecov.io/github/auth0/auth0-java)
1011
[![License](http://img.shields.io/:license-mit-blue.svg?style=flat)](https://doge.mit-license.org/)
1112
[![Maven Central](https://img.shields.io/maven-central/v/com.auth0/auth0.svg?style=flat-square)](https://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.auth0%22%20AND%20a%3A%22auth0%22)
1213
[![javadoc](https://javadoc.io/badge2/com.auth0/auth0/javadoc.svg)](https://javadoc.io/doc/com.auth0/auth0)
14+
[![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/auth0/auth0-java)
1315

1416
:books: [Documentation](#documentation) - :rocket: [Getting Started](#getting-started) - :computer: [API Reference](#api-reference) :speech_balloon: [Feedback](#feedback)
1517

1618
## Documentation
1719
- [Examples](./EXAMPLES.md) - code samples for common auth0-java scenarios.
18-
- [Migration Guide](./MIGRATION_GUIDE.md) - guidance for updating your application to use version 2 of auth0-java.
20+
- [Migration Guide](./v3_MIGRATION_GUIDE.md) - guidance for updating your application to use version 3 of auth0-java.
1921
- [Docs site](https://www.auth0.com/docs) - explore our docs site and learn more about Auth0.
2022

2123
## Getting Started
@@ -34,14 +36,14 @@ Add the dependency via Maven:
3436
<dependency>
3537
<groupId>com.auth0</groupId>
3638
<artifactId>auth0</artifactId>
37-
<version>2.26.0</version>
39+
<version>2.27.0</version>
3840
</dependency>
3941
```
4042

4143
or Gradle:
4244

4345
```gradle
44-
implementation 'com.auth0:auth0:2.26.0'
46+
implementation 'com.auth0:auth0:2.27.0'
4547
```
4648

4749
### Configure the SDK
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
package com.auth0.json.mgmt.selfserviceprofiles;
2+
3+
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
4+
import com.fasterxml.jackson.annotation.JsonInclude;
5+
import com.fasterxml.jackson.annotation.JsonProperty;
6+
7+
@JsonInclude(JsonInclude.Include.NON_NULL)
8+
@JsonIgnoreProperties(ignoreUnknown = true)
9+
public class GoogleWorkspaceProvisioningConfig {
10+
@JsonProperty("sync_users")
11+
private boolean syncUsers;
12+
13+
@JsonProperty("sync_users")
14+
public boolean isSyncUsers() {
15+
return syncUsers;
16+
}
17+
18+
@JsonProperty("sync_users")
19+
public void setSyncUsers(boolean syncUsers) {
20+
this.syncUsers = syncUsers;
21+
}
22+
}

0 commit comments

Comments
 (0)