Skip to content

Commit 0263e02

Browse files
authored
Merge branch 'master' into docs/add-deepwiki-badge-1c997c24
2 parents 8b4d514 + 40b9198 commit 0263e02

File tree

11 files changed

+77
-8
lines changed

11 files changed

+77
-8
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ 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
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: atko-cic/ai-pr-analyzer-gh-action/.github/workflows/claude-code-review.yml@main

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

Lines changed: 1 addition & 1 deletion
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
9+
- uses: actions/checkout@v6
1010
- uses: gradle/actions/wrapper-validation@v4

.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: 1 addition & 1 deletion
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

.github/workflows/snyk.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ 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

.version

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

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Change Log
22

3+
## [2.26.0](https://github.com/auth0/auth0-java/tree/2.26.0) (2025-10-24)
4+
[Full Changelog](https://github.com/auth0/auth0-java/compare/2.25.0...2.26.0)
5+
6+
**Added**
7+
- Adenix/client is token endpoint id header trusted [\#782](https://github.com/auth0/auth0-java/pull/782) ([tanya732](https://github.com/tanya732))
8+
- Feat: add constructor to set clientId on Client creation [\#781](https://github.com/auth0/auth0-java/pull/781) ([tanya732](https://github.com/tanya732))
9+
310
## [2.25.0](https://github.com/auth0/auth0-java/tree/2.25.0) (2025-09-30)
411
[Full Changelog](https://github.com/auth0/auth0-java/compare/2.24.0...2.25.0)
512

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@ Add the dependency via Maven:
3535
<dependency>
3636
<groupId>com.auth0</groupId>
3737
<artifactId>auth0</artifactId>
38-
<version>2.25.0</version>
38+
<version>2.26.0</version>
3939
</dependency>
4040
```
4141

4242
or Gradle:
4343

4444
```gradle
45-
implementation 'com.auth0:auth0:2.25.0'
45+
implementation 'com.auth0:auth0:2.26.0'
4646
```
4747

4848
### Configure the SDK

src/main/java/com/auth0/json/mgmt/client/Client.java

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ public class Client {
3131
private String logoUri;
3232
@JsonProperty("is_first_party")
3333
private Boolean isFirstParty;
34+
@JsonProperty("is_token_endpoint_ip_header_trusted")
35+
private Boolean isTokenEndpointIpHeaderTrusted;
3436
@JsonProperty("oidc_conformant")
3537
private Boolean oidcConformant;
3638
@JsonProperty("callbacks")
@@ -154,6 +156,17 @@ public Client(@JsonProperty("name") String name) {
154156
this.name = name;
155157
}
156158

159+
/**
160+
* Creates a new Application instance setting the name and client id properties.
161+
*
162+
* @param name of the application.
163+
* @param clientId the client id of the application.
164+
*/
165+
public Client(String name, String clientId) {
166+
this.name = name;
167+
this.clientId = clientId;
168+
}
169+
157170
/**
158171
* Getter for the name of the application.
159172
*
@@ -284,6 +297,26 @@ public void setIsFirstParty(Boolean isFirstParty) {
284297
this.isFirstParty = isFirstParty;
285298
}
286299

300+
/**
301+
* Whether the token endpoint IP header is trusted for this application.
302+
*
303+
* @return true if the token endpoint IP header is trusted, false otherwise.
304+
*/
305+
@JsonProperty("is_token_endpoint_ip_header_trusted")
306+
public Boolean getIsTokenEndpointIpHeaderTrusted() {
307+
return isTokenEndpointIpHeaderTrusted;
308+
}
309+
310+
/**
311+
* Setter for whether the token endpoint IP header is trusted for this application.
312+
*
313+
* @param isTokenEndpointIpHeaderTrusted whether the token endpoint IP header is trusted or not.
314+
*/
315+
@JsonProperty("is_token_endpoint_ip_header_trusted")
316+
public void setIsTokenEndpointIpHeaderTrusted(Boolean isTokenEndpointIpHeaderTrusted) {
317+
this.isTokenEndpointIpHeaderTrusted = isTokenEndpointIpHeaderTrusted;
318+
}
319+
287320
/**
288321
* Whether this application will conform to strict Open ID Connect specifications or not.
289322
*

0 commit comments

Comments
 (0)