Skip to content

Commit

Permalink
Merge pull request #40 from inferno-framework/release-0-14-1
Browse files Browse the repository at this point in the history
Release 0.14.1
  • Loading branch information
karlnaden authored Dec 9, 2024
2 parents 1f05ae2 + 4f6ce51 commit ec01b8e
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 13 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# v0.14.1
* Make us_core_test_kit and tls_test_kit dependencies relative

# v0.14.0
* FI-3222: DTR Client Tests: Use Random Number for Attestation Continuation Links by @degradification in https://github.com/inferno-framework/davinci-dtr-test-kit/pull/20
* FI-3299: Fix Questionnaire Package verification in Payer suite by @tstrass in https://github.com/inferno-framework/davinci-dtr-test-kit/pull/29
Expand Down
20 changes: 10 additions & 10 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
PATH
remote: .
specs:
davinci_dtr_test_kit (0.14.0)
davinci_dtr_test_kit (0.14.1)
inferno_core (~> 0.5.0)
jwt (~> 2.6)
smart_app_launch_test_kit (~> 0.4.4)
tls_test_kit (= 0.2.2)
us_core_test_kit (= 0.9.0)
tls_test_kit (~> 0.2.2)
us_core_test_kit (~> 0.9.0)

GEM
remote: https://rubygems.org/
Expand Down Expand Up @@ -202,14 +202,14 @@ GEM
mustermann (= 1.1.2)
netrc (0.11.0)
nio4r (2.7.4)
nokogiri (1.16.8)
nokogiri (1.17.0)
mini_portile2 (~> 2.8.2)
racc (~> 1.4)
nokogiri (1.16.8-arm64-darwin)
nokogiri (1.17.0-arm64-darwin)
racc (~> 1.4)
nokogiri (1.16.8-x86_64-darwin)
nokogiri (1.17.0-x86_64-darwin)
racc (~> 1.4)
nokogiri (1.16.8-x86_64-linux)
nokogiri (1.17.0-x86_64-linux)
racc (~> 1.4)
oauth2 (1.4.11)
faraday (>= 0.17.3, < 3.0)
Expand Down Expand Up @@ -311,7 +311,7 @@ GEM
strings-ansi (0.2.0)
thor (1.2.2)
tilt (2.4.0)
tls_test_kit (0.2.2)
tls_test_kit (0.2.3)
inferno_core (>= 0.4.2)
tty-color (0.6.0)
tty-markdown (0.7.2)
Expand All @@ -326,8 +326,8 @@ GEM
concurrent-ruby (~> 1.0)
unicode-display_width (2.6.0)
unicode_utils (1.4.0)
us_core_test_kit (0.9.0)
inferno_core (>= 0.4.37)
us_core_test_kit (0.9.3)
inferno_core (>= 0.5.0)
smart_app_launch_test_kit (>= 0.4.6)
tls_test_kit (~> 0.2.0)
webmock (3.23.1)
Expand Down
4 changes: 2 additions & 2 deletions davinci_dtr_test_kit.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ Gem::Specification.new do |spec|
spec.add_dependency 'inferno_core', '~> 0.5.0'
spec.add_dependency 'jwt', '~> 2.6'
spec.add_dependency 'smart_app_launch_test_kit', '~> 0.4.4'
spec.add_dependency 'tls_test_kit', '0.2.2'
spec.add_dependency 'us_core_test_kit', '0.9.0'
spec.add_dependency 'tls_test_kit', '~> 0.2.2'
spec.add_dependency 'us_core_test_kit', '~> 0.9.0'
spec.required_ruby_version = Gem::Requirement.new('>= 3.1.2')
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = spec.homepage
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ The DTR IG is a complex specification and these tests currently validate conform
a subset of IG requirements. Future versions of the test suite will test further
features.

Specific limitations include:
- *SMART Launch `fhirContext`*: Inferno does not currently verify the use of `fhirContext` to convey details
about the DTR SMART App launch.

## DTR 2.0.1 Corrections

The DTR 2.0.1 version of the [Light EHR CapabilityStatement](http://hl7.org/fhir/us/davinci-dtr/CapabilityStatement/light-dtr-ehr) includes two pieces of missing or misleading information that have been corrected:
Expand Down
2 changes: 1 addition & 1 deletion lib/davinci_dtr_test_kit/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module DaVinciDTRTestKit
VERSION = '0.14.0'
VERSION = '0.14.1'
end

0 comments on commit ec01b8e

Please sign in to comment.