Skip to content

Commit 3227fd3

Browse files
broadbotdavidangb
andauthored
CORE-69: Minor and patch updates - terra-cloud-resource-lib to 1.2.41-SNAPSHOT - google-cloud-nio to 0.128.5 - reactor-netty to 1.2.10 - scala-logging to 3.9.6 - postgresql to 42.7.8 - logback-classic to 1.5.19 - scalacheck to 1.19.0 - sbt and 2 more to 1.11.6 - terra-common-lib to 1.1.53-SNAPSHOT (#1721)
* CORE-69: Update terra-cloud-resource-lib from 1.2.39-SNAPSHOT to 1.2.41-SNAPSHOT * CORE-69: Update terra-common-lib from 1.1.50-SNAPSHOT to 1.1.53-SNAPSHOT * CORE-69: Update logback-classic from 1.5.18 to 1.5.19 * CORE-69: Update google-cloud-nio from 0.128.3 to 0.128.5 * CORE-69: Update scala-logging from 3.9.2 to 3.9.6 * CORE-69: Update reactor-netty from 1.2.9 to 1.2.10 * CORE-69: Update postgresql from 42.7.7 to 42.7.8 * CORE-69: Update sbt from 1.11.5 to 1.11.6 * CORE-69: Update scalacheck from 1.18.1 to 1.19.0 --------- Co-authored-by: David An <[email protected]>
1 parent c80ef93 commit 3227fd3

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

automation/project/Dependencies.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ object Dependencies {
2929
"com.fasterxml.jackson.module" % ("jackson-module-scala_" + scalaV) % jacksonV,
3030
"ch.qos.logback" % "logback-classic" % "1.4.5",
3131
"org.slf4j" % "slf4j-api" % "2.0.3",
32-
"net.logstash.logback" % "logstash-logback-encoder" % "8.1" exclude("com.fasterxml.jackson.core", "jackson-databind"),
32+
"net.logstash.logback" % "logstash-logback-encoder" % "8.1" exclude ("com.fasterxml.jackson.core", "jackson-databind"),
3333
"com.google.apis" % "google-api-services-oauth2" % "v1-rev112-1.20.0" excludeAll (
3434
ExclusionRule("com.google.guava", "guava-jdk5"),
3535
ExclusionRule("org.apache.httpcomponents", "httpclient")
@@ -43,7 +43,7 @@ object Dependencies {
4343
"com.typesafe.akka" %% "akka-http" % akkaHttpV,
4444
"com.typesafe.akka" %% "akka-testkit" % akkaV % "test",
4545
"com.typesafe.akka" %% "akka-slf4j" % akkaV,
46-
"com.typesafe.scala-logging" %% "scala-logging" % "3.9.2",
46+
"com.typesafe.scala-logging" %% "scala-logging" % "3.9.6",
4747
"org.scalatest" %% "scalatest" % "3.2.19" % Test,
4848
"org.scalatestplus" %% "scalacheck-1-18" % "3.2.19.0" % Test,
4949
"com.typesafe.scala-logging" %% "scala-logging" % "3.9.4",

project/Dependencies.scala

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ object Dependencies {
44
val akkaV = "2.6.19"
55
val akkaHttpV = "10.2.9"
66
val jacksonV = "2.17.0"
7-
val scalaLoggingV = "3.9.2"
7+
val scalaLoggingV = "3.9.6"
88
val scalaTestV = "3.2.19"
9-
val scalaCheckV = "1.18.1"
9+
val scalaCheckV = "1.19.0"
1010
val scalikejdbcVersion = "3.4.2"
11-
val postgresDriverVersion = "42.7.7"
11+
val postgresDriverVersion = "42.7.8"
1212
val sentryVersion = "6.15.0"
1313

1414
val workbenchLibV = "0c796e4" // If updating this, make sure googleStorageLocal in test dependencies is up-to-date
@@ -20,8 +20,8 @@ object Dependencies {
2020
val workbenchNotificationsV = s"1.1-$workbenchLibV"
2121
val workbenchOauth2V = s"0.9-$workbenchLibV"
2222
val monocleVersion = "2.0.5"
23-
val crlVersion = "1.2.39-SNAPSHOT"
24-
val tclVersion = "1.1.50-SNAPSHOT"
23+
val crlVersion = "1.2.41-SNAPSHOT"
24+
val tclVersion = "1.1.53-SNAPSHOT"
2525
val slf4jVersion = "2.0.6"
2626

2727
val excludeAkkaActor = ExclusionRule(organization = "com.typesafe.akka", name = "akka-actor_2.12")
@@ -47,7 +47,7 @@ object Dependencies {
4747
val jacksonCore: ModuleID = "com.fasterxml.jackson.core" % "jackson-core" % jacksonV
4848

4949
val logstashLogback: ModuleID = "net.logstash.logback" % "logstash-logback-encoder" % "8.1"
50-
val logbackClassic: ModuleID = "ch.qos.logback" % "logback-classic" % "1.5.18"
50+
val logbackClassic: ModuleID = "ch.qos.logback" % "logback-classic" % "1.5.19"
5151

5252
val ravenLogback: ModuleID = "com.getsentry.raven" % "raven-logback" % "7.8.6"
5353
val scalaLogging: ModuleID = "com.typesafe.scala-logging" %% "scala-logging" % scalaLoggingV
@@ -65,7 +65,7 @@ object Dependencies {
6565
val akkaHttpTestKit: ModuleID = "com.typesafe.akka" %% "akka-http-testkit" % akkaHttpV % "test"
6666
val scalaCheck: ModuleID = "org.scalacheck" %% "scalacheck" % scalaCheckV % "test"
6767

68-
val reactorNetty: ModuleID = "io.projectreactor.netty" % "reactor-netty" % "1.2.9"
68+
val reactorNetty: ModuleID = "io.projectreactor.netty" % "reactor-netty" % "1.2.10"
6969
val nettyAll: ModuleID = "io.netty" % "netty-all" % "4.2.6.Final"
7070

7171
val excludIoGrpc = ExclusionRule(organization = "io.grpc", name = "grpc-core")
@@ -115,7 +115,7 @@ object Dependencies {
115115
excludeWorkbenchModel
116116
)
117117
val googleStorageLocal: ModuleID =
118-
"com.google.cloud" % "google-cloud-nio" % "0.128.3" % "test" // needed for mocking google cloud storage. Should use same version as wb-libs
118+
"com.google.cloud" % "google-cloud-nio" % "0.128.5" % "test" // needed for mocking google cloud storage. Should use same version as wb-libs
119119

120120
val liquibaseCore: ModuleID = "org.liquibase" % "liquibase-core" % "4.33.0"
121121

0 commit comments

Comments
 (0)