onc_certification_g10_test_kit 7.2.4 → 7.2.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e3a2a44cd79877dcc54e05adbbe2bb3e3e915a7d529f3d9fd28a288969a19a82
4
- data.tar.gz: 4e64800d5bee93ae2d74b9f2cd414174e9bb9928b6c2a5c4c0bd33ff49e535e7
3
+ metadata.gz: 5f981bcf0cf2c3c2c8b55e6f09e8b486502e9b09fe559aa8b1f46575369fa857
4
+ data.tar.gz: abcdbeb6321e41c0ee6da7d006c124b3cf12cc90703a1abdc397ac2f25371b57
5
5
  SHA512:
6
- metadata.gz: 823703ab44fce50a5242d9661663001e2420b9182c9b93629ca297790d627badb932b83cf4ed21cd45e4e890090cc3936c923e809b3d32a0551a2a59c9d295f6
7
- data.tar.gz: 22ec29dc499c97f322d993c3ca6ed3c2aced6cd5af3c29f244f1338ab86ecbafd0bc09073d49f3ac98781b1ce4753c7eb95a8a1f0a118922ce1493280112aa06
6
+ metadata.gz: 38ae65b718be52f0437db645ed1bab8e354ae5333048744069a196dd443c33be5c4a8753d5a7bd9b7437b8467031972edafbcb0ba849b32ac83aa31f243b4fc7
7
+ data.tar.gz: 9657a4b5adc95f3715db475f260610f34f92ed361073be62cc73db622d7adf96d31e6affeea40262bef10d9071d9074a268ef953f5c1d6a460f3081384ab2f79
@@ -2,7 +2,7 @@ require_relative '../inferno/terminology/tasks/check_built_terminology'
2
2
 
3
3
  module ONCCertificationG10TestKit
4
4
  class ConfigurationChecker
5
- EXPECTED_HL7_VALIDATOR_VERSION = '1.0.66'.freeze
5
+ EXPECTED_HL7_VALIDATOR_VERSION = '1.0.67'.freeze
6
6
  HL7_VALIDATOR_VERSION_KEY = 'validatorWrapperVersion'.freeze
7
7
 
8
8
  def configuration_messages
@@ -141,7 +141,9 @@ module ONCCertificationG10TestKit
141
141
  /\A\S+: \S+: A definition for CodeSystem '.*' could not be found, so the code cannot be validated/,
142
142
  /\A\S+: \S+: URL value '.*' does not resolve/,
143
143
  /\A\S+: \S+: .*\[No server available\]/, # Catch-all for certain errors when TX server is disabled
144
- %r{\A\S+: \S+: .*\[Error from http://tx.fhir.org/r4:} # Catch-all for TX server errors that slip through
144
+ %r{\A\S+: \S+: .*\[Error from https?://tx.fhir.org/r4:}, # Catch-all for TX server errors that slip through
145
+ # This is a strange error introduced by FHIR validator core 6.5.28.
146
+ %r{\A\S+: \S+: The System URI could not be determined for the code '.*' in the ValueSet 'http://hl7.org/fhir/ValueSet/mimetypes|4.0.1'}
145
147
  ].freeze
146
148
 
147
149
  def self.setup_validator(us_core_version_requirement) # rubocop:disable Metrics/CyclomaticComplexity