From a24f1dba87a591c677a8312f736990a61f195146 Mon Sep 17 00:00:00 2001 From: Shaumik-Ashraf Date: Thu, 16 Jan 2025 16:08:50 -0500 Subject: [PATCH 1/6] fix docs typo --- lib/inferno/dsl/suite_endpoint.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/inferno/dsl/suite_endpoint.rb b/lib/inferno/dsl/suite_endpoint.rb index 1217455db..aa10bf0ce 100644 --- a/lib/inferno/dsl/suite_endpoint.rb +++ b/lib/inferno/dsl/suite_endpoint.rb @@ -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 From 129a778b46ddeb05d84c77234c5493a96a5855bc Mon Sep 17 00:00:00 2001 From: Shaumik-Ashraf Date: Thu, 16 Jan 2025 16:10:44 -0500 Subject: [PATCH 2/6] mention copying preset --- Gemfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Gemfile b/Gemfile index ff14ff9e5..d9480075c 100644 --- a/Gemfile +++ b/Gemfile @@ -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/ + group :development, :test do gem 'debug' gem 'rubocop', '~> 1.9' From 6e6e6ce9cdec84b51bffbda734193972297317f9 Mon Sep 17 00:00:00 2001 From: Shaumik-Ashraf Date: Thu, 16 Jan 2025 16:14:05 -0500 Subject: [PATCH 3/6] bump to v0.6.0 --- Gemfile.lock | 2 +- lib/inferno/version.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 7bc1fc777..39bf39113 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -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) diff --git a/lib/inferno/version.rb b/lib/inferno/version.rb index d040d2d3c..f26e5fd74 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.5.4'.freeze + VERSION = '0.6.0'.freeze end From 783ab6e0da98898f3db169fe76edf92f4baadebf Mon Sep 17 00:00:00 2001 From: Shaumik-Ashraf Date: Thu, 16 Jan 2025 16:15:32 -0500 Subject: [PATCH 4/6] update changelog --- CHANGELOG.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4bab43c04..aee1e908e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 From 61f1f168fe51e3a49237a361e64eca4364465dce Mon Sep 17 00:00:00 2001 From: Shaumik-Ashraf Date: Fri, 17 Jan 2025 10:59:00 -0500 Subject: [PATCH 5/6] rm preset comment from Gemfile --- Gemfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Gemfile b/Gemfile index d9480075c..ff14ff9e5 100644 --- a/Gemfile +++ b/Gemfile @@ -13,8 +13,6 @@ 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/ - group :development, :test do gem 'debug' gem 'rubocop', '~> 1.9' From e82bcf87abd7d8287ea9ff81130075c714d1f1ab Mon Sep 17 00:00:00 2001 From: Shaumik-Ashraf Date: Fri, 17 Jan 2025 11:16:36 -0500 Subject: [PATCH 6/6] update changelog --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index aee1e908e..a145239a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ * 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 +* FI-3598: Add title to auth inputs and consolidate input modes by @AlyssaWang in https://github.com/inferno-framework/inferno-core/pull/591 +* Change ruby to 3.3.6 in docs.yml by @Shaumik-Ashraf in https://github.com/inferno-framework/inferno-core/pull/593 ## 0.5.4 * FI-3565: Upgrade validator dockerfile to match upstream by @dehall in https://github.com/inferno-framework/inferno-core/pull/576