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

Open
wants to merge 17 commits into
base: main
Choose a base branch
from

Conversation

gu-scala-steward-private-repos[bot]

About this PR

Updates:

Usage

Please merge!

I'll automatically update this PR to resolve conflicts as long as you don't change it yourself.

If you have any feedback, just mention me in the comments below.

Configure Scala Steward for your repository with a .scala-steward.conf file.

Have a fantastic day writing Scala!

🔍 Files still referring to the old version numbers

The following files still refer to the old version numbers.
You might want to review and update them manually.

benchmarks/src/main/resources/massive-contents-list.json
build.sbt
project/plugins.sbt
⚙ Adjust future updates

Add these to your .scala-steward.conf file to ignore future updates of these dependencies:

updates.ignore = [
  { groupId = "ch.epfl.scala", artifactId = "sbt-version-policy" },
  { groupId = "com.github.sbt", artifactId = "sbt-release" },
  { groupId = "com.google.guava", artifactId = "guava" },
  { groupId = "com.gu", artifactId = "content-atom-model-thrift" },
  { groupId = "com.gu", artifactId = "content-entity-thrift" },
  { groupId = "com.gu", artifactId = "sbt-scrooge-typescript" },
  { groupId = "com.twitter", artifactId = "scrooge-core" },
  { groupId = "com.twitter", artifactId = "scrooge-sbt-plugin" },
  { groupId = "io.circe", artifactId = "circe-core" },
  { groupId = "io.circe", artifactId = "circe-generic" },
  { groupId = "io.circe", artifactId = "circe-parser" },
  { groupId = "org.apache.thrift", artifactId = "libthrift" },
  { groupId = "org.gnieh", artifactId = "diffson-circe" },
  { groupId = "org.scala-lang", artifactId = "scala-library" },
  { groupId = "org.scala-lang", artifactId = "scala-library" },
  { groupId = "org.scala-sbt", artifactId = "sbt" },
  { groupId = "org.scalatest", artifactId = "scalatest" },
  { groupId = "org.xerial.sbt", artifactId = "sbt-sonatype" },
  { groupId = "pl.project13.scala", artifactId = "sbt-jmh" }
]

Or, add these to slow down future updates of these dependencies:

dependencyOverrides = [
  {
    pullRequests = { frequency = "30 days" },
    dependency = { groupId = "ch.epfl.scala", artifactId = "sbt-version-policy" }
  },
  {
    pullRequests = { frequency = "30 days" },
    dependency = { groupId = "com.github.sbt", artifactId = "sbt-release" }
  },
  {
    pullRequests = { frequency = "30 days" },
    dependency = { groupId = "com.google.guava", artifactId = "guava" }
  },
  {
    pullRequests = { frequency = "30 days" },
    dependency = { groupId = "com.gu", artifactId = "content-atom-model-thrift" }
  },
  {
    pullRequests = { frequency = "30 days" },
    dependency = { groupId = "com.gu", artifactId = "content-entity-thrift" }
  },
  {
    pullRequests = { frequency = "30 days" },
    dependency = { groupId = "com.gu", artifactId = "sbt-scrooge-typescript" }
  },
  {
    pullRequests = { frequency = "30 days" },
    dependency = { groupId = "com.twitter", artifactId = "scrooge-core" }
  },
  {
    pullRequests = { frequency = "30 days" },
    dependency = { groupId = "com.twitter", artifactId = "scrooge-sbt-plugin" }
  },
  {
    pullRequests = { frequency = "30 days" },
    dependency = { groupId = "io.circe", artifactId = "circe-core" }
  },
  {
    pullRequests = { frequency = "30 days" },
    dependency = { groupId = "io.circe", artifactId = "circe-generic" }
  },
  {
    pullRequests = { frequency = "30 days" },
    dependency = { groupId = "io.circe", artifactId = "circe-parser" }
  },
  {
    pullRequests = { frequency = "30 days" },
    dependency = { groupId = "org.apache.thrift", artifactId = "libthrift" }
  },
  {
    pullRequests = { frequency = "30 days" },
    dependency = { groupId = "org.gnieh", artifactId = "diffson-circe" }
  },
  {
    pullRequests = { frequency = "30 days" },
    dependency = { groupId = "org.scala-lang", artifactId = "scala-library" }
  },
  {
    pullRequests = { frequency = "30 days" },
    dependency = { groupId = "org.scala-lang", artifactId = "scala-library" }
  },
  {
    pullRequests = { frequency = "30 days" },
    dependency = { groupId = "org.scala-sbt", artifactId = "sbt" }
  },
  {
    pullRequests = { frequency = "30 days" },
    dependency = { groupId = "org.scalatest", artifactId = "scalatest" }
  },
  {
    pullRequests = { frequency = "30 days" },
    dependency = { groupId = "org.xerial.sbt", artifactId = "sbt-sonatype" }
  },
  {
    pullRequests = { frequency = "30 days" },
    dependency = { groupId = "pl.project13.scala", artifactId = "sbt-jmh" }
  }
]
labels: dependencies, sbt-plugin-update, test-library-update, library-update, early-semver-patch, semver-spec-patch, version-scheme:early-semver, early-semver-minor, semver-spec-minor, early-semver-major, semver-spec-major, old-version-remains, commit-count:n:17

@emdash-ie
Copy link
Contributor

We’ll need to be careful with the scrooge update: there is a version 22.x that we shouldn’t go above due to reserved words problems, and I’m not sure what it is. Once we’ve confirmed which version that is, we should configure scala steward not to recommend upgrades above that version.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment