Skip to content

Commit eb1b6c4

Browse files
committed
Upgrade ssl-config-core to latest 0.7.0
1 parent fb4c33f commit eb1b6c4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

project/Dependencies.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ object Dependencies {
4141
val scalaTest = "org.scalatest" %% "scalatest" % "3.2.19"
4242
val sentry = "io.sentry" % "sentry" % "8.23.0"
4343
val slf4jApi = "org.slf4j" % "slf4j-api" % "2.0.17"
44-
val sslConfig = "com.typesafe" %% "ssl-config-core" % "0.6.1"
44+
val sslConfig = "com.typesafe" %% "ssl-config-core" % "0.7.0-M3"
4545
val testContainersScalaScalaTest = "com.dimafeng" %% "testcontainers-scala-scalatest" % "0.43.0"
4646
val testContainersScalaKafka = "com.dimafeng" %% "testcontainers-scala-kafka" % "0.43.0"
4747
val zio = "dev.zio" %% "zio" % "1.0.18"

ssl-config/src/test/scala/com/avast/sst/ssl/SslContextModuleTest.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ class SslContextModuleTest extends AnyFunSuite {
88

99
test("SslContextModule initializes properly from JKS store with reference config") {
1010
val sslContext = SslContextModule.make[SyncIO](ConfigFactory.empty()).unsafeRunSync()
11-
assert(sslContext.getProtocol === "TLSv1.2")
11+
assert(sslContext.getProtocol === "TLSv1.3")
1212
}
1313

1414
test("SslContextModule initializes properly from JKS store with provided config") {
1515
val sslContext = SslContextModule.make[SyncIO](ConfigFactory.load().getConfig("ssl-config"), withReference = false).unsafeRunSync()
16-
assert(sslContext.getProtocol === "TLSv1.2")
16+
assert(sslContext.getProtocol === "TLSv1.3")
1717
}
1818

1919
test("SslContextModule fails to initialize for empty config and no reference config") {

0 commit comments

Comments
 (0)