From 6cc92f63abb95c4b2be8da67f935d39bc81fcbaa Mon Sep 17 00:00:00 2001 From: Snehil Kishore Date: Wed, 2 Sep 2026 19:25:03 +0530 Subject: [PATCH] Release 6.2.0 --- .version | 2 +- CHANGELOG.md | 11 +++++++++++ Gemfile.lock | 2 +- examples/ruby-api/Gemfile.lock | 2 +- lib/auth0/version.rb | 2 +- 5 files changed, 15 insertions(+), 4 deletions(-) diff --git a/.version b/.version index ed15bef9..2dc8e03b 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -v6.1.0 +v6.2.0 diff --git a/CHANGELOG.md b/CHANGELOG.md index 5c79478a..c7c68d2d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Change Log +## [v6.2.0](https://github.com/auth0/ruby-auth0/tree/v6.2.0) (2026-09-02) +[Full Changelog](https://github.com/auth0/ruby-auth0/compare/v6.1.0...v6.2.0) + +**Added** +- feat: add Organization Templates, Connection Profile SCIM provisioning, and Network ACL HTTP message signatures [\#797](https://github.com/auth0/ruby-auth0/pull/797) ([fern-api[bot]](https://github.com/apps/fern-api)) +- feat: support PKCE code_verifier in exchange_auth_code_for_tokens [\#791](https://github.com/auth0/ruby-auth0/pull/791) ([gagalago](https://github.com/gagalago)) + +**Fixed** +- fix: replace CGI.parse, removed in Ruby 4.0, with URI.decode_www_form [\#793](https://github.com/auth0/ruby-auth0/pull/793) ([gagalago](https://github.com/gagalago)) +- fix: require auth0/version so client construction works and correct rest-client changelog note [\#790](https://github.com/auth0/ruby-auth0/pull/790) ([kishore7snehil](https://github.com/kishore7snehil)) + ## [v6.1.0](https://github.com/auth0/ruby-auth0/tree/v6.1.0) (2026-08-19) [Full Changelog](https://github.com/auth0/ruby-auth0/compare/v6.0.0...v6.1.0) diff --git a/Gemfile.lock b/Gemfile.lock index 55c5bca6..50fe2433 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - auth0 (6.1.0) + auth0 (6.2.0) addressable (~> 2.8) jwt (>= 2.7, < 4.0) rest-client (~> 2.1) diff --git a/examples/ruby-api/Gemfile.lock b/examples/ruby-api/Gemfile.lock index da27bfaf..48f9ee49 100644 --- a/examples/ruby-api/Gemfile.lock +++ b/examples/ruby-api/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: ../.. specs: - auth0 (6.1.0) + auth0 (6.2.0) addressable (~> 2.8) jwt (>= 2.7, < 4.0) rest-client (~> 2.1) diff --git a/lib/auth0/version.rb b/lib/auth0/version.rb index 7d05cbd5..bc4a94d4 100644 --- a/lib/auth0/version.rb +++ b/lib/auth0/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Auth0 - VERSION = "6.1.0" + VERSION = "6.2.0" end