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 @@
v6.1.0
v6.2.0
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion examples/ruby-api/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion lib/auth0/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Auth0
VERSION = "6.1.0"
VERSION = "6.2.0"
end
Loading