From 5e4ec6d68a04558bbe9e263ce9925ebbbd877b30 Mon Sep 17 00:00:00 2001 From: Steve Hobbs Date: Mon, 10 Oct 2022 16:05:23 +0100 Subject: [PATCH] Release v5.10.0 (#391) --- CHANGELOG.md | 11 +++++++++++ Gemfile.lock | 7 +++++-- lib/auth0/version.rb | 2 +- 3 files changed, 17 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 985577c6..0f470cd1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Change Log +## [v5.10.0](https://github.com/auth0/ruby-auth0/tree/v5.10.0) (2022-10-10) +[Full Changelog](https://github.com/auth0/ruby-auth0/compare/v5.9.0...v5.10.0) + +**Changed** +- Update jwt ~2.5 [\#384](https://github.com/auth0/ruby-auth0/pull/384) ([stevehobbsdev](https://github.com/stevehobbsdev)) + +**Fixed** +- Stop :get, :delete parameters from bleeding into subsequent requests [\#388](https://github.com/auth0/ruby-auth0/pull/388) ([stevehobbsdev](https://github.com/stevehobbsdev)) +- Support complex field names in export_users [\#387](https://github.com/auth0/ruby-auth0/pull/387) ([stevehobbsdev](https://github.com/stevehobbsdev)) +- Reconfigure rate limiting exponential backoff [\#386](https://github.com/auth0/ruby-auth0/pull/386) ([stevehobbsdev](https://github.com/stevehobbsdev)) + ## [v5.9.0](https://github.com/auth0/ruby-auth0/tree/v5.9.0) (2022-08-24) [Full Changelog](https://github.com/auth0/ruby-auth0/compare/v5.8.1...v5.9.0) diff --git a/Gemfile.lock b/Gemfile.lock index b008120e..0dcef323 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - auth0 (5.9.0) + auth0 (5.10.0) addressable (~> 2.8) jwt (~> 2.5) rest-client (~> 2.1) @@ -103,6 +103,8 @@ GEM netrc (0.11.0) nokogiri (1.13.8-aarch64-linux) racc (~> 1.4) + nokogiri (1.13.8-arm64-darwin) + racc (~> 1.4) nokogiri (1.13.8-x86_64-linux) racc (~> 1.4) notiffany (0.1.3) @@ -215,6 +217,7 @@ GEM PLATFORMS aarch64-linux + arm64-darwin-21 x86_64-linux DEPENDENCIES @@ -244,4 +247,4 @@ DEPENDENCIES webmock BUNDLED WITH - 2.3.22 + 2.3.7 diff --git a/lib/auth0/version.rb b/lib/auth0/version.rb index 882c7754..a4bc6035 100644 --- a/lib/auth0/version.rb +++ b/lib/auth0/version.rb @@ -1,4 +1,4 @@ # current version of gem module Auth0 - VERSION = '5.9.0'.freeze + VERSION = '5.10.0'.freeze end