Skip to content

Commit

Permalink
Release 0.4.19 (#391)
Browse files Browse the repository at this point in the history
* bump puma in gemspec

* bump activesupport in gemspec

* bump version

* update changelog

* fix changelog item formatting
  • Loading branch information
Jammjammjamm authored Sep 12, 2023
1 parent 8d88911 commit 3b09428
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 13 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
20 changes: 10 additions & 10 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -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)
Expand All @@ -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)
Expand Down Expand Up @@ -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)
Expand All @@ -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)
Expand Down Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions inferno_core.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion lib/inferno/version.rb
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 3b09428

Please sign in to comment.