Skip to content

Commit 505c64b

Browse files
authored
Merge branch 'main' into dependabot/gradle/e2e-tests/org.junit.jupiter-junit-jupiter-api-5.11.4
2 parents 9313f3d + b2a7dcc commit 505c64b

File tree

7 files changed

+4
-15
lines changed

7 files changed

+4
-15
lines changed

docker/docker-compose.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,6 @@ services:
3535
- GP2GP_SSL_TRUST_STORE_URL
3636
- GP2GP_SSL_TRUST_STORE_PASSWORD
3737
- GP2GP_GPC_OVERRIDE_NHS_NUMBER
38-
- GP2GP_GPC_OVERRIDE_FROM_ASID
39-
- GP2GP_GPC_OVERRIDE_TO_ASID
4038
- GP2GP_GPC_GET_TEST_URL
4139
- GP2GP_LARGE_ATTACHMENT_THRESHOLD
4240
- GP2GP_LARGE_EHR_EXTRACT_THRESHOLD

e2e-tests/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ dependencies {
1616
implementation 'org.apache.qpid:qpid-jms-client:0.57.0'
1717
implementation "org.apache.geronimo.specs:geronimo-jms_1.1_spec:1.1.1"
1818
implementation 'org.mongodb:mongo-java-driver:3.12.14'
19-
testImplementation 'com.fasterxml.jackson.core:jackson-databind:2.17.2'
19+
testImplementation 'com.fasterxml.jackson.core:jackson-databind:2.18.2'
2020
testImplementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.18.2'
2121
testImplementation 'commons-io:commons-io:2.17.0'
2222
testImplementation 'org.awaitility:awaitility:4.2.2'
2323
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.11.4'
24-
testImplementation "org.assertj:assertj-core:3.26.3"
24+
testImplementation "org.assertj:assertj-core:3.27.2"
2525
testImplementation 'ch.qos.logback:logback-classic:1.5.15'
2626
testImplementation 'org.xmlunit:xmlunit-assertj3:2.10.0'
2727
testImplementation 'org.apache.httpcomponents.client5:httpclient5:5.3.1'

service/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ dependencies {
6565

6666
// Test
6767
testImplementation 'org.springframework.boot:spring-boot-starter-test'
68-
testImplementation "org.assertj:assertj-core:3.26.3"
68+
testImplementation "org.assertj:assertj-core:3.27.2"
6969
testImplementation 'org.testcontainers:testcontainers:1.20.4'
7070
testImplementation 'org.awaitility:awaitility:4.2.2'
7171
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.10.3'

service/src/intTest/resources/application.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,6 @@ gp2gp:
5252
patientEndpoint: ${GP2GP_GPC_DOCUMENTS_FHIR_BASE:/documents/fhir}/Patient
5353
patientDocumentReferenceEndpoint: ${GP2GP_GPC_DOCUMENTS_FHIR_BASE:/documents/fhir}/Patient
5454
overrideNhsNumber: ${GP2GP_GPC_OVERRIDE_NHS_NUMBER:}
55-
overrideFromAsid: ${GP2GP_GPC_OVERRIDE_FROM_ASID:}
56-
overrideToAsid: ${GP2GP_GPC_OVERRIDE_TO_ASID:}
5755
maxRequestSize: ${GP2GP_GPC_MAX_REQUEST_SIZE:150000000} # default 150MB
5856
requestingPractitionerSDSUserId: ${GP2GP_REQUESTING_PRACTITIONER_SDS_USER_ID:UNK}
5957
requestingPractitionerSDSRoleProfileId: ${GP2GP_REQUESTING_PRACTITIONER_SDS_ROLE_PROFILE_ID:UNK}

service/src/main/java/uk/nhs/adaptors/gp2gp/gpc/builder/GpcRequestBuilder.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,6 @@
4343
@Slf4j
4444
public class GpcRequestBuilder {
4545

46-
@Value("${gp2gp.gpc.overrideFromAsid}")
47-
private String overrideFromAsid;
48-
@Value("${gp2gp.gpc.overrideToAsid}")
49-
private String overrideToAsid;
50-
5146
private static final String NHS_NUMBER_SYSTEM = "https://fhir.nhs.uk/Id/nhs-number";
5247
private static final String FHIR_CONTENT_TYPE = "application/fhir+json";
5348
private static final String SSP_INTERACTION_ID = "Ssp-InteractionID";

service/src/main/resources/application.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,6 @@ gp2gp:
4545
url: ${GP2GP_GPC_GET_URL:http://localhost:8090/@ODS_CODE@/STU3/1/gpconnect}
4646
migrateStructuredEndpoint: ${GP2GP_GPC_STRUCTURED_FHIR_BASE:/fhir}/Patient/$gpc.migratestructuredrecord
4747
overrideNhsNumber: ${GP2GP_GPC_OVERRIDE_NHS_NUMBER:}
48-
overrideFromAsid: ${GP2GP_GPC_OVERRIDE_FROM_ASID:}
49-
overrideToAsid: ${GP2GP_GPC_OVERRIDE_TO_ASID:}
5048
maxRequestSize: ${GP2GP_GPC_MAX_REQUEST_SIZE:150000000} # default 150MB
5149
requestingPractitionerSDSUserId: ${GP2GP_REQUESTING_PRACTITIONER_SDS_USER_ID:UNK}
5250
requestingPractitionerSDSRoleProfileId: ${GP2GP_REQUESTING_PRACTITIONER_SDS_ROLE_PROFILE_ID:UNK}

wiremock/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ repositories {
66

77
dependencies {
88
implementation "org.wiremock:wiremock:3.10.0"
9-
implementation "org.json:json:20240303"
9+
implementation "org.json:json:20241224"
1010
implementation "com.auth0:java-jwt:4.4.0"
1111
implementation "org.slf4j:slf4j-simple:2.0.16"
1212
}

0 commit comments

Comments
 (0)