From 0a95ecef4db64fbb853fe6d15344ddeec1b89e89 Mon Sep 17 00:00:00 2001 From: Robert Passas <35311744+rpassas@users.noreply.github.com> Date: Wed, 5 Jun 2024 09:47:55 -0400 Subject: [PATCH] Release 0438 (#501) * version bump * changelog * bump rexml --------- Co-authored-by: Stephen MacVicar --- CHANGELOG.md | 10 ++++++++++ Gemfile.lock | 16 +++++++++------- lib/inferno/version.rb | 2 +- 3 files changed, 20 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ff154268e..764617ccd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## 0.4.38 +* FI-2765: Automatically run migrations by @Jammjammjamm in https://github.com/inferno-framework/inferno-core/pull/496 +* FI-2753: Add hover effect to request details by @AlyssaWang in https://github.com/inferno-framework/inferno-core/pull/495 +* FI-2754: Add lines count to request details by @AlyssaWang in https://github.com/inferno-framework/inferno-core/pull/493 +* FI-2801: Fix validator service race condition by @Jammjammjamm in https://github.com/inferno-framework/inferno-core/pull/498 +* FI-2688: Migrate template to HL7 validator wrapper by @dehall in https://github.com/inferno-framework/inferno-core/pull/492 +* FI-2734: Fix single test run error by @AlyssaWang in https://github.com/inferno-framework/inferno-core/pull/500 +* FI-2791: Revert resume test route refactor by @Jammjammjamm in https://github.com/inferno-framework/inferno-core/pull/497 +* FI-2745: Skip loading validator sessions when using inferno console by @Jammjammjamm in https://github.com/inferno-framework/inferno-core/pull/499 + # 0.4.37 Aligning changes with published gem - the previously published gem does not include all listed changes. diff --git a/Gemfile.lock b/Gemfile.lock index d340c1cff..c6b1207e0 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - inferno_core (0.4.37) + inferno_core (0.4.38) activesupport (~> 6.1.7.5) base62-rb (= 0.3.1) blueprinter (= 0.25.2) @@ -124,17 +124,17 @@ GEM rack (>= 1.5) rest-client (~> 2.0) tilt (>= 1.1) - fhir_dstu2_models (1.1.1) + fhir_dstu2_models (1.2.0) bcp47 (>= 0.3) date_time_precision (>= 0.8) mime-types (>= 3.0) nokogiri (>= 1.11.4) - fhir_models (4.2.2) + fhir_models (4.3.0) bcp47 (>= 0.3) date_time_precision (>= 0.8) mime-types (>= 3.0) nokogiri (>= 1.11.4) - fhir_stu3_models (3.1.1) + fhir_stu3_models (3.2.0) bcp47 (>= 0.3) date_time_precision (>= 0.8) mime-types (>= 3.0) @@ -156,7 +156,7 @@ GEM hansi (0.2.1) hashdiff (1.0.1) http-accept (1.7.0) - http-cookie (1.0.5) + http-cookie (1.0.6) domain_name (~> 0.5) i18n (1.12.0) concurrent-ruby (~> 1.0) @@ -210,7 +210,7 @@ GEM public_suffix (4.0.7) puma (5.6.8) nio4r (~> 2.0) - racc (1.7.3) + racc (1.8.0) rack (2.2.9) rack-test (1.1.0) rack (>= 1.0, < 3) @@ -226,7 +226,8 @@ GEM http-cookie (>= 1.0.2, < 2.0) mime-types (>= 1.16, < 4.0) netrc (~> 0.8) - rexml (3.2.5) + rexml (3.2.8) + strscan (>= 3.0.9) rouge (4.2.1) rspec (3.11.0) rspec-core (~> 3.11.0) @@ -283,6 +284,7 @@ GEM unicode-display_width (>= 1.5, < 3.0) unicode_utils (~> 1.4) strings-ansi (0.2.0) + strscan (3.1.0) thor (1.2.2) tilt (2.3.0) tty-color (0.6.0) diff --git a/lib/inferno/version.rb b/lib/inferno/version.rb index 6b3b3d3a2..0067950a3 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.37'.freeze + VERSION = '0.4.38'.freeze end