From ba077ab8fd56d47245ebe57a89d7b619bc18f023 Mon Sep 17 00:00:00 2001 From: dotasek Date: Tue, 17 Feb 2026 12:58:02 -0500 Subject: [PATCH 1/4] HAPI 8.6.5 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 521e3b7..67b64e0 100644 --- a/pom.xml +++ b/pom.xml @@ -34,7 +34,7 @@ ca.uhn.hapi.fhir hapi-fhir - 8.6.1 + 8.6.5 hapi-fhir-jpaserver-starter From b80687959fe1b3e33da5b5fc28ed61787474dc61 Mon Sep 17 00:00:00 2001 From: dotasek Date: Tue, 17 Feb 2026 13:17:15 -0500 Subject: [PATCH 2/4] Adjust for moved class --- .../java/ca/uhn/fhir/jpa/starter/common/StarterJpaConfig.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/ca/uhn/fhir/jpa/starter/common/StarterJpaConfig.java b/src/main/java/ca/uhn/fhir/jpa/starter/common/StarterJpaConfig.java index 86e4793..7c1707a 100644 --- a/src/main/java/ca/uhn/fhir/jpa/starter/common/StarterJpaConfig.java +++ b/src/main/java/ca/uhn/fhir/jpa/starter/common/StarterJpaConfig.java @@ -3,7 +3,7 @@ package ca.uhn.fhir.jpa.starter.common; import ca.uhn.fhir.batch2.config.Batch2JobRegisterer; import ca.uhn.fhir.batch2.jobs.export.BulkDataExportProvider; import ca.uhn.fhir.batch2.jobs.imprt.BulkDataImportProvider; -import ca.uhn.fhir.batch2.jobs.reindex.ReindexProvider; +import ca.uhn.fhir.batch2.jobs.bulkmodify.reindex.ReindexProvider; import ca.uhn.fhir.context.ConfigurationException; import ca.uhn.fhir.context.FhirContext; import ca.uhn.fhir.context.FhirVersionEnum; From 68fc2a4c04eccfaefda409c60b8c1e783582b2c8 Mon Sep 17 00:00:00 2001 From: Patrick Werner Date: Tue, 17 Feb 2026 19:21:18 +0100 Subject: [PATCH 3/4] fix formatting --- .../java/ca/uhn/fhir/jpa/starter/common/StarterJpaConfig.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/ca/uhn/fhir/jpa/starter/common/StarterJpaConfig.java b/src/main/java/ca/uhn/fhir/jpa/starter/common/StarterJpaConfig.java index 7c1707a..79ee250 100644 --- a/src/main/java/ca/uhn/fhir/jpa/starter/common/StarterJpaConfig.java +++ b/src/main/java/ca/uhn/fhir/jpa/starter/common/StarterJpaConfig.java @@ -1,9 +1,9 @@ package ca.uhn.fhir.jpa.starter.common; import ca.uhn.fhir.batch2.config.Batch2JobRegisterer; +import ca.uhn.fhir.batch2.jobs.bulkmodify.reindex.ReindexProvider; import ca.uhn.fhir.batch2.jobs.export.BulkDataExportProvider; import ca.uhn.fhir.batch2.jobs.imprt.BulkDataImportProvider; -import ca.uhn.fhir.batch2.jobs.bulkmodify.reindex.ReindexProvider; import ca.uhn.fhir.context.ConfigurationException; import ca.uhn.fhir.context.FhirContext; import ca.uhn.fhir.context.FhirVersionEnum; From 5778f431bfae7dd734830e6a76ac8464c937d7e8 Mon Sep 17 00:00:00 2001 From: Patrick Werner Date: Tue, 17 Feb 2026 19:29:30 +0100 Subject: [PATCH 4/4] chore: set Maven memory options in smoke-tests.yml --- .github/workflows/smoke-tests.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/smoke-tests.yml b/.github/workflows/smoke-tests.yml index 7ba24d0..9a1fc9a 100644 --- a/.github/workflows/smoke-tests.yml +++ b/.github/workflows/smoke-tests.yml @@ -30,6 +30,8 @@ jobs: distribution: zulu - name: Build with Maven + env: + MAVEN_OPTS: -Xms256m -Xmx3g -XX:+UseG1GC run: mvn -B package --file pom.xml -Dmaven.test.skip=true - name: Docker Pull HTTP client