Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.0-beta.0
1.0.0-beta.1
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## [1.0.0-beta.1](https://github.com/auth0/auth0-auth-java/tree/1.0.0-beta.1) (2026-04-09)

**Added**
- Adds support for Multiple Custom Domains [\#21](https://github.com/auth0/auth0-auth-java/pull/21) ([tanya732](https://github.com/tanya732))
- Adds telemetry support [\#34](https://github.com/auth0/auth0-auth-java/pull/34) ([tanya732](https://github.com/tanya732))

**Fixed**
- Comment out application name in properties file [\#30](https://github.com/auth0/auth0-auth-java/pull/30) ([ClementVicart](https://github.com/ClementVicart))

## [1.0.0-beta.0](https://github.com/auth0/auth0-auth-java/tree/1.0.0-beta.0) (2026-03-02)

### Features
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ If you're building a Spring Boot application, use the Spring Boot integration:
<dependency>
<groupId>com.auth0</groupId>
<artifactId>auth0-springboot-api</artifactId>
<version>1.0.0-beta.0</version>
<version>1.0.0-beta.1</version>
</dependency>
```

Expand Down Expand Up @@ -84,7 +84,7 @@ Spring Boot integration module is published as a public artifact:

| Module | Group ID | Artifact ID | Version | Status |
| ---------------------- | ----------- | ---------------------- |----------------| ---------------- |
| `auth0-springboot-api` | `com.auth0` | `auth0-springboot-api` | `1.0.0-beta.0` | 📦 **Published** |
| `auth0-springboot-api` | `com.auth0` | `auth0-springboot-api` | `1.0.0-beta.1` | 📦 **Published** |

The core library (`auth0-api-java`) is bundled as an internal dependency within the Spring Boot module and is not published separately.

Expand Down
4 changes: 2 additions & 2 deletions auth0-springboot-api/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ Add the dependency via Maven:
<dependency>
<groupId>com.auth0</groupId>
<artifactId>auth0-springboot-api</artifactId>
<version>1.0.0-beta.0</version>
<version>1.0.0-beta.1</version>
</dependency>
```

or Gradle:

```gradle
dependencies {
implementation 'com.auth0:auth0-springboot-api:1.0.0-beta.0'
implementation 'com.auth0:auth0-springboot-api:1.0.0-beta.1'
}
```

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
GROUP=com.auth0
VERSION_NAME=1.0.0-beta.0
VERSION_NAME=1.0.0-beta.1

# Shared POM metadata (module-specific properties are in each module's build.gradle)
POM_URL=https://github.com/auth0/auth0-auth-java
Expand Down
Loading