Skip to content

Commit 67d2b3f

Browse files
Update dependencies
1 parent fb66a6e commit 67d2b3f

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# Release Notes
2+
* Update to Spring Boot 3.4.2
3+
* Update to Edison 3.4.2
4+
* Update to AWS SDK 2.30.8
25

36
# 0.33.0
47
* Update to Spring Boot 3.3.2 and Edison 3.3.0

build.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ version = '0.33.2-SNAPSHOT'
2424
group = 'de.otto.synapse'
2525

2626
ext {
27-
awsSdkVersion = "2.28.9"
28-
springBootVersion = "3.3.4"
29-
edisonVersion = "3.3.2"
27+
awsSdkVersion = "2.30.8"
28+
springBootVersion = "3.4.2"
29+
edisonVersion = "3.4.2"
3030
testcontainersVersion = "1.20.1"
3131
}
3232

@@ -47,7 +47,7 @@ nexusPublishing {
4747
test.finalizedBy jacocoTestReport
4848

4949
tasks.register('startLocalStack', Exec) {
50-
commandLine "docker", "run", "--name", "synapse_localstack", "-d", "-p", "4566:4566", "localstack/localstack:3.7.2"
50+
commandLine "docker", "run", "--name", "synapse_localstack", "-d", "-p", "4566:4566", "localstack/localstack:4.1.0"
5151
}
5252

5353
tasks.register('stopLocalStack', Exec) {

synapse-edison/src/test/java/de/otto/synapse/edison/history/HistoryControllerTest.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ public void shouldReturnHistoryAsJson() throws Exception {
6161
.perform(get("/internal/history/foo/4711"))
6262
.andDo(log())
6363
.andExpect(status().isOk())
64-
.andExpect(content().string(is("{\"history\":{\"entityId\":\"4711\",\"entries\":[" +
64+
.andExpect(content().json("{\"history\":{\"entityId\":\"4711\",\"entries\":[" +
6565
"{\"messageKey\":\"4711\",\"messagePayload\":{\"price\":45},\"senderTimestamp\":null,\"receiverTimestamp\":null,\"channelName\":\"test-products\",\"diffs\":[{\"key\":\"price\",\"previousValue\":46,\"newValue\":45,\"equal\":false}]}," +
66-
"{\"messageKey\":\"4711\",\"messagePayload\":{\"price\":42},\"senderTimestamp\":null,\"receiverTimestamp\":null,\"channelName\":\"test-products\",\"diffs\":[{\"key\":\"price\",\"previousValue\":45,\"newValue\":42,\"equal\":false}]}]}}")));
66+
"{\"messageKey\":\"4711\",\"messagePayload\":{\"price\":42},\"senderTimestamp\":null,\"receiverTimestamp\":null,\"channelName\":\"test-products\",\"diffs\":[{\"key\":\"price\",\"previousValue\":45,\"newValue\":42,\"equal\":false}]}]}}"));
6767
}
6868

6969
public History someHistory() {

synapse-edison/src/test/java/de/otto/synapse/edison/state/StateRepositoryRestControllerTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ public void shouldGetEntityJson() throws Exception {
9191
.andExpect(
9292
status().isOk())
9393
.andExpect(
94-
content().string("{\"entity\":\"one\",\"_links\":{\"self\":{\"href\":\"http://localhost/internal/test/staterepositories/first\"},\"collection\":{\"href\":\"http://localhost/internal/staterepositories/test{?page,pageSize}\",\"templated\":true}}}"));
94+
content().json("{\"entity\":\"one\",\"_links\":{\"self\":{\"href\":\"http://localhost/internal/test/staterepositories/first\"},\"collection\":{\"href\":\"http://localhost/internal/staterepositories/test{?page,pageSize}\",\"templated\":true}}}"));
9595
}
9696

9797
@Test

0 commit comments

Comments
 (0)