Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Inferno Core v0.4.23 Release #415

Merged
merged 3 commits into from
Dec 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
24 changes: 10 additions & 14 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -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)
Expand Down Expand Up @@ -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)
Expand Down Expand Up @@ -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)
Expand All @@ -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)
Expand Down Expand Up @@ -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)
Expand All @@ -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)
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.22'.freeze
VERSION = '0.4.23'.freeze
end
Loading