Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): Non-AWS dependency updates #1198

Merged
merged 7 commits into from
Feb 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .scala-steward.conf
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,7 @@ updates.pin = [
# the play-json library 3 is not compatible with version 2
{ groupId = "com.typesafe.play", artifactId = "play-json", version = "2.10.3" },
{ groupId = "com.typesafe.play", artifactId = "play-json-joda", version = "2.10.3" },

# Pin Play framework to 2.9 until we've migrated the code from Akka to Pekko
{ groupId = "com.typesafe.play", artifactId = "sbt-plugin", version = "2.9.1" },
]
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ val jacksonDatabind: String = "2.16.1"
val jacksonCbor: String = "2.16.1"
val jacksonScalaModule: String = "2.16.1"
val simpleConfigurationVersion: String = "1.5.7"
val googleOAuthClient: String = "1.34.1"
val nettyVersion: String = "4.1.105.Final"
val googleOAuthClient: String = "1.35.0"
val nettyVersion: String = "4.1.106.Final"
val slf4jVersion: String = "1.7.36"
val logbackVersion: String = "1.4.14"

Expand Down Expand Up @@ -307,7 +307,7 @@ lazy val football = lambda("football", "football")
libraryDependencies ++= Seq(
"org.scanamo" %% "scanamo" % "1.0.0-M12-1",
"org.scanamo" %% "scanamo-testkit" % "1.0.0-M12-1" % "test",
"com.gu" %% "content-api-client-default" % "20.0.0",
"com.gu" %% "content-api-client-default" % "20.0.1",
"com.amazonaws" % "aws-java-sdk-dynamodb" % awsSdkVersion,
"com.gu" %% "pa-client" % paClientVersion,
"com.squareup.okhttp3" % "okhttp" % okHttpVersion,
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ addSbtPlugin("com.localytics" % "sbt-dynamodb" % "2.0.3")

libraryDependencies += "org.vafer" % "jdeb" % "1.10" artifacts (Artifact("jdeb", "jar", "jar"))

addSbtPlugin("com.github.sbt" % "sbt-release" % "1.3.0")
addSbtPlugin("com.github.sbt" % "sbt-release" % "1.4.0")

addSbtPlugin("org.foundweekends" % "sbt-bintray" % "0.6.1")

Expand Down
Loading