Cherry pick core version bump to 6.3.23

This commit is contained in:
dotasek 2024-09-09 17:09:24 -04:00
parent 1b006bb753
commit d6c2cbb3e0
2 changed files with 3 additions and 3 deletions

View File

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

View File

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