From c6d95437bc5a50dabd4445e8283f91f3ac16900d Mon Sep 17 00:00:00 2001 From: dotasek Date: Mon, 25 Aug 2025 10:08:24 -0400 Subject: [PATCH 01/10] Switch to HAPI 8.5.1 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 80b4fc1..6e59345 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ ca.uhn.hapi.fhir hapi-fhir - 8.4.0 + 8.5.1-SNAPSHOT hapi-fhir-jpaserver-starter From 78958dda3ff913986bfdcb71e7aebe2c505b94a6 Mon Sep 17 00:00:00 2001 From: dotasek Date: Wed, 10 Sep 2025 16:12:30 -0400 Subject: [PATCH 02/10] Use HAPI 8.5.3-SNAPSHOT --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6e59345..d4d77d1 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ ca.uhn.hapi.fhir hapi-fhir - 8.5.1-SNAPSHOT + 8.5.3-SNAPSHOT hapi-fhir-jpaserver-starter From 7ab8ced841afa7363114fdc891e4c9f80e7b9549 Mon Sep 17 00:00:00 2001 From: dotasek Date: Thu, 9 Oct 2025 09:26:34 -0400 Subject: [PATCH 03/10] Update to HAPI 8.5.7-SNAPSHOT --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d4d77d1..f18e4c3 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ ca.uhn.hapi.fhir hapi-fhir - 8.5.3-SNAPSHOT + 8.5.7-SNAPSHOT hapi-fhir-jpaserver-starter From eccf778ef732d8fed0fa65e831b1fd970d1f10a9 Mon Sep 17 00:00:00 2001 From: dotasek Date: Thu, 9 Oct 2025 09:49:49 -0400 Subject: [PATCH 04/10] Stay with revision 1 for release tracking --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ac77f23..3bc906d 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ 17 - 3 + 1 3.27.0 From 5df170400ae9ca0cfc3f1e16be387eff046f6c29 Mon Sep 17 00:00:00 2001 From: dotasek Date: Thu, 30 Oct 2025 15:21:43 -0400 Subject: [PATCH 05/10] Bump HAPI version to 8.5.8-SNAPSHOT + Fix for failing MultitenantServerR4IT --- pom.xml | 2 +- .../uhn/fhir/jpa/starter/common/PartitionModeConfigurer.java | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 3bc906d..bcce503 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ ca.uhn.hapi.fhir hapi-fhir - 8.5.7-SNAPSHOT + 8.5.8-SNAPSHOT hapi-fhir-jpaserver-starter diff --git a/src/main/java/ca/uhn/fhir/jpa/starter/common/PartitionModeConfigurer.java b/src/main/java/ca/uhn/fhir/jpa/starter/common/PartitionModeConfigurer.java index dbf5f0f..d78b8cc 100644 --- a/src/main/java/ca/uhn/fhir/jpa/starter/common/PartitionModeConfigurer.java +++ b/src/main/java/ca/uhn/fhir/jpa/starter/common/PartitionModeConfigurer.java @@ -34,7 +34,10 @@ public class PartitionModeConfigurer { myPartitionSettings.setUnnamedPartitionMode(true); } else if (partitioning.getRequest_tenant_partitioning_mode()) { ourLog.info("Partitioning mode enabled in: Request tenant partitioning mode"); - myRestfulServer.registerInterceptor(new RequestTenantPartitionInterceptor()); + RequestTenantPartitionInterceptor tenantPartitionInterceptor = new RequestTenantPartitionInterceptor(); + tenantPartitionInterceptor.setPartitionSettings(myPartitionSettings); + myRestfulServer.registerInterceptor(tenantPartitionInterceptor); + //myRestfulServer.registerInterceptor(new RequestTenantPartitionInterceptor()); myRestfulServer.setTenantIdentificationStrategy(new UrlBaseTenantIdentificationStrategy()); } From ac494a9b2672c6a261ef0077882083d7fc59c82d Mon Sep 17 00:00:00 2001 From: dotasek Date: Fri, 31 Oct 2025 09:34:49 -0400 Subject: [PATCH 06/10] Apply spotless --- .../uhn/fhir/jpa/starter/common/PartitionModeConfigurer.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/main/java/ca/uhn/fhir/jpa/starter/common/PartitionModeConfigurer.java b/src/main/java/ca/uhn/fhir/jpa/starter/common/PartitionModeConfigurer.java index d78b8cc..3a35c2a 100644 --- a/src/main/java/ca/uhn/fhir/jpa/starter/common/PartitionModeConfigurer.java +++ b/src/main/java/ca/uhn/fhir/jpa/starter/common/PartitionModeConfigurer.java @@ -35,9 +35,8 @@ public class PartitionModeConfigurer { } else if (partitioning.getRequest_tenant_partitioning_mode()) { ourLog.info("Partitioning mode enabled in: Request tenant partitioning mode"); RequestTenantPartitionInterceptor tenantPartitionInterceptor = new RequestTenantPartitionInterceptor(); - tenantPartitionInterceptor.setPartitionSettings(myPartitionSettings); - myRestfulServer.registerInterceptor(tenantPartitionInterceptor); - //myRestfulServer.registerInterceptor(new RequestTenantPartitionInterceptor()); + tenantPartitionInterceptor.setPartitionSettings(myPartitionSettings); + myRestfulServer.registerInterceptor(tenantPartitionInterceptor); myRestfulServer.setTenantIdentificationStrategy(new UrlBaseTenantIdentificationStrategy()); } From 5b834c92cc9b07567e827f04e45b8e50ecdf78b9 Mon Sep 17 00:00:00 2001 From: dotasek Date: Mon, 17 Nov 2025 10:20:14 -0500 Subject: [PATCH 07/10] Bump to HAPI 8.5.11-SNAPSHOT --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index a7e819c..97de913 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ ca.uhn.hapi.fhir hapi-fhir - 8.5.9-SNAPSHOT + 8.5.11-SNAPSHOT hapi-fhir-jpaserver-starter From aa31d4a16878d1005a93f4ec82728f55657c85b6 Mon Sep 17 00:00:00 2001 From: dotasek Date: Fri, 21 Nov 2025 09:44:21 -0500 Subject: [PATCH 08/10] Bump to HAPI 8.5.12-SNAPSHOT --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 97de913..e4cc319 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ ca.uhn.hapi.fhir hapi-fhir - 8.5.11-SNAPSHOT + 8.5.12-SNAPSHOT hapi-fhir-jpaserver-starter From b59788d330c1550c3e886e8ee9789575f2048816 Mon Sep 17 00:00:00 2001 From: dotasek Date: Fri, 21 Nov 2025 09:51:37 -0500 Subject: [PATCH 09/10] Bump to HAPI 8.6.0 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e4cc319..04e6c25 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ ca.uhn.hapi.fhir hapi-fhir - 8.5.12-SNAPSHOT + 8.6.0 hapi-fhir-jpaserver-starter From 39b991a275e8176a51aa9e825b2af7c176934e26 Mon Sep 17 00:00:00 2001 From: Brenin Rhodes Date: Fri, 21 Nov 2025 14:25:55 -0700 Subject: [PATCH 10/10] Bump to CR 4.0.0 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 04e6c25..e3af415 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ 17 1 - 3.28.0 + 4.0.0