From 79d5441ad500027bddb1821beb6c9a1618208365 Mon Sep 17 00:00:00 2001 From: "dotasek.dev" Date: Mon, 11 Mar 2024 10:39:23 -0400 Subject: [PATCH 1/5] Bump version + update API --- pom.xml | 2 +- .../ca/uhn/fhir/jpa/starter/ips/StarterIpsConfig.java | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pom.xml b/pom.xml index d12cf0e..aaa926c 100644 --- a/pom.xml +++ b/pom.xml @@ -14,7 +14,7 @@ ca.uhn.hapi.fhir hapi-fhir - 7.0.2 + 7.1.6-SNAPSHOT hapi-fhir-jpaserver-starter diff --git a/src/main/java/ca/uhn/fhir/jpa/starter/ips/StarterIpsConfig.java b/src/main/java/ca/uhn/fhir/jpa/starter/ips/StarterIpsConfig.java index 0b1db60..17f72b7 100644 --- a/src/main/java/ca/uhn/fhir/jpa/starter/ips/StarterIpsConfig.java +++ b/src/main/java/ca/uhn/fhir/jpa/starter/ips/StarterIpsConfig.java @@ -1,12 +1,12 @@ package ca.uhn.fhir.jpa.starter.ips; import ca.uhn.fhir.context.FhirContext; -import ca.uhn.fhir.jpa.api.dao.DaoRegistry; import ca.uhn.fhir.jpa.ips.api.IIpsGenerationStrategy; import ca.uhn.fhir.jpa.ips.generator.IIpsGeneratorSvc; import ca.uhn.fhir.jpa.ips.generator.IpsGeneratorSvcImpl; +import ca.uhn.fhir.jpa.ips.jpa.DefaultJpaIpsGenerationStrategy; import ca.uhn.fhir.jpa.ips.provider.IpsOperationProvider; -import ca.uhn.fhir.jpa.ips.strategy.DefaultIpsGenerationStrategy; + import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Conditional; @@ -14,7 +14,7 @@ import org.springframework.context.annotation.Conditional; public class StarterIpsConfig { @Bean IIpsGenerationStrategy ipsGenerationStrategy() { - return new DefaultIpsGenerationStrategy(); + return new DefaultJpaIpsGenerationStrategy(); } @Bean @@ -24,7 +24,7 @@ public class StarterIpsConfig { @Bean public IIpsGeneratorSvc ipsGeneratorSvcImpl( - FhirContext theFhirContext, IIpsGenerationStrategy theGenerationStrategy, DaoRegistry theDaoRegistry) { - return new IpsGeneratorSvcImpl(theFhirContext, theGenerationStrategy, theDaoRegistry); + FhirContext theFhirContext, IIpsGenerationStrategy theGenerationStrategy) { + return new IpsGeneratorSvcImpl(theFhirContext, theGenerationStrategy); } } From 79c43b48be04963ae32835e3e5f08720538bcaf8 Mon Sep 17 00:00:00 2001 From: "dotasek.dev" Date: Tue, 9 Apr 2024 11:29:48 -0400 Subject: [PATCH 2/5] Bump HAPI version, fix deleted method in Cr properties --- pom.xml | 2 +- src/main/java/ca/uhn/fhir/jpa/starter/cr/StarterCrR4Config.java | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index aaa926c..bd771ba 100644 --- a/pom.xml +++ b/pom.xml @@ -14,7 +14,7 @@ ca.uhn.hapi.fhir hapi-fhir - 7.1.6-SNAPSHOT + 7.1.8-SNAPSHOT hapi-fhir-jpaserver-starter diff --git a/src/main/java/ca/uhn/fhir/jpa/starter/cr/StarterCrR4Config.java b/src/main/java/ca/uhn/fhir/jpa/starter/cr/StarterCrR4Config.java index fd9af65..4c0c5be 100644 --- a/src/main/java/ca/uhn/fhir/jpa/starter/cr/StarterCrR4Config.java +++ b/src/main/java/ca/uhn/fhir/jpa/starter/cr/StarterCrR4Config.java @@ -68,7 +68,6 @@ public class StarterCrR4Config { @Bean CareGapsProperties careGapsProperties(CrProperties theCrProperties) { var careGapsProperties = new CareGapsProperties(); - careGapsProperties.setThreadedCareGapsEnabled(false); careGapsProperties.setCareGapsReporter(theCrProperties.getCareGapsReporter()); careGapsProperties.setCareGapsCompositionSectionAuthor(theCrProperties.getCareGapsSectionAuthor()); return careGapsProperties; From 70da0dc7a728c12698ae49c49d4056a65ec47c57 Mon Sep 17 00:00:00 2001 From: "dotasek.dev" Date: Fri, 19 Apr 2024 14:02:43 -0400 Subject: [PATCH 3/5] Bump HAPI version, switch to DatabaseBinaryContentStorageSvcImpl --- pom.xml | 2 +- .../uhn/fhir/jpa/starter/common/FhirServerConfigCommon.java | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pom.xml b/pom.xml index bd771ba..105ce4d 100644 --- a/pom.xml +++ b/pom.xml @@ -14,7 +14,7 @@ ca.uhn.hapi.fhir hapi-fhir - 7.1.8-SNAPSHOT + 7.1.10-SNAPSHOT hapi-fhir-jpaserver-starter diff --git a/src/main/java/ca/uhn/fhir/jpa/starter/common/FhirServerConfigCommon.java b/src/main/java/ca/uhn/fhir/jpa/starter/common/FhirServerConfigCommon.java index 1347028..5fe3cd4 100644 --- a/src/main/java/ca/uhn/fhir/jpa/starter/common/FhirServerConfigCommon.java +++ b/src/main/java/ca/uhn/fhir/jpa/starter/common/FhirServerConfigCommon.java @@ -2,7 +2,7 @@ package ca.uhn.fhir.jpa.starter.common; import ca.uhn.fhir.jpa.api.config.JpaStorageSettings; import ca.uhn.fhir.jpa.binary.api.IBinaryStorageSvc; -import ca.uhn.fhir.jpa.binstore.DatabaseBlobBinaryStorageSvcImpl; +import ca.uhn.fhir.jpa.binstore.DatabaseBinaryContentStorageSvcImpl; import ca.uhn.fhir.jpa.config.HibernatePropertiesProvider; import ca.uhn.fhir.jpa.model.config.PartitionSettings; import ca.uhn.fhir.jpa.model.config.PartitionSettings.CrossPartitionReferenceMode; @@ -88,7 +88,7 @@ public class FhirServerConfigCommon { } /** - * Configure FHIR properties around the the JPA server via this bean + * Configure FHIR properties around the JPA server via this bean */ @Bean public JpaStorageSettings jpaStorageSettings(AppProperties appProperties) { @@ -261,7 +261,7 @@ public class FhirServerConfigCommon { @Lazy @Bean public IBinaryStorageSvc binaryStorageSvc(AppProperties appProperties) { - DatabaseBlobBinaryStorageSvcImpl binaryStorageSvc = new DatabaseBlobBinaryStorageSvcImpl(); + DatabaseBinaryContentStorageSvcImpl binaryStorageSvc = new DatabaseBinaryContentStorageSvcImpl(); if (appProperties.getMax_binary_size() != null) { binaryStorageSvc.setMaximumBinarySize(appProperties.getMax_binary_size()); From 5c144a29c681fd450bb4a1200096efb5bcdfe8a8 Mon Sep 17 00:00:00 2001 From: "dotasek.dev" Date: Mon, 29 Apr 2024 09:36:20 -0400 Subject: [PATCH 4/5] Bump to latest pre-release --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 955f560..ffd93fa 100644 --- a/pom.xml +++ b/pom.xml @@ -14,7 +14,7 @@ ca.uhn.hapi.fhir hapi-fhir - 7.1.10-SNAPSHOT + 7.1.11-SNAPSHOT hapi-fhir-jpaserver-starter From 695c7044f5ca90de97f16b62470095442673fd8a Mon Sep 17 00:00:00 2001 From: dotasek Date: Tue, 21 May 2024 16:27:33 -0400 Subject: [PATCH 5/5] Update to HAPI 7.2.0 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ffd93fa..6b414af 100644 --- a/pom.xml +++ b/pom.xml @@ -14,7 +14,7 @@ ca.uhn.hapi.fhir hapi-fhir - 7.1.11-SNAPSHOT + 7.2.0 hapi-fhir-jpaserver-starter