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 6.0.2 #561

Merged
merged 6 commits into from
Sep 10, 2024
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
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
# 6.0.2
* Fix a bug which prevented fields with both a primitive value and an extension
from being recognized as matching search parameters (#557).
* Fix a bug which prevented fine-grained scopes tests (`9.14`)from passing if
OperationOutcomes are included in the search results (#552).
* Fix a bug which prevented granular scope tests (`9.14.1.1.2.08` and
`9.14.2.1.2.08`)from passing when read and search scopes are granted
separately (#551).
* Fix a bug which prevented EHR Launch with Patient Scopes tests (`9.9.11`)from
passing when read and search scopes are granted separately (#551).

# 6.0.1
* Fix a bug which caused the Token Refresh with Scopes (`9.12.13.03`) test in
the Asymmetric Client Launch group to not use asymmetric authentication
Expand Down
12 changes: 5 additions & 7 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
onc_certification_g10_test_kit (6.0.1)
onc_certification_g10_test_kit (6.0.2)
bloomer (~> 1.0.0)
colorize (~> 0.8.1)
inferno_core (~> 0.4.34)
Expand All @@ -11,7 +11,7 @@ PATH
rubyzip (~> 2.3.2)
smart_app_launch_test_kit (= 0.4.3)
tls_test_kit (= 0.2.2)
us_core_test_kit (= 0.8.0)
us_core_test_kit (= 0.8.1)

GEM
remote: https://rubygems.org/
Expand Down Expand Up @@ -191,7 +191,7 @@ GEM
method_source (1.1.0)
mime-types (3.4.1)
mime-types-data (~> 3.2015)
mime-types-data (3.2024.0820)
mime-types-data (3.2024.0903)
mini_portile2 (2.8.7)
minitest (5.24.1)
msgpack (1.7.2)
Expand Down Expand Up @@ -251,8 +251,7 @@ GEM
http-cookie (>= 1.0.2, < 2.0)
mime-types (>= 1.16, < 4.0)
netrc (~> 0.8)
rexml (3.3.1)
strscan
rexml (3.3.7)
rouge (4.3.0)
rspec (3.12.0)
rspec-core (~> 3.12.0)
Expand Down Expand Up @@ -308,7 +307,6 @@ GEM
unicode-display_width (>= 1.5, < 3.0)
unicode_utils (~> 1.4)
strings-ansi (0.2.0)
strscan (3.1.0)
thor (1.2.2)
tilt (2.4.0)
tls_test_kit (0.2.2)
Expand All @@ -326,7 +324,7 @@ GEM
concurrent-ruby (~> 1.0)
unicode-display_width (2.5.0)
unicode_utils (1.4.0)
us_core_test_kit (0.8.0)
us_core_test_kit (0.8.1)
inferno_core (>= 0.4.37)
smart_app_launch_test_kit (>= 0.4.0)
tls_test_kit (~> 0.2.0)
Expand Down
2 changes: 1 addition & 1 deletion lib/onc_certification_g10_test_kit/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module ONCCertificationG10TestKit
VERSION = '6.0.1'.freeze
VERSION = '6.0.2'.freeze
end
Binary file modified onc_certification_g10_matrix.xlsx
Binary file not shown.
2 changes: 1 addition & 1 deletion onc_certification_g10_test_kit.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
spec.add_runtime_dependency 'rubyzip', '~> 2.3.2'
spec.add_runtime_dependency 'smart_app_launch_test_kit', '0.4.3'
spec.add_runtime_dependency 'tls_test_kit', '0.2.2'
spec.add_runtime_dependency 'us_core_test_kit', '0.8.0'
spec.add_runtime_dependency 'us_core_test_kit', '0.8.1'
spec.add_development_dependency 'database_cleaner-sequel', '~> 1.8'
spec.add_development_dependency 'factory_bot', '~> 6.1'
spec.add_development_dependency 'rspec', '~> 3.10'
Expand Down
Loading