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

Release 0.4.21 #402

Merged
merged 4 commits into from
Oct 30, 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
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# 0.4.21
* FI-2075: Input validation by @AlyssaWang in https://github.com/inferno-framework/inferno-core/pull/388
* FI-2003: Fix Codecov flag settings by @AlyssaWang in https://github.com/inferno-framework/inferno-core/pull/394
* FI-2166: improve validator error handling without changing API by @dehall in https://github.com/inferno-framework/inferno-core/pull/397
* FI-2198 Markdown processing added to group level by @360dgries in https://github.com/inferno-framework/inferno-core/pull/399
* FI-2015 GET requests added to fhir_operation by @360dgries in https://github.com/inferno-framework/inferno-core/pull/380
* Fix npm install that fails due to wrong checksum in package-lock. by @arscan in https://github.com/inferno-framework/inferno-core/pull/400
* Added Documentation for Windows by @360dgries in https://github.com/inferno-framework/inferno-core/pull/375
* g10 preset updated with new bulk token endpoint by @rpassas

# 0.4.20
* FI-2077: Improve colors and contrasts for a11y by @AlyssaWang in
https://github.com/inferno-framework/inferno-core/pull/392
Expand Down
16 changes: 8 additions & 8 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
inferno_core (0.4.20)
inferno_core (0.4.21)
activesupport (~> 6.1.7.5)
base62-rb (= 0.3.1)
blueprinter (= 0.25.2)
Expand Down Expand Up @@ -178,7 +178,7 @@ GEM
kramdown (2.4.0)
rexml
method_source (1.0.0)
mime-types (3.5.1)
mime-types (3.4.1)
mime-types-data (~> 3.2015)
mime-types-data (3.2023.0808)
minitest (5.18.0)
Expand Down Expand Up @@ -235,7 +235,7 @@ GEM
mime-types (>= 1.16, < 4.0)
netrc (~> 0.8)
rexml (3.2.5)
rouge (4.1.3)
rouge (4.2.0)
rspec (3.11.0)
rspec-core (~> 3.11.0)
rspec-expectations (~> 3.11.0)
Expand Down Expand Up @@ -269,7 +269,7 @@ GEM
ruby-progressbar (1.11.0)
ruby2_keywords (0.0.5)
sequel (5.42.0)
sidekiq (6.5.9)
sidekiq (6.5.12)
connection_pool (>= 2.2.5, < 3)
rack (~> 2.0)
redis (>= 4.5.0, < 5)
Expand All @@ -282,16 +282,16 @@ GEM
simplecov (~> 0.19)
simplecov-html (0.12.3)
simplecov_json_formatter (0.1.3)
sqlite3 (1.6.6-arm64-darwin)
sqlite3 (1.6.6-x86_64-darwin)
sqlite3 (1.6.6-x86_64-linux)
sqlite3 (1.6.7-arm64-darwin)
sqlite3 (1.6.7-x86_64-darwin)
sqlite3 (1.6.7-x86_64-linux)
strings (0.2.1)
strings-ansi (~> 0.2)
unicode-display_width (>= 1.5, < 3.0)
unicode_utils (~> 1.4)
strings-ansi (0.2.0)
thor (1.2.2)
tilt (2.2.0)
tilt (2.3.0)
tty-color (0.6.0)
tty-markdown (0.7.2)
kramdown (>= 1.16.2, < 3.0)
Expand Down
2 changes: 1 addition & 1 deletion config/presets/g10_certification_preset.json.erb
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
"type": "text",
"title": "Backend Services Token Endpoint",
"description": "The OAuth 2.0 Token Endpoint used by the Backend Services specification\n to provide bearer tokens.",
"value": "https://inferno.healthit.gov/reference-server/oauth/bulk-token"
"value": "https://inferno.healthit.gov/reference-server/oauth/token"
},
{
"name": "bulk_client_id",
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.20'.freeze
VERSION = '0.4.21'.freeze
end
Loading