Skip to content

Commit 8f497dd

Browse files
authored
Merge pull request #660 from hapifhir/rel_7_1_tracking
HAPI 7.2.0 Release Tracking
2 parents 66f1af3 + 695c704 commit 8f497dd

File tree

4 files changed

+9
-10
lines changed

4 files changed

+9
-10
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>ca.uhn.hapi.fhir</groupId>
1616
<artifactId>hapi-fhir</artifactId>
17-
<version>7.0.2</version>
17+
<version>7.2.0</version>
1818
</parent>
1919

2020
<artifactId>hapi-fhir-jpaserver-starter</artifactId>

src/main/java/ca/uhn/fhir/jpa/starter/common/FhirServerConfigCommon.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import ca.uhn.fhir.jpa.api.config.JpaStorageSettings;
44
import ca.uhn.fhir.jpa.binary.api.IBinaryStorageSvc;
5-
import ca.uhn.fhir.jpa.binstore.DatabaseBlobBinaryStorageSvcImpl;
5+
import ca.uhn.fhir.jpa.binstore.DatabaseBinaryContentStorageSvcImpl;
66
import ca.uhn.fhir.jpa.config.HibernatePropertiesProvider;
77
import ca.uhn.fhir.jpa.model.config.PartitionSettings;
88
import ca.uhn.fhir.jpa.model.config.PartitionSettings.CrossPartitionReferenceMode;
@@ -88,7 +88,7 @@ public FhirServerConfigCommon(AppProperties appProperties) {
8888
}
8989

9090
/**
91-
* Configure FHIR properties around the the JPA server via this bean
91+
* Configure FHIR properties around the JPA server via this bean
9292
*/
9393
@Bean
9494
public JpaStorageSettings jpaStorageSettings(AppProperties appProperties) {
@@ -264,7 +264,7 @@ protected StorageSettings storageSettings(AppProperties appProperties, JpaStorag
264264
@Lazy
265265
@Bean
266266
public IBinaryStorageSvc binaryStorageSvc(AppProperties appProperties) {
267-
DatabaseBlobBinaryStorageSvcImpl binaryStorageSvc = new DatabaseBlobBinaryStorageSvcImpl();
267+
DatabaseBinaryContentStorageSvcImpl binaryStorageSvc = new DatabaseBinaryContentStorageSvcImpl();
268268

269269
if (appProperties.getMax_binary_size() != null) {
270270
binaryStorageSvc.setMaximumBinarySize(appProperties.getMax_binary_size());

src/main/java/ca/uhn/fhir/jpa/starter/cr/StarterCrR4Config.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ public ExecutorService cqlExecutor() {
6868
@Bean
6969
CareGapsProperties careGapsProperties(CrProperties theCrProperties) {
7070
var careGapsProperties = new CareGapsProperties();
71-
careGapsProperties.setThreadedCareGapsEnabled(false);
7271
careGapsProperties.setCareGapsReporter(theCrProperties.getCareGapsReporter());
7372
careGapsProperties.setCareGapsCompositionSectionAuthor(theCrProperties.getCareGapsSectionAuthor());
7473
return careGapsProperties;
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
package ca.uhn.fhir.jpa.starter.ips;
22

33
import ca.uhn.fhir.context.FhirContext;
4-
import ca.uhn.fhir.jpa.api.dao.DaoRegistry;
54
import ca.uhn.fhir.jpa.ips.api.IIpsGenerationStrategy;
65
import ca.uhn.fhir.jpa.ips.generator.IIpsGeneratorSvc;
76
import ca.uhn.fhir.jpa.ips.generator.IpsGeneratorSvcImpl;
7+
import ca.uhn.fhir.jpa.ips.jpa.DefaultJpaIpsGenerationStrategy;
88
import ca.uhn.fhir.jpa.ips.provider.IpsOperationProvider;
9-
import ca.uhn.fhir.jpa.ips.strategy.DefaultIpsGenerationStrategy;
9+
1010
import org.springframework.context.annotation.Bean;
1111
import org.springframework.context.annotation.Conditional;
1212

1313
@Conditional(IpsConfigCondition.class)
1414
public class StarterIpsConfig {
1515
@Bean
1616
IIpsGenerationStrategy ipsGenerationStrategy() {
17-
return new DefaultIpsGenerationStrategy();
17+
return new DefaultJpaIpsGenerationStrategy();
1818
}
1919

2020
@Bean
@@ -24,7 +24,7 @@ public IpsOperationProvider ipsOperationProvider(IIpsGeneratorSvc theIpsGenerato
2424

2525
@Bean
2626
public IIpsGeneratorSvc ipsGeneratorSvcImpl(
27-
FhirContext theFhirContext, IIpsGenerationStrategy theGenerationStrategy, DaoRegistry theDaoRegistry) {
28-
return new IpsGeneratorSvcImpl(theFhirContext, theGenerationStrategy, theDaoRegistry);
27+
FhirContext theFhirContext, IIpsGenerationStrategy theGenerationStrategy) {
28+
return new IpsGeneratorSvcImpl(theFhirContext, theGenerationStrategy);
2929
}
3030
}

0 commit comments

Comments
 (0)