From a1f9e017c164b0dc46efc4b100c24f459f61eec4 Mon Sep 17 00:00:00 2001 From: Steve Hobbs Date: Mon, 24 Apr 2023 14:54:57 +0100 Subject: [PATCH] Release v5.13.0 (#471) --- CHANGELOG.md | 9 +++++++++ Gemfile.lock | 12 ++++++------ lib/auth0/version.rb | 2 +- 3 files changed, 16 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bf3d98e1..1cce24e4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Change Log +## [v5.13.0](https://github.com/auth0/ruby-auth0/tree/v5.13.0) (2023-04-24) +[Full Changelog](https://github.com/auth0/ruby-auth0/compare/v5.12.0...v5.13.0) + +**Added** +- [SDK-4142] Add support for /oauth/par [\#470](https://github.com/auth0/ruby-auth0/pull/470) ([stevehobbsdev](https://github.com/stevehobbsdev)) + +**Deprecated** +- Drop support for 2.7 in CI build [\#467](https://github.com/auth0/ruby-auth0/pull/467) ([stevehobbsdev](https://github.com/stevehobbsdev)) + ## [v5.12.0](https://github.com/auth0/ruby-auth0/tree/v5.12.0) (2023-03-13) [Full Changelog](https://github.com/auth0/ruby-auth0/compare/v5.11.0...v5.12.0) diff --git a/Gemfile.lock b/Gemfile.lock index e0a1fd37..2adbbe1c 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - auth0 (5.12.0) + auth0 (5.13.0) addressable (~> 2.8) jwt (~> 2.5) rest-client (~> 2.1) @@ -89,7 +89,7 @@ GEM listen (3.8.0) rb-fsevent (~> 0.10, >= 0.10.3) rb-inotify (~> 0.9, >= 0.9.10) - loofah (2.19.1) + loofah (2.20.0) crass (~> 1.0.2) nokogiri (>= 1.5.9) lumberjack (1.2.8) @@ -112,7 +112,7 @@ GEM notiffany (0.1.3) nenv (~> 0.1) shellany (~> 0.0) - parallel (1.22.1) + parallel (1.23.0) parser (3.2.2.0) ast (~> 2.4.1) pp (0.4.0) @@ -157,12 +157,12 @@ GEM rspec-core (~> 3.12.0) rspec-expectations (~> 3.12.0) rspec-mocks (~> 3.12.0) - rspec-core (3.12.1) + rspec-core (3.12.2) rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-expectations (3.12.3) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.12.0) - rspec-mocks (3.12.4) + rspec-mocks (3.12.5) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.12.0) rspec-support (3.12.0) diff --git a/lib/auth0/version.rb b/lib/auth0/version.rb index cbf67837..e46ed870 100644 --- a/lib/auth0/version.rb +++ b/lib/auth0/version.rb @@ -1,4 +1,4 @@ # current version of gem module Auth0 - VERSION = '5.12.0'.freeze + VERSION = '5.13.0'.freeze end