From 3b094281f423eab47ccbbe8f0e59ea1ee45c88c5 Mon Sep 17 00:00:00 2001 From: Stephen MacVicar Date: Tue, 12 Sep 2023 08:19:28 -0400 Subject: [PATCH] Release 0.4.19 (#391) * bump puma in gemspec * bump activesupport in gemspec * bump version * update changelog * fix changelog item formatting --- CHANGELOG.md | 19 +++++++++++++++++++ Gemfile.lock | 20 ++++++++++---------- inferno_core.gemspec | 4 ++-- lib/inferno/version.rb | 2 +- 4 files changed, 32 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c0df4663d..f175a2ed8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,22 @@ +# 0.4.19 +* FI-2053: Fix inputs dialog overflow by @AlyssaWang in + https://github.com/inferno-framework/inferno-core/pull/382 +* FI-2038: Prevent modal close on edit by @AlyssaWang in + https://github.com/inferno-framework/inferno-core/pull/383 +* FI-2094: Improve tooltip a11y by @AlyssaWang in + https://github.com/inferno-framework/inferno-core/pull/386 +* FI-2035: Improve error handling for validator errors by @dehall in + https://github.com/inferno-framework/inferno-core/pull/379 +* FI-2070: Inferno Framework Documentation Advanced Test Features Information + Fix by @emichaud998 in + https://github.com/inferno-framework/inferno-core/pull/385 +* FI-2041: Custom suites with no ids now throw standard error by @alisawallace + in https://github.com/inferno-framework/inferno-core/pull/387 +* FI-2156: Dependabot updates by @Jammjammjamm in + https://github.com/inferno-framework/inferno-core/pull/390 +* FI-2086: fix errors on webpack shutdown by @alisawallace in + https://github.com/inferno-framework/inferno-core/pull/389 + # 0.4.18 * Fix a bug which could prevent some test results from appearing until the page is reloaded. diff --git a/Gemfile.lock b/Gemfile.lock index 5a960c04c..7f3f435a4 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,8 +1,8 @@ PATH remote: . specs: - inferno_core (0.4.18) - activesupport (~> 6.1) + inferno_core (0.4.19) + activesupport (~> 6.1.7.5) base62-rb (= 0.3.1) blueprinter (= 0.25.2) dotenv (~> 2.7) @@ -19,7 +19,7 @@ PATH oj (= 3.11.0) pry pry-byebug - puma (~> 5.3) + puma (~> 5.6.7) rake (~> 13.0) sequel (~> 5.42.0) sidekiq (~> 6.5.6) @@ -178,7 +178,7 @@ GEM kramdown (2.4.0) rexml method_source (1.0.0) - mime-types (3.5.0) + mime-types (3.5.1) mime-types-data (~> 3.2015) mime-types-data (3.2023.0808) minitest (5.18.0) @@ -192,11 +192,11 @@ GEM mustermann (= 1.1.2) netrc (0.11.0) nio4r (2.5.9) - nokogiri (1.15.3-arm64-darwin) + nokogiri (1.15.4-arm64-darwin) racc (~> 1.4) - nokogiri (1.15.3-x86_64-darwin) + nokogiri (1.15.4-x86_64-darwin) racc (~> 1.4) - nokogiri (1.15.3-x86_64-linux) + nokogiri (1.15.4-x86_64-linux) racc (~> 1.4) oauth2 (1.4.11) faraday (>= 0.17.3, < 3.0) @@ -282,9 +282,9 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.3) - sqlite3 (1.6.3-arm64-darwin) - sqlite3 (1.6.3-x86_64-darwin) - sqlite3 (1.6.3-x86_64-linux) + sqlite3 (1.6.5-arm64-darwin) + sqlite3 (1.6.5-x86_64-darwin) + sqlite3 (1.6.5-x86_64-linux) strings (0.2.1) strings-ansi (~> 0.2) unicode-display_width (>= 1.5, < 3.0) diff --git a/inferno_core.gemspec b/inferno_core.gemspec index e3fb21184..b49d64cf8 100644 --- a/inferno_core.gemspec +++ b/inferno_core.gemspec @@ -11,7 +11,7 @@ Gem::Specification.new do |spec| spec.description = 'Inferno Core is an open source tool for testing data exchanges enabled by the FHIR standand' spec.homepage = 'https://github.com/inferno-framework/inferno-core' spec.license = 'Apache-2.0' - spec.add_runtime_dependency 'activesupport', '~> 6.1' + spec.add_runtime_dependency 'activesupport', '~> 6.1.7.5' spec.add_runtime_dependency 'base62-rb', '0.3.1' spec.add_runtime_dependency 'blueprinter', '0.25.2' spec.add_runtime_dependency 'dotenv', '~> 2.7' @@ -28,7 +28,7 @@ Gem::Specification.new do |spec| spec.add_runtime_dependency 'oj', '3.11.0' spec.add_runtime_dependency 'pry' spec.add_runtime_dependency 'pry-byebug' - spec.add_runtime_dependency 'puma', '~> 5.3' + spec.add_runtime_dependency 'puma', '~> 5.6.7' spec.add_runtime_dependency 'rake', '~> 13.0' spec.add_runtime_dependency 'sequel', '~> 5.42.0' spec.add_runtime_dependency 'sidekiq', '~> 6.5.6' diff --git a/lib/inferno/version.rb b/lib/inferno/version.rb index 0f6f1b3fd..3d5ed52cf 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.18'.freeze + VERSION = '0.4.19'.freeze end