Skip to content

Commit e425235

Browse files
fix(deps): update spring boot (#2148)
* fix(deps): update spring boot * revert to older working version --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Raja Kolli <[email protected]>
1 parent efddb02 commit e425235

File tree

38 files changed

+39
-39
lines changed

38 files changed

+39
-39
lines changed

batch-boot-jpa-sample/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.springframework.boot</groupId>
99
<artifactId>spring-boot-starter-parent</artifactId>
10-
<version>4.0.0-RC2</version>
10+
<version>4.0.0</version>
1111
<relativePath/> <!-- lookup parent from repository -->
1212
</parent>
1313
<groupId>com.example.bootbatchjpa</groupId>

boot-api-archunit-sample/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.springframework.boot</groupId>
99
<artifactId>spring-boot-starter-parent</artifactId>
10-
<version>4.0.0-RC2</version>
10+
<version>4.0.0</version>
1111
<relativePath/> <!-- lookup parent from repository -->
1212
</parent>
1313
<groupId>com.example.archunit</groupId>

boot-chaos-monkey/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.springframework.boot</groupId>
88
<artifactId>spring-boot-starter-parent</artifactId>
9-
<version>4.0.0-RC2</version>
9+
<version>4.0.0</version>
1010
<relativePath /> <!-- lookup parent from repository -->
1111
</parent>
1212
<groupId>com.example.chaosmonkey</groupId>

boot-grafana-lgtm/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>4.0.0-RC2</version>
8+
<version>4.0.0</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.example.grafanalgtm</groupId>

boot-mongodb-elasticsearch/src/test/java/com/example/mongoes/common/ContainersConfig.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ public class ContainersConfig {
1616
@Bean
1717
@RestartScope
1818
ElasticsearchContainer elasticsearchContainer() {
19-
return new ElasticsearchContainer("docker.elastic.co/elasticsearch/elasticsearch:9.2.0")
19+
return new ElasticsearchContainer("docker.elastic.co/elasticsearch/elasticsearch:9.2.1")
2020
.withEnv(Map.of("xpack.security.enabled", "false"));
2121
}
2222

2323
@ServiceConnection
2424
@Bean
2525
@RestartScope
2626
MongoDBContainer mongoDBContainer() {
27-
return new MongoDBContainer(DockerImageName.parse("mongo").withTag("8.2.1")).withSharding();
27+
return new MongoDBContainer(DockerImageName.parse("mongo").withTag("8.2.2")).withSharding();
2828
}
2929
}

boot-opensearch-sample/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.springframework.boot</groupId>
99
<artifactId>spring-boot-starter-parent</artifactId>
10-
<version>3.5.7</version>
10+
<version>3.5.8</version>
1111
<relativePath/> <!-- lookup parent from repository -->
1212
</parent>
1313
<groupId>com.example.opensearch</groupId>

boot-rabbitmq-thymeleaf/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>org.springframework.boot</groupId>
1010
<artifactId>spring-boot-starter-parent</artifactId>
11-
<version>4.0.0-RC2</version>
11+
<version>4.0.0</version>
1212
<relativePath/> <!-- lookup parent from repository -->
1313
</parent>
1414
<groupId>com.example</groupId>

boot-rest-docs-sample/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.springframework.boot</groupId>
99
<artifactId>spring-boot-starter-parent</artifactId>
10-
<version>4.0.0-RC2</version>
10+
<version>4.0.0</version>
1111
<relativePath/> <!-- lookup parent from repository -->
1212
</parent>
1313
<groupId>com.example.restdocs</groupId>

boot-strategy-plugin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>4.0.0-RC2</version>
8+
<version>4.0.0</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.example.strategy.plugin</groupId>

boot-togglz-sample/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.5.7</version>
8+
<version>3.5.8</version>
99
<relativePath /> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.example.featuretoggle</groupId>

0 commit comments

Comments
 (0)