diff --git a/CHANGELOG.md b/CHANGELOG.md index 1cce24e4..7babf211 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## [v5.14.0](https://github.com/auth0/ruby-auth0/tree/v5.14.0) (2023-07-13) +[Full Changelog](https://github.com/auth0/ruby-auth0/compare/v5.13.0...v5.14.0) + +**Added** +- [SDK-4386] Support Organization Name in Authorize [\#495](https://github.com/auth0/ruby-auth0/pull/495) ([stevehobbsdev](https://github.com/stevehobbsdev)) + ## [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) diff --git a/Gemfile.lock b/Gemfile.lock index 9a1f2a41..d0ee57b3 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - auth0 (5.13.0) + auth0 (5.14.0) addressable (~> 2.8) jwt (~> 2.7) rest-client (~> 2.1) @@ -11,20 +11,20 @@ PATH GEM remote: https://rubygems.org/ specs: - actionpack (7.0.5.1) - actionview (= 7.0.5.1) - activesupport (= 7.0.5.1) + actionpack (7.0.6) + actionview (= 7.0.6) + activesupport (= 7.0.6) rack (~> 2.0, >= 2.2.4) rack-test (>= 0.6.3) rails-dom-testing (~> 2.0) rails-html-sanitizer (~> 1.0, >= 1.2.0) - actionview (7.0.5.1) - activesupport (= 7.0.5.1) + actionview (7.0.6) + activesupport (= 7.0.6) builder (~> 3.1) erubi (~> 1.4) rails-dom-testing (~> 2.0) rails-html-sanitizer (~> 1.1, >= 1.2.0) - activesupport (7.0.5.1) + activesupport (7.0.6) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 1.6, < 2) minitest (>= 5.1) @@ -82,7 +82,7 @@ GEM i18n (1.14.1) concurrent-ruby (~> 1.0) io-console (0.6.0) - irb (1.7.2) + irb (1.7.3) reline (>= 0.3.6) json (2.6.3) jwt (2.7.1) @@ -102,13 +102,13 @@ GEM multi_json (1.15.0) nenv (0.3.0) netrc (0.11.0) - nokogiri (1.15.2-aarch64-linux) + nokogiri (1.15.3-aarch64-linux) racc (~> 1.4) - nokogiri (1.15.2-arm64-darwin) + nokogiri (1.15.3-arm64-darwin) racc (~> 1.4) - nokogiri (1.15.2-x86_64-darwin) + nokogiri (1.15.3-x86_64-darwin) racc (~> 1.4) - nokogiri (1.15.2-x86_64-linux) + nokogiri (1.15.3-x86_64-linux) racc (~> 1.4) notiffany (0.1.3) nenv (~> 0.1) @@ -123,20 +123,21 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) - public_suffix (5.0.1) + public_suffix (5.0.3) racc (1.7.1) rack (2.2.7) rack-test (0.8.3) rack (>= 1.0, < 3) - rails-dom-testing (2.0.3) - activesupport (>= 4.2.0) + rails-dom-testing (2.1.1) + activesupport (>= 5.0.0) + minitest nokogiri (>= 1.6) rails-html-sanitizer (1.6.0) loofah (~> 2.21) nokogiri (~> 1.14) - railties (7.0.5.1) - actionpack (= 7.0.5.1) - activesupport (= 7.0.5.1) + railties (7.0.6) + actionpack (= 7.0.6) + activesupport (= 7.0.6) method_source rake (>= 12.2) thor (~> 1.0) @@ -165,10 +166,10 @@ GEM rspec-expectations (3.12.3) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.12.0) - rspec-mocks (3.12.5) + rspec-mocks (3.12.6) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (3.12.1) rubocop (1.54.1) json (~> 2.3) language_server-protocol (>= 3.17.0) @@ -201,7 +202,7 @@ GEM term-ansicolor (1.7.1) tins (~> 1.0) terminal-notifier-guard (1.7.0) - thor (1.2.1) + thor (1.2.2) timecop (0.9.6) tins (1.32.1) sync @@ -217,7 +218,7 @@ GEM crack (>= 0.3.2) hashdiff (>= 0.4.0, < 2.0.0) zache (0.13.0) - zeitwerk (2.6.7) + zeitwerk (2.6.8) PLATFORMS aarch64-linux diff --git a/lib/auth0/version.rb b/lib/auth0/version.rb index e46ed870..bded92cc 100644 --- a/lib/auth0/version.rb +++ b/lib/auth0/version.rb @@ -1,4 +1,4 @@ # current version of gem module Auth0 - VERSION = '5.13.0'.freeze + VERSION = '5.14.0'.freeze end