Bump org.hl7.fhir.core to 6.3.23 (#6266)

* Bump org.hl7.fhir.core to 6.3.23

* Fix breaking test (check for no value and null)

* Fix typo
This commit is contained in:
dotasek 2024-09-06 14:51:05 -04:00 committed by GitHub
parent 12765ac397
commit d9f3ac1c3b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 4 additions and 3 deletions

View File

@ -4,6 +4,7 @@
title: "The version of a few dependencies have been bumped to more recent versions
(dependent HAPI modules listed in brackets):
<ul>
<li>org.hl7.fhir.core (Base): 6.3.18 -&gt; 6.3.23</li>
<li>Bower/Moment.js (hapi-fhir-testpage-overlay): 2.27.0 -&gt; 2.29.4</li>
<li>htmlunit (Base): 3.9.0 -&gt; 3.11.0</li>
<li>Elasticsearch (Base): 8.11.1 -&gt; 8.14.3</li>

View File

@ -588,8 +588,8 @@ public class PackageInstallerSvcImpl implements IPackageInstallerSvc {
if (statusTypes.isEmpty()) {
return true;
}
// Resource has a null status field
if (statusTypes.get(0).getValue() == null) {
// Resource has no status field, or an explicitly null one
if (!statusTypes.get(0).hasValue() || statusTypes.get(0).getValue() == null) {
return false;
}
// Resource has a status, and we need to check based on type

View File

@ -948,7 +948,7 @@
</licenses>
<properties>
<fhir_core_version>6.3.18</fhir_core_version>
<fhir_core_version>6.3.23</fhir_core_version>
<spotless_version>2.41.1</spotless_version>
<surefire_jvm_args>-Dfile.encoding=UTF-8 -Xmx2048m</surefire_jvm_args>