Skip to content

Commit b067ccb

Browse files
committed
Bump versions
1 parent f0afc1f commit b067ccb

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

build.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ val pekkoConnectorKafkaVersion = "1.1.0"
1414
val kafkaVersion = "3.9.0"
1515
val activemqVersion = "5.18.5" // We are stuck with 5.x
1616
val artemisVersion = "2.39.0"
17-
val testContainersVersion = "1.20.4"
17+
val testContainersVersion = "1.21.3"
1818
val keycloakVersion = "26.3.2"
1919
val keycloakClientVersion = "26.0.6"
2020
val sttpVersion = "3.10.1"
@@ -139,8 +139,8 @@ libraryDependencies ++= Seq(
139139
"org.keycloak" % "keycloak-admin-client" % keycloakClientVersion,
140140
"org.jboss.spec.javax.ws.rs" % "jboss-jaxrs-api_2.1_spec" % "2.0.2.Final",
141141

142-
"org.postgresql" % "postgresql" % "42.7.4",
143-
"io.zonky.test.postgres" % "embedded-postgres-binaries-bom" % "16.6.0" % Test pomOnly(),
142+
"org.postgresql" % "postgresql" % "42.7.7",
143+
"io.zonky.test.postgres" % "embedded-postgres-binaries-bom" % "17.5.0" % Test pomOnly(),
144144
"io.zonky.test" % "embedded-postgres" % "2.1.0" % Test,
145145

146146
"org.scalatest" %% "scalatest" % "3.2.18" % Test,

src/test/scala/alpakka/slick/SlickIT.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public class SlickIT {
4747
.withNetworkAliases("postgres");
4848

4949
@Container
50-
public static ToxiproxyContainer toxiproxy = new ToxiproxyContainer("ghcr.io/shopify/toxiproxy:2.5.0")
50+
public static ToxiproxyContainer toxiproxy = new ToxiproxyContainer("ghcr.io/shopify/toxiproxy:2.12.0")
5151
.withNetwork(network);
5252

5353
@BeforeAll
@@ -58,7 +58,6 @@ public static void setup() throws IOException {
5858
// ToxiProxyContainer reserves 31 ports, starting at 8666
5959
final Proxy proxy = toxiproxyClient.createProxy("postgres", "0.0.0.0:8666", "postgres:5432");
6060

61-
// TODO Add more toxics
6261
proxy.toxics()
6362
.latency("latency", ToxicDirection.DOWNSTREAM, 3)
6463
.setJitter(2);

0 commit comments

Comments
 (0)