diff --git a/CHANGELOG.md b/CHANGELOG.md index 25a2d8379..0369d827c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +# 0.4.22 +* FI-2271: Update OAuth input requirements by @AlyssaWang in https://github.com/inferno-framework/inferno-core/pull/403 + # 0.4.21 * FI-2075: Input validation by @AlyssaWang in https://github.com/inferno-framework/inferno-core/pull/388 * FI-2003: Fix Codecov flag settings by @AlyssaWang in https://github.com/inferno-framework/inferno-core/pull/394 diff --git a/Gemfile.lock b/Gemfile.lock index d58cc00b8..b13213d9a 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - inferno_core (0.4.21) + inferno_core (0.4.22) activesupport (~> 6.1.7.5) base62-rb (= 0.3.1) blueprinter (= 0.25.2) @@ -178,9 +178,9 @@ GEM kramdown (2.4.0) rexml method_source (1.0.0) - mime-types (3.4.1) + mime-types (3.5.1) mime-types-data (~> 3.2015) - mime-types-data (3.2023.0808) + mime-types-data (3.2023.1003) minitest (5.18.0) multi_json (1.15.0) multi_xml (0.6.0) @@ -219,12 +219,12 @@ GEM public_suffix (4.0.7) puma (5.6.7) nio4r (~> 2.0) - racc (1.7.1) + racc (1.7.2) rack (2.2.6.4) rack-test (1.1.0) rack (>= 1.0, < 3) rainbow (3.1.1) - rake (13.0.6) + rake (13.1.0) redis (4.8.1) regexp_parser (2.2.0) reline (0.3.2) @@ -282,9 +282,9 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.3) - sqlite3 (1.6.7-arm64-darwin) - sqlite3 (1.6.7-x86_64-darwin) - sqlite3 (1.6.7-x86_64-linux) + sqlite3 (1.6.8-arm64-darwin) + sqlite3 (1.6.8-x86_64-darwin) + sqlite3 (1.6.8-x86_64-linux) strings (0.2.1) strings-ansi (~> 0.2) unicode-display_width (>= 1.5, < 3.0) diff --git a/lib/inferno/version.rb b/lib/inferno/version.rb index f9b735af1..63d752bdf 100644 --- a/lib/inferno/version.rb +++ b/lib/inferno/version.rb @@ -1,4 +1,4 @@ module Inferno # Standard patterns for gem versions: https://guides.rubygems.org/patterns/ - VERSION = '0.4.21'.freeze + VERSION = '0.4.22'.freeze end