Skip to content

Commit

Permalink
Release 5.2.0 (#501)
Browse files Browse the repository at this point in the history
* bump version

* bump tls test kit

* bump us core test kit

* bump core

* update changelog

* use final version

* update matrix

* update patent fixture for old names and addresses

* fix changelog typo
  • Loading branch information
Jammjammjamm authored Mar 11, 2024
1 parent 20199be commit b0ef029
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 18 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# 5.2.0

* Fix Must Support for Patient's previous name and address (#496).
* Update token revocation attestation to include one hour time limit (#500).
* Fix error when no Devices match supplied implantable device code in bulk
data(#494).
* Fix error determining the profile of PractitionerRole resources during bulk
data tests for US Core 5 and 6 (#477).

# 5.1.0

* Add Practitioner search tests for US Core 6 (#484).
Expand Down
30 changes: 16 additions & 14 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 (5.1.0)
onc_certification_g10_test_kit (5.2.0)
bloomer (~> 1.0.0)
colorize (~> 0.8.1)
inferno_core (~> 0.4.20)
Expand All @@ -10,13 +10,13 @@ PATH
ndjson (~> 1.0.0)
rubyzip (~> 2.3.2)
smart_app_launch_test_kit (= 0.4.1)
tls_test_kit (= 0.2.0)
us_core_test_kit (= 0.6.3)
tls_test_kit (= 0.2.1)
us_core_test_kit (= 0.6.4)

GEM
remote: https://rubygems.org/
specs:
activesupport (6.1.7.6)
activesupport (6.1.7.7)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 1.6, < 2)
minitest (>= 5.1)
Expand All @@ -27,9 +27,10 @@ GEM
aes_key_wrap (1.1.0)
ast (2.4.2)
base62-rb (0.3.1)
base64 (0.2.0)
bcp47 (0.3.3)
i18n
bindata (2.4.15)
bindata (2.5.0)
bitarray (1.3.1)
bloomer (1.0.0)
bitarray
Expand Down Expand Up @@ -156,10 +157,10 @@ GEM
http-cookie (1.0.5)
domain_name (~> 0.5)
httpclient (2.8.3)
i18n (1.14.1)
i18n (1.14.4)
concurrent-ruby (~> 1.0)
ice_nine (0.11.2)
inferno_core (0.4.29)
inferno_core (0.4.30)
activesupport (~> 6.1.7.5)
base62-rb (= 0.3.1)
blueprinter (= 0.25.2)
Expand Down Expand Up @@ -189,18 +190,19 @@ GEM
irb (1.5.1)
reline (>= 0.3.0)
json (2.6.2)
json-jwt (1.15.3)
json-jwt (1.15.3.1)
activesupport (>= 4.2)
aes_key_wrap
bindata
httpclient
jwt (2.7.1)
jwt (2.8.1)
base64
kramdown (2.4.0)
rexml
method_source (1.0.0)
mime-types (3.4.1)
mime-types-data (~> 3.2015)
mime-types-data (3.2024.0206)
mime-types-data (3.2024.0305)
mini_portile2 (2.8.5)
minitest (5.22.2)
msgpack (1.7.2)
Expand Down Expand Up @@ -246,7 +248,7 @@ GEM
puma (5.6.8)
nio4r (~> 2.0)
racc (1.7.3)
rack (2.2.8)
rack (2.2.8.1)
rainbow (3.1.1)
rake (13.1.0)
redis (4.8.1)
Expand Down Expand Up @@ -315,8 +317,8 @@ GEM
strings-ansi (0.2.0)
thor (1.2.2)
tilt (2.3.0)
tls_test_kit (0.2.0)
inferno_core (>= 0.4.1)
tls_test_kit (0.2.1)
inferno_core (>= 0.4.2)
tty-color (0.6.0)
tty-markdown (0.7.2)
kramdown (>= 1.16.2, < 3.0)
Expand All @@ -330,7 +332,7 @@ GEM
concurrent-ruby (~> 1.0)
unicode-display_width (2.5.0)
unicode_utils (1.4.0)
us_core_test_kit (0.6.3)
us_core_test_kit (0.6.4)
inferno_core (>= 0.4.2)
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 = '5.1.0'.freeze
VERSION = '5.2.0'.freeze
end
Binary file modified onc_certification_g10_matrix.xlsx
Binary file not shown.
4 changes: 2 additions & 2 deletions onc_certification_g10_test_kit.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ Gem::Specification.new do |spec|
spec.add_runtime_dependency 'ndjson', '~> 1.0.0'
spec.add_runtime_dependency 'rubyzip', '~> 2.3.2'
spec.add_runtime_dependency 'smart_app_launch_test_kit', '0.4.1'
spec.add_runtime_dependency 'tls_test_kit', '0.2.0'
spec.add_runtime_dependency 'us_core_test_kit', '0.6.3'
spec.add_runtime_dependency 'tls_test_kit', '0.2.1'
spec.add_runtime_dependency 'us_core_test_kit', '0.6.4'
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
2 changes: 1 addition & 1 deletion spec/fixtures/Patient.ndjson
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
{"id":"e91975f5-9445-c11f-cabf-c3c6dae161f2","meta":{"profile":["http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"]},"text":{"status":"generated","div":"<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.6.1-3-g50f4f58f\n . Person seed: 4286870567281389426 Population seed: 3</div>"},"extension":[{"extension":[{"url":"ombCategory","valueCoding":{"system":"urn:oid:2.16.840.1.113883.6.238","code":"2106-3","display":"White"}},{"url":"text","valueString":"White"}],"url":"http://hl7.org/fhir/us/core/StructureDefinition/us-core-race"},{"extension":[{"url":"ombCategory","valueCoding":{"system":"urn:oid:2.16.840.1.113883.6.238","code":"2186-5","display":"Non Hispanic or Latino"}},{"url":"text","valueString":"Non Hispanic or Latino"}],"url":"http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity"},{"url":"http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName","valueString":"Christen366 Murray856"},{"url":"http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex","valueCode":"M"},{"url":"http://hl7.org/fhir/StructureDefinition/patient-birthPlace","valueAddress":{"city":"Springfield","state":"Massachusetts","country":"US"}}],"identifier":[{"system":"https://github.com/synthetichealth/synthea","value":"e91975f5-9445-c11f-cabf-c3c6dae161f2"},{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"MR","display":"Medical Record Number"}],"text":"Medical Record Number"},"system":"http://hospital.smarthealthit.org","value":"e91975f5-9445-c11f-cabf-c3c6dae161f2"},{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"SS","display":"Social Security Number"}],"text":"Social Security Number"},"system":"http://hl7.org/fhir/sid/us-ssn","value":"999-61-9797"},{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"DL","display":"Driver's License"}],"text":"Driver's License"},"system":"urn:oid:2.16.840.1.113883.4.3.25","value":"S99940283"}],"name":[{"use":"official","family":"Ritchie586","given":["Dustin31"],"prefix":["Mr."]}],"telecom":[{"system":"phone","value":"555-770-2787","use":"home"}],"gender":"male","birthDate":"1940-09-05","address":[{"extension":[{"extension":[{"url":"latitude","valueDecimal":42.1343534042923},{"url":"longitude","valueDecimal":-72.67217549422628}],"url":"http://hl7.org/fhir/StructureDefinition/geolocation"}],"line":["599 Schowalter Promenade"],"city":"West Springfield","state":"MA","postalCode":"01089","country":"US","period":{"start":"1940-09-05"}}],"maritalStatus":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v3-MaritalStatus","code":"M","display":"M"}],"text":"M"},"multipleBirthBoolean":false,"communication":[{"language":{"coding":[{"system":"urn:ietf:bcp:47","code":"en-US","display":"English"}],"text":"English"}}],"resourceType":"Patient"}
{"id":"e91975f5-9445-c11f-cabf-c3c6dae161f2","meta":{"profile":["http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"]},"text":{"status":"generated","div":"<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.6.1-3-g50f4f58f\n . Person seed: 4286870567281389426 Population seed: 3</div>"},"extension":[{"extension":[{"url":"ombCategory","valueCoding":{"system":"urn:oid:2.16.840.1.113883.6.238","code":"2106-3","display":"White"}},{"url":"text","valueString":"White"}],"url":"http://hl7.org/fhir/us/core/StructureDefinition/us-core-race"},{"extension":[{"url":"ombCategory","valueCoding":{"system":"urn:oid:2.16.840.1.113883.6.238","code":"2186-5","display":"Non Hispanic or Latino"}},{"url":"text","valueString":"Non Hispanic or Latino"}],"url":"http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity"},{"url":"http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName","valueString":"Christen366 Murray856"},{"url":"http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex","valueCode":"M"},{"url":"http://hl7.org/fhir/StructureDefinition/patient-birthPlace","valueAddress":{"city":"Springfield","state":"Massachusetts","country":"US"}}],"identifier":[{"system":"https://github.com/synthetichealth/synthea","value":"e91975f5-9445-c11f-cabf-c3c6dae161f2"},{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"MR","display":"Medical Record Number"}],"text":"Medical Record Number"},"system":"http://hospital.smarthealthit.org","value":"e91975f5-9445-c11f-cabf-c3c6dae161f2"},{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"SS","display":"Social Security Number"}],"text":"Social Security Number"},"system":"http://hl7.org/fhir/sid/us-ssn","value":"999-61-9797"},{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"DL","display":"Driver's License"}],"text":"Driver's License"},"system":"urn:oid:2.16.840.1.113883.4.3.25","value":"S99940283"}],"name":[{"use":"old","family":"Ritchie587","given":["Dustin31"],"prefix":["Mr."]},{"use":"official","family":"Ritchie586","given":["Dustin31"],"prefix":["Mr."]}],"telecom":[{"system":"phone","value":"555-770-2787","use":"home"}],"gender":"male","birthDate":"1940-09-05","address":[{"line":["600 Schowalter Promenade"],"city":"West Springfield","state":"MA","postalCode":"01089","country":"US","period":{"end":"1940-09-04"}},{"extension":[{"extension":[{"url":"latitude","valueDecimal":42.1343534042923},{"url":"longitude","valueDecimal":-72.67217549422628}],"url":"http://hl7.org/fhir/StructureDefinition/geolocation"}],"line":["599 Schowalter Promenade"],"city":"West Springfield","state":"MA","postalCode":"01089","country":"US","period":{"start":"1940-09-05"}}],"maritalStatus":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v3-MaritalStatus","code":"M","display":"M"}],"text":"M"},"multipleBirthBoolean":false,"communication":[{"language":{"coding":[{"system":"urn:ietf:bcp:47","code":"en-US","display":"English"}],"text":"English"}}],"resourceType":"Patient"}
{"id":"d831ec91-c7a3-4a61-9312-7ff0c4a32134","meta":{"profile":["http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"]},"text":{"status":"generated","div":"<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.6.1-3-g50f4f58f\n . Person seed: -7901283747506674198 Population seed: 3</div>"},"extension":[{"extension":[{"url":"ombCategory","valueCoding":{"system":"urn:oid:2.16.840.1.113883.6.238","code":"2106-3","display":"White"}},{"url":"text","valueString":"White"}],"url":"http://hl7.org/fhir/us/core/StructureDefinition/us-core-race"},{"extension":[{"url":"ombCategory","valueCoding":{"system":"urn:oid:2.16.840.1.113883.6.238","code":"2186-5","display":"Non Hispanic or Latino"}},{"url":"text","valueString":"Non Hispanic or Latino"}],"url":"http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity"},{"url":"http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName","valueString":"Arnetta705 Walker122"},{"url":"http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex","valueCode":"M"},{"url":"http://hl7.org/fhir/StructureDefinition/patient-birthPlace","valueAddress":{"city":"Brookline","state":"Massachusetts","country":"US"}}],"identifier":[{"system":"https://github.com/synthetichealth/synthea","value":"d831ec91-c7a3-4a61-9312-7ff0c4a32134"},{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"MR","display":"Medical Record Number"}],"text":"Medical Record Number"},"system":"http://hospital.smarthealthit.org","value":"d831ec91-c7a3-4a61-9312-7ff0c4a32134"},{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"SS","display":"Social Security Number"}],"text":"Social Security Number"},"system":"http://hl7.org/fhir/sid/us-ssn","value":"999-47-5768"},{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"DL","display":"Driver's License"}],"text":"Driver's License"},"system":"urn:oid:2.16.840.1.113883.4.3.25","value":"S99921496"}],"name":[{"use":"official","family":"Bosco882","given":["Lucien408"],"prefix":["Mr."]}],"telecom":[{"system":"phone","value":"555-510-6254","use":"home"}],"gender":"male","birthDate":"1940-03-29","deceasedDateTime":"1977-07-14T04:17:45-04:00","address":[{"extension":[{"extension":[{"url":"latitude","valueDecimal":42.674176102041564},{"url":"longitude","valueDecimal":-71.31980043648745}],"url":"http://hl7.org/fhir/StructureDefinition/geolocation"}],"line":["934 Olson Highlands"],"city":"Lowell","state":"MA","postalCode":"01854","country":"US","period":{"start":"1940-03-29"}}],"maritalStatus":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v3-MaritalStatus","code":"M","display":"M"}],"text":"M"},"multipleBirthBoolean":false,"communication":[{"language":{"coding":[{"system":"urn:ietf:bcp:47","code":"en-US","display":"English"}],"text":"English"}}],"resourceType":"Patient"}

0 comments on commit b0ef029

Please sign in to comment.