Skip to content

Commit

Permalink
chore(deps): Non-AWS dependency updates (#1586)
Browse files Browse the repository at this point in the history
* Update logback-classic to 1.5.12

* Update enumeratum to 1.7.5

* Update sbt-buildinfo to 0.13.1

* Update jackson-annotations to 2.18.2

* Update play-v30 to 16.0.0

* Update aws-parameterstore-sdk-v2 to 11.3.8

* Update play-v30 to 11.3.8

* Update sbt-plugin to 3.0.6

* Update quartz to 2.5.0

* Update sbt to 1.10.6

* Update scanamo to 3.0.0

* Update jdeb to 1.12

* Fix formatting

---------

Co-authored-by: gu-scala-steward-public-repos[bot] <108136057+gu-scala-steward-public-repos[bot]@users.noreply.github.com>
Co-authored-by: Joe Griffiths <[email protected]>
Co-authored-by: Kelvin Chappell <[email protected]>
  • Loading branch information
3 people authored Dec 10, 2024
1 parent 7d26fd1 commit 3e8ab78
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
18 changes: 9 additions & 9 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -73,29 +73,29 @@ scalacOptions ++= Seq(
"-Xfatal-warnings"
)

val jacksonVersion = "2.18.0"
val jacksonVersion = "2.18.2"
val circeVersion = "0.14.10"

// These can live in the same codebase, see: https://aws.amazon.com/blogs/developer/aws-sdk-for-java-2-x-released/
val awsV1SdkVersion = "1.12.778"
val awsV2SdkVersion = "2.29.22"
val playSecretRotationVersion = "13.1.0"

libraryDependencies ++= Seq(
ws,
"com.fasterxml.jackson.dataformat" % "jackson-dataformat-yaml" % jacksonVersion,
"com.fasterxml.jackson.core" % "jackson-databind" % jacksonVersion,
"com.fasterxml.jackson.core" % "jackson-annotations" % jacksonVersion,
"com.fasterxml.jackson.module" %% "jackson-module-scala" % jacksonVersion,
"org.scanamo" %% "scanamo" % "2.0.0",
"com.beachape" %% "enumeratum" % "1.7.4",
"org.apache.pekko" %% "pekko-actor-typed" % "1.0.3",
"org.scanamo" %% "scanamo" % "3.0.0",
"com.beachape" %% "enumeratum" % "1.7.5",
"com.gu" %% "simple-configuration-ssm" % "4.0.0",
"com.gu.play-secret-rotation" %% "play-v30" % "11.2.0",
"com.gu.play-secret-rotation" %% "aws-parameterstore-sdk-v2" % "11.2.0",
"com.gu.play-googleauth" %% "play-v30" % "13.2.0",
"com.gu.play-secret-rotation" %% "play-v30" % playSecretRotationVersion,
"com.gu.play-secret-rotation" %% "aws-parameterstore-sdk-v2" % playSecretRotationVersion,
"com.gu.play-googleauth" %% "play-v30" % "17.0.0",
// Pin play-bootstrap because it is tied to the bootstrap version
"com.adrianhurt" %% "play-bootstrap" % "1.6.1-P28-B3", // scala-steward:off
"org.quartz-scheduler" % "quartz" % "2.3.2",
"org.quartz-scheduler" % "quartz" % "2.5.0",
"com.lihaoyi" %% "fastparse" % "3.1.1",
"com.amazonaws" % "aws-java-sdk-ec2" % awsV1SdkVersion,
"com.amazonaws" % "aws-java-sdk-sns" % awsV1SdkVersion,
Expand All @@ -104,7 +104,7 @@ libraryDependencies ++= Seq(
"com.amazonaws" % "aws-java-sdk-kinesis" % awsV1SdkVersion,
"net.logstash.logback" % "logstash-logback-encoder" % "8.0",
// Transient dependency of Play. No newer version of Play with this vulnerability fixed.
"ch.qos.logback" % "logback-classic" % "1.5.8",
"ch.qos.logback" % "logback-classic" % "1.5.12",
"software.amazon.awssdk" % "dynamodb" % awsV2SdkVersion,
"software.amazon.awssdk" % "auth" % awsV2SdkVersion,
"software.amazon.awssdk" % "regions" % awsV2SdkVersion,
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.10.2
sbt.version=1.10.6
6 changes: 3 additions & 3 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.5")
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.6")

// sbt-native-packager cannot be updated to >1.9.9 until Play supports scala-xml 2
addSbtPlugin(
"com.github.sbt" % "sbt-native-packager" % "1.10.4"
) // scala-steward:off
addSbtPlugin("com.gu" % "sbt-riffraff-artifact" % "1.1.18")
libraryDependencies += "org.vafer" % "jdeb" % "1.11" artifacts Artifact(
libraryDependencies += "org.vafer" % "jdeb" % "1.12" artifacts Artifact(
"jdeb",
"jar",
"jar"
)
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.12.0")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.13.1")
addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.10.0-RC1")

addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")
Expand Down

0 comments on commit 3e8ab78

Please sign in to comment.