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 #103

Open
wants to merge 14 commits into
base: main
Choose a base branch
from
Open
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
12 changes: 6 additions & 6 deletions atom-publisher-lib/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@ dependencyOverrides += "com.twitter" %% "scrooge-core" % scroogeVersion
dependencyOverrides += "com.twitter" %% "scrooge-serializer" % scroogeVersion

libraryDependencies ++= Seq(
"org.scala-lang.modules" %% "scala-collection-compat" % "2.8.1",
"org.typelevel" %% "cats-core" % "2.10.0",
"io.circe" %% "circe-parser" % "0.14.3",
"com.gu" %% "fezziwig" % "1.9.2",
"org.scala-lang.modules" %% "scala-collection-compat" % "2.12.0",
"org.typelevel" %% "cats-core" % "2.12.0",
"io.circe" %% "circe-parser" % "0.14.7",
"com.gu" %% "fezziwig" % "2.0.0",
"com.gu" %% "content-atom-model" % contentAtomVersion,
"com.amazonaws" % "aws-java-sdk-dynamodb" % awsVersion,
"com.amazonaws" % "aws-java-sdk-kinesis" % awsVersion,
"com.typesafe.scala-logging" %% "scala-logging" % "3.9.5",
"com.twitter" %% "scrooge-serializer" % scroogeVersion,
"com.twitter" %% "scrooge-core" % scroogeVersion,
"org.mockito" % "mockito-core" % mockitoVersion % Test,
"org.scalatestplus" %% "mockito-4-6" % "3.2.14.0" % Test,
"org.scalatest" %% "scalatest" % "3.2.14" % Test
"org.scalatestplus" %% "mockito-4-6" % "3.2.15.0" % Test,
"org.scalatest" %% "scalatest" % "3.2.18" % Test
)
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ name := "atom-maker-lib"

lazy val artifactProductionSettings = Seq(
organization := "com.gu",
scalaVersion := "2.13.13",
scalaVersion := "2.13.14",
licenses := Seq(License.Apache2),
scalacOptions := Seq("-deprecation", "-feature", "-release:11")
)
Expand Down
8 changes: 4 additions & 4 deletions project/BuildVars.scala
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import sbt._

object BuildVars {
lazy val awsVersion = "1.12.679"
lazy val contentAtomVersion = "4.0.1"
lazy val scroogeVersion = "22.1.0"
lazy val playVersion = "3.0.2"
lazy val mockitoVersion = "4.11.0"
lazy val contentAtomVersion = "4.0.4"
lazy val scroogeVersion = "22.12.0"
lazy val playVersion = "3.0.3"
lazy val mockitoVersion = "5.12.0"
}
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.9.8
sbt.version=1.9.9
4 changes: 2 additions & 2 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
addSbtPlugin("com.github.sbt" % "sbt-release" % "1.1.0")
addSbtPlugin("com.github.sbt" % "sbt-release" % "1.4.0")
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.10.0")
addSbtPlugin("ch.epfl.scala" % "sbt-version-policy" % "3.2.0")
addSbtPlugin("ch.epfl.scala" % "sbt-version-policy" % "3.2.1")

// for creating test cases that use a local dynamodb
addSbtPlugin("com.localytics" % "sbt-dynamodb" % "2.0.3")
Expand Down
Loading