From 3ddd9b9324ad6ca62fddd3fadfb99e5919c684c6 Mon Sep 17 00:00:00 2001 From: tanya732 Date: Wed, 5 Aug 2026 17:38:02 +0530 Subject: [PATCH] Release 4.2.0 --- .version | 2 +- CHANGELOG.md | 23 +++++++++++++++++++++++ README.md | 4 ++-- 3 files changed, 26 insertions(+), 3 deletions(-) diff --git a/.version b/.version index ee74734a..6aba2b24 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -4.1.0 +4.2.0 diff --git a/CHANGELOG.md b/CHANGELOG.md index db4f3e0a..11526bcb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,28 @@ # Change Log +## [4.2.0](https://github.com/auth0/auth0-java/tree/4.2.0) (2026-08-05) +[Full Changelog](https://github.com/auth0/auth0-java/compare/4.1.0...4.2.0) + +**Added** +- feat: Agents client, Organization Clients & Role Groups, Directory Provisioning sync groups, Guardian factor settings & paginated Event Stream Deliveries + [\#909](https://github.com/auth0/auth0-java/pull/909) ([fern-api[bot]](https://github.com/apps/fern-api)) + - **Agents** — new top-level `agents()` client with full CRUD (`list`, `create`, `read`, `update`, `delete`) and `create:agents` / `read:agents` / `update:agents` / `delete:agents` scopes. + - **Organization Clients** — new `organizations().clients()` sub-client to associate, list, get, update, and remove org-to-client associations (checkpoint pagination); adds + `is_app_entitlement_active` on organizations and an `include_client_association_for` list filter. + - **Organization Role Groups** — new `organizations().roles().groups()` sub-client to list groups assigned to a role within an organization. + - **Organization-Level Roles** — `Role` and role list/filter now support `type` (`tenant` / `organization`) and `owner_id`. + - **Directory Provisioning sync groups** — `connections().directoryProvisioning()` gains `addSynchronizedGroupSelections` / `deleteSynchronizedGroupSelections`; Self-Service SSO tickets add + `sync_groups` on the Google Workspace config. + - **Guardian factor settings** — `GuardianFactor` now exposes an optional `settings` object (`otp_length`, `otp_expiration_time`). + - Misc: `country_codes` added to `AculContextEnum`; new shared `NotFound` / `Conflict` error schemas. + +**Fixes** +- feat: Agents client, Organization Clients & Role Groups, Directory Provisioning sync groups, Guardian factor settings & paginated Event Stream Deliveries + [\#909](https://github.com/auth0/auth0-java/pull/909) ([fern-api[bot]](https://github.com/apps/fern-api)) + - **Event Stream Deliveries pagination** — `deliveries().list(...)` now returns a `SyncPagingIterable` with checkpoint pagination (**breaking**: previously + `List`). + + ## [4.1.0](https://github.com/auth0/auth0-java/tree/4.1.0) (2026-07-22) [Full Changelog](https://github.com/auth0/auth0-java/compare/4.0.0...4.1.0) diff --git a/README.md b/README.md index f3835030..c18dc59e 100644 --- a/README.md +++ b/README.md @@ -40,14 +40,14 @@ Add the dependency via Maven: com.auth0 auth0 - 4.1.0 + 4.2.0 ``` or Gradle: ```gradle -implementation 'com.auth0:auth0:4.1.0' +implementation 'com.auth0:auth0:4.2.0' ``` ### Configure the SDK