From 38ce2a7d72564b5b49d466eed2d65e12d794bd98 Mon Sep 17 00:00:00 2001 From: Robert Passas <35311744+rpassas@users.noreply.github.com> Date: Fri, 8 Mar 2024 12:28:12 -0500 Subject: [PATCH] Inferno Core 0.4.30 release (#463) * version bump * change log * adding to changelog * dependency updates --- CHANGELOG.md | 13 +++++++++++++ Gemfile.lock | 14 +++++++------- lib/inferno/version.rb | 2 +- 3 files changed, 21 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f938dbcb..0fcdea555 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +# 0.4.30 +* FI-2485: Update mobile main test run button appearance by @AlyssaWang in https://github.com/inferno-framework/inferno-core/pull/455 +* FI-2454: Add landing page and suite options skeletons by @AlyssaWang in https://github.com/inferno-framework/inferno-core/pull/453 +* FI-2433: Collapse request details by @AlyssaWang in https://github.com/inferno-framework/inferno-core/pull/448 +* FI-2431 inferno new IG loading by @Shaumik-Ashraf in https://github.com/inferno-framework/inferno-core/pull/454 +* Fi 2311 store session ids by @rpassas in https://github.com/inferno-framework/inferno-core/pull/427 +* FI-2337: add disableDefaultResourceFetcher to fhir_resource_validator.cliContext defaults by @dehall in https://github.com/inferno-framework/inferno-core/pull/456 +* Update new website link on old documentation site by @Shaumik-Ashraf in https://github.com/inferno-framework/inferno-core/pull/460 +* FI-2490: Fix multiple test run results overlapping by @AlyssaWang in https://github.com/inferno-framework/inferno-core/pull/461 +* FI-2338: New Dockerfile for validator by @dehall in https://github.com/inferno-framework/inferno-core/pull/458 +* FI-2562: Fix incorrect progress status on run buttons by @AlyssaWang in https://github.com/inferno-framework/inferno-core/pull/462 +* FI-2567: Fix client instance variables by @Jammjammjamm in https://github.com/inferno-framework/inferno-core/pull/464 + # 0.4.29 * Add instructions for loading external test kits. by @arscan in https://github.com/inferno-framework/inferno-core/pull/450 * FI-2487: Revert "FI-2318 Allow for form data at session create endpoint (#429)" by @Jammjammjamm in https://github.com/inferno-framework/inferno-core/pull/451 diff --git a/Gemfile.lock b/Gemfile.lock index 976afa4ea..57f70a054 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - inferno_core (0.4.29) + inferno_core (0.4.30) activesupport (~> 6.1.7.5) base62-rb (= 0.3.1) blueprinter (= 0.25.2) @@ -42,6 +42,7 @@ GEM ast (2.4.2) backports (3.23.0) base62-rb (0.3.1) + base64 (0.2.0) bcp47 (0.3.3) i18n blueprinter (0.25.2) @@ -174,13 +175,14 @@ GEM io-console (0.6.0) irb (1.6.2) reline (>= 0.3.0) - jwt (2.7.1) + jwt (2.8.1) + base64 kramdown (2.4.0) rexml method_source (1.0.0) mime-types (3.5.2) mime-types-data (~> 3.2015) - mime-types-data (3.2024.0206) + mime-types-data (3.2024.0305) minitest (5.18.0) multi_json (1.15.0) multi_xml (0.6.0) @@ -220,7 +222,7 @@ GEM puma (5.6.8) nio4r (~> 2.0) racc (1.7.3) - rack (2.2.6.4) + rack (2.2.8.1) rack-test (1.1.0) rack (>= 1.0, < 3) rainbow (3.1.1) @@ -309,9 +311,7 @@ GEM addressable (>= 2.8.0) crack (>= 0.3.2) hashdiff (>= 0.4.0, < 2.0.0) - webrick (1.7.0) - yard (0.9.28) - webrick (~> 1.7.0) + yard (0.9.36) yard-junk (0.0.9) backports (>= 3.18) rainbow diff --git a/lib/inferno/version.rb b/lib/inferno/version.rb index f26a75b68..4805cbc9e 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.29'.freeze + VERSION = '0.4.30'.freeze end