Skip to content

Commit 20233ae

Browse files
authored
revert upgrade changes (#1383)
1 parent cc14997 commit 20233ae

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

docker/docker-compose-transform-tool.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
mongodb:
3-
image: mongo:8.0.15
3+
image: mongo:4.4
44
ports:
55
- "27017:27017"
66

docker/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ services:
6262
mongodb:
6363
networks:
6464
- commonforgp2gp
65-
image: mongo:8.0.15
65+
image: mongo:4.4
6666
ports:
6767
- "27017:27017"
6868

service/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id 'org.springframework.boot' version '3.5.1'
2+
id 'org.springframework.boot' version '3.5.0'
33
id 'io.spring.dependency-management' version '1.1.7'
44
id 'java'
55
id "checkstyle"

service/src/intTest/java/uk/nhs/adaptors/gp2gp/testcontainers/MongoDbContainer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
@Slf4j
88
public final class MongoDbContainer extends GenericContainer<MongoDbContainer> {
99
public static final int MONGODB_PORT = 27017;
10-
public static final String DEFAULT_IMAGE_AND_TAG = "mongo:8.0.15";
10+
public static final String DEFAULT_IMAGE_AND_TAG = "mongo:4.4";
1111
private static MongoDbContainer container;
1212

1313
private MongoDbContainer() {

smoke-tests/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ dependencies {
1414
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
1515
testImplementation 'org.assertj:assertj-core:3.23.1'
1616
testImplementation 'org.apache.httpcomponents.client5:httpclient5:5.1.3'
17-
testImplementation 'org.mongodb:mongodb-driver-sync:5.6.0'
17+
testImplementation 'org.mongodb:mongodb-driver-sync:4.6.1'
1818
testImplementation ('org.apache.qpid:qpid-jms-client:1.6.0') {
1919
exclude group: 'io.netty', module: 'netty-codec-http'
2020
}

0 commit comments

Comments
 (0)