From fef1e5df68dbec25290cd961c312065b83c4a418 Mon Sep 17 00:00:00 2001 From: rpassas <35311744+rpassas@users.noreply.github.com> Date: Mon, 8 Jan 2024 14:18:50 -0500 Subject: [PATCH] Release 0.4.26 (#428) * change log * version bump * correct gemfile.lock --- CHANGELOG.md | 6 ++++++ Gemfile.lock | 18 +++++++++--------- lib/inferno/version.rb | 2 +- 3 files changed, 16 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index af5143615..06fde3735 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# 0.4.26 +* FI-2392-header-jog by @AlyssaWang in https://github.com/inferno-framework/inferno-core/pull/422 +* FI-2329 Add integer conversion to need_to_refresh? method by @360dgries in https://github.com/inferno-framework/inferno-core/pull/423 +* FI-2396-redirect-session by @AlyssaWang in https://github.com/inferno-framework/inferno-core/pull/426 +* FI-2182: Upgrade to TypeScript 5 by @AlyssaWang in https://github.com/inferno-framework/inferno-core/pull/418 + # 0.4.25 * FI-2270: Migrate FI-1990, fix flicker by @AlyssaWang in https://github.com/inferno-framework/inferno-core/pull/409 * FI-2383: Force page reroute in header by @AlyssaWang in https://github.com/inferno-framework/inferno-core/pull/419 diff --git a/Gemfile.lock b/Gemfile.lock index 61190b351..22ac334d7 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - inferno_core (0.4.25) + inferno_core (0.4.26) activesupport (~> 6.1.7.5) base62-rb (= 0.3.1) blueprinter (= 0.25.2) @@ -177,7 +177,7 @@ GEM kramdown (2.4.0) rexml method_source (1.0.0) - mime-types (3.5.1) + mime-types (3.4.1) mime-types-data (~> 3.2015) mime-types-data (3.2023.1205) minitest (5.18.0) @@ -191,11 +191,11 @@ GEM mustermann (= 1.1.2) netrc (0.11.0) nio4r (2.7.0) - nokogiri (1.15.5-arm64-darwin) + nokogiri (1.16.0-arm64-darwin) racc (~> 1.4) - nokogiri (1.15.5-x86_64-darwin) + nokogiri (1.16.0-x86_64-darwin) racc (~> 1.4) - nokogiri (1.15.5-x86_64-linux) + nokogiri (1.16.0-x86_64-linux) racc (~> 1.4) oauth2 (1.4.11) faraday (>= 0.17.3, < 3.0) @@ -216,7 +216,7 @@ GEM byebug (~> 11.0) pry (~> 0.13.0) public_suffix (4.0.7) - puma (5.6.7) + puma (5.6.8) nio4r (~> 2.0) racc (1.7.3) rack (2.2.6.4) @@ -281,9 +281,9 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.3) - sqlite3 (1.6.9-arm64-darwin) - sqlite3 (1.6.9-x86_64-darwin) - sqlite3 (1.6.9-x86_64-linux) + sqlite3 (1.7.0-arm64-darwin) + sqlite3 (1.7.0-x86_64-darwin) + sqlite3 (1.7.0-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 84c993416..3d6b46ccc 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.25'.freeze + VERSION = '0.4.26'.freeze end