From 0181b6da155a488f48a5a2d77cef286601a905ed Mon Sep 17 00:00:00 2001 From: rpassas <35311744+rpassas@users.noreply.github.com> Date: Tue, 5 Dec 2023 10:27:38 -0500 Subject: [PATCH] Inferno Core v0.4.23 Release (#415) * version bump * change log update --- CHANGELOG.md | 9 +++++++++ Gemfile.lock | 24 ++++++++++-------------- lib/inferno/version.rb | 2 +- 3 files changed, 20 insertions(+), 15 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0369d827c..cbb919eb8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +# 0.4.23 +* FI-2233: New validation module for HL7 validator wrapper by @dehall in https://github.com/inferno-framework/inferno-core/pull/401 +* FI-2091 Replaced docker-compose with docker compose by @360dgries in https://github.com/inferno-framework/inferno-core/pull/405 +* Backend job to start up sessions on HL7 validator wrapper by @dehall in https://github.com/inferno-framework/inferno-core/pull/406 +* Bump @adobe/css-tools from 4.2.0 to 4.3.2 by @dependabot in https://github.com/inferno-framework/inferno-core/pull/411 +* Bump @babel/traverse from 7.22.4 to 7.23.5 by @dependabot in https://github.com/inferno-framework/inferno-core/pull/410 +* Update null test by @AlyssaWang in https://github.com/inferno-framework/inferno-core/pull/412 +* FI-2330: Request tags by @Jammjammjamm in https://github.com/inferno-framework/inferno-core/pull/407 + # 0.4.22 * FI-2271: Update OAuth input requirements by @AlyssaWang in https://github.com/inferno-framework/inferno-core/pull/403 diff --git a/Gemfile.lock b/Gemfile.lock index b13213d9a..fb904ce17 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - inferno_core (0.4.22) + inferno_core (0.4.23) activesupport (~> 6.1.7.5) base62-rb (= 0.3.1) blueprinter (= 0.25.2) @@ -62,8 +62,7 @@ GEM reline (>= 0.3.1) diff-lcs (1.5.0) docile (1.4.0) - domain_name (0.5.20190701) - unf (>= 0.0.5, < 1.0.0) + domain_name (0.6.20231109) dotenv (2.8.1) dry-auto_inject (0.9.0) dry-container (>= 0.3.4) @@ -191,12 +190,12 @@ GEM hansi (~> 0.2.0) mustermann (= 1.1.2) netrc (0.11.0) - nio4r (2.5.9) - nokogiri (1.15.4-arm64-darwin) + nio4r (2.7.0) + nokogiri (1.15.5-arm64-darwin) racc (~> 1.4) - nokogiri (1.15.4-x86_64-darwin) + nokogiri (1.15.5-x86_64-darwin) racc (~> 1.4) - nokogiri (1.15.4-x86_64-linux) + nokogiri (1.15.5-x86_64-linux) racc (~> 1.4) oauth2 (1.4.11) faraday (>= 0.17.3, < 3.0) @@ -219,7 +218,7 @@ GEM public_suffix (4.0.7) puma (5.6.7) nio4r (~> 2.0) - racc (1.7.2) + racc (1.7.3) rack (2.2.6.4) rack-test (1.1.0) rack (>= 1.0, < 3) @@ -282,9 +281,9 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.3) - sqlite3 (1.6.8-arm64-darwin) - sqlite3 (1.6.8-x86_64-darwin) - sqlite3 (1.6.8-x86_64-linux) + sqlite3 (1.6.9-arm64-darwin) + sqlite3 (1.6.9-x86_64-darwin) + sqlite3 (1.6.9-x86_64-linux) strings (0.2.1) strings-ansi (~> 0.2) unicode-display_width (>= 1.5, < 3.0) @@ -303,9 +302,6 @@ GEM tty-screen (0.8.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unf (0.1.4) - unf_ext - unf_ext (0.0.8.2) unicode-display_width (2.1.0) unicode_utils (1.4.0) webmock (3.14.0) diff --git a/lib/inferno/version.rb b/lib/inferno/version.rb index 63d752bdf..3d0d231bf 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.22'.freeze + VERSION = '0.4.23'.freeze end