Skip to content

Commit 44a5885

Browse files
authored
Merge branch 'develop' into update/google-api-services-storage-v1-rev20250925-2.0.0
2 parents 21312a0 + 3227fd3 commit 44a5885

File tree

10 files changed

+20
-20
lines changed

10 files changed

+20
-20
lines changed

.github/workflows/verify_consumer_pacts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ jobs:
321321
-e JANITOR_CLIENT_CREDENTIAL_FILE_PATH="" \
322322
-e JANITOR_TRACK_RESOURCE_PROJECT_ID="" \
323323
-e JANITOR_TRACK_RESOURCE_TOPIC_ID="" \
324-
sbtscala/scala-sbt:eclipse-temurin-17.0.15_6_1.11.5_2.13.16 \
324+
sbtscala/scala-sbt:eclipse-temurin-17.0.15_6_1.11.6_2.13.16 \
325325
bash -c "git config --global --add safe.directory /working/sam && sbt \"set scalafmtOnCompile := false\" \"project pact4s\" \"testOnly *SamProviderSpec\""
326326
327327
can-i-deploy: # The can-i-deploy job will run as a result of a Sam PR. It reports the pact verification statuses on all deployed environments.

automation/Dockerfile-tests

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM sbtscala/scala-sbt:eclipse-temurin-17.0.15_6_1.11.5_2.13.16
1+
FROM sbtscala/scala-sbt:eclipse-temurin-17.0.15_6_1.11.6_2.13.16
22

33
COPY src /app/src
44
COPY test.sh /app

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",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.11.5
1+
sbt.version=1.11.6
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.11.5
1+
sbt.version=1.11.6

codegen_java/templates/libraries/okhttp-gson/build.sbt.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ lazy val root = (project in file(".")).
77
Seq(organization := "org.broadinstitute.dsde.workbench",
88
name := "sam-client",
99
version := createVersion("{{artifactVersion}}"),
10-
scalaVersion := "2.13.15",
10+
scalaVersion := "2.13.16",
1111
scalacOptions ++= Seq("-feature"),
1212
javacOptions in compile ++= Seq("-Xlint:deprecation"),
1313
publishArtifact in (Compile, packageDoc) := false,

docker/build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,9 +96,9 @@ function make_jar()
9696
GIT_MODEL_HASH=$(git log -n 1 --pretty=format:%h)
9797

9898
# make jar. cache sbt dependencies.
99-
docker run --rm --link postgres:postgres -e GIT_MODEL_HASH=$GIT_MODEL_HASH -v $PWD:/working -v jar-cache:/root/.ivy -v jar-cache:/root/.ivy2 sbtscala/scala-sbt:eclipse-temurin-17.0.15_6_1.11.5_2.13.16 /working/docker/init_schema.sh /working
99+
docker run --rm --link postgres:postgres -e GIT_MODEL_HASH=$GIT_MODEL_HASH -v $PWD:/working -v jar-cache:/root/.ivy -v jar-cache:/root/.ivy2 sbtscala/scala-sbt:eclipse-temurin-17.0.15_6_1.11.6_2.13.16 /working/docker/init_schema.sh /working
100100
sleep 40
101-
docker run --rm --link postgres:postgres -e GIT_MODEL_HASH=$GIT_MODEL_HASH -v $PWD:/working -v jar-cache:/root/.ivy -v jar-cache:/root/.ivy2 sbtscala/scala-sbt:eclipse-temurin-17.0.15_6_1.11.5_2.13.16 /working/docker/install.sh /working
101+
docker run --rm --link postgres:postgres -e GIT_MODEL_HASH=$GIT_MODEL_HASH -v $PWD:/working -v jar-cache:/root/.ivy -v jar-cache:/root/.ivy2 sbtscala/scala-sbt:eclipse-temurin-17.0.15_6_1.11.6_2.13.16 /working/docker/install.sh /working
102102
EXIT_CODE=$?
103103
set -e # Turn error detection back on for the rest of the script
104104

docker/build_jar.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ set -e
88
# Get the last commit hash of the model directory and set it as an environment variable
99
GIT_MODEL_HASH=$(git log -n 1 --pretty=format:%h)
1010

11-
docker run --rm -e GIT_MODEL_HASH=$GIT_MODEL_HASH -v $PWD:/working -v jar-cache:/root/.ivy -v jar-cache:/root/.ivy2 sbtscala/scala-sbt:eclipse-temurin-17.0.15_6_1.11.5_2.13.16 /working/docker/clean_install.sh /working
11+
docker run --rm -e GIT_MODEL_HASH=$GIT_MODEL_HASH -v $PWD:/working -v jar-cache:/root/.ivy -v jar-cache:/root/.ivy2 sbtscala/scala-sbt:eclipse-temurin-17.0.15_6_1.11.6_2.13.16 /working/docker/clean_install.sh /working
1212
EXIT_CODE=$?
1313

1414
if [ $EXIT_CODE != 0 ]; then

project/Dependencies.scala

Lines changed: 9 additions & 9 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,8 +65,8 @@ 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"
69-
val nettyAll: ModuleID = "io.netty" % "netty-all" % "4.2.4.Final"
68+
val reactorNetty: ModuleID = "io.projectreactor.netty" % "reactor-netty" % "1.2.10"
69+
val nettyAll: ModuleID = "io.netty" % "netty-all" % "4.2.6.Final"
7070

7171
val excludIoGrpc = ExclusionRule(organization = "io.grpc", name = "grpc-core")
7272
val ioGrpc: ModuleID = "io.grpc" % "grpc-core" % "1.75.0"
@@ -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

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.11.5
1+
sbt.version=1.11.6

0 commit comments

Comments
 (0)