diff --git a/docs/src/main/paradox/project/migration-guides.md b/docs/src/main/paradox/project/migration-guides.md index 45d711b7d8..e60f14dff6 100644 --- a/docs/src/main/paradox/project/migration-guides.md +++ b/docs/src/main/paradox/project/migration-guides.md @@ -25,6 +25,8 @@ This is just stub documentation. It will be improved. If this is not possible/desired then you can add `scala-java8-compat` as dependency yourself. * In addition to the previous point, for Scala 2.12 `scala-java8-compat` has been updated to `1.0.2`. If you are using an older binary incompatible version of `scala-java8-compat` its recommend to update to `1.0.2`. +* For Scala 2.12 and 2.13 [ssl-config](https://github.com/lightbend/ssl-config) has been updated to 0.6.1 in order + to bring in bug/security fixes. Note that ssl-config 0.6.1 is binary and source compatible with 0.4.1. We are still investigating the effects of how the package name changes affect the @ref:[Persistence](../persistence.md) and @ref:[Cluster](../cluster-usage.md) modules. diff --git a/project/Dependencies.scala b/project/Dependencies.scala index cfd1c90107..832f1a1475 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -46,13 +46,7 @@ object Dependencies { val reactiveStreamsVersion = "1.0.4" - val sslConfigVersion = Def.setting { - if (scalaVersion.value.startsWith("3.")) { - "0.6.1" - } else { - "0.4.3" - } - } + val sslConfigVersion = "0.6.1" val scalaTestVersion = Def.setting { if (scalaVersion.value.startsWith("3.")) { @@ -97,7 +91,7 @@ object Dependencies { // ssl-config val sslConfigCore = Def.setting { - "com.typesafe" %% "ssl-config-core" % sslConfigVersion.value + "com.typesafe" %% "ssl-config-core" % sslConfigVersion } val lmdb = "org.lmdbjava" % "lmdbjava" % "0.7.0"