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.6.0 #592

Merged
merged 7 commits into from
Jan 21, 2025
Merged
Show file tree
Hide file tree
Changes from 4 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.6.0
* FI-3395 Fix suite describe with routes by @Shaumik-Ashraf in https://github.com/inferno-framework/inferno-core/pull/577
* FI-3588: Use git for files in test kit gemspecs by @Jammjammjamm in https://github.com/inferno-framework/inferno-core/pull/578
* FI-3302: Add CI actions to template by @Jammjammjamm in https://github.com/inferno-framework/inferno-core/pull/574
* FI-3643: Check input components for auth by @AlyssaWang in https://github.com/inferno-framework/inferno-core/pull/587
* FI-3338: Create common test kit specs by @Jammjammjamm in https://github.com/inferno-framework/inferno-core/pull/586
* FI-3360: Update ruby by @Jammjammjamm in https://github.com/inferno-framework/inferno-core/pull/589
* FI-3628: Add check for locked input in checkbox group by @AlyssaWang in https://github.com/inferno-framework/inferno-core/pull/590

## 0.5.4
* FI-3565: Upgrade validator dockerfile to match upstream by @dehall in https://github.com/inferno-framework/inferno-core/pull/576
* FI-3440: Add IG entity and repository, integrated into Evaluate task by @dehall in https://github.com/inferno-framework/inferno-core/pull/573
Expand Down
2 changes: 2 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ gemspec
# - Uncomment (and change as necessary) the require at the top of
# `dev_suites/dev_demo_ig_stu1/demo_suite.rb`.

# - Copy the g10 preset file from g10 repo into config/presets/
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should not be necessary after the updates that go along with this release. That is why the preset was removed from this repo.


group :development, :test do
gem 'debug'
gem 'rubocop', '~> 1.9'
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
inferno_core (0.5.4)
inferno_core (0.6.0)
activesupport (~> 6.1.7.5)
base62-rb (= 0.3.1)
blueprinter (= 0.25.2)
Expand Down
2 changes: 1 addition & 1 deletion lib/inferno/dsl/suite_endpoint.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ module DSL
# class AuthorizedEndpoint < Inferno::DSL::SuiteEndpoint
# # Identify the incoming request based on a bearer token
# def test_run_identifier
# request.header['authorization']&.delete_prefix('Bearer ')
# request.headers['authorization']&.delete_prefix('Bearer ')
# end
#
# # Return a json FHIR Patient resource
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.5.4'.freeze
VERSION = '0.6.0'.freeze
end
Loading