From f89a90c46f566bc072339552b4c8e34c001a25bb Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sun, 10 Mar 2024 16:32:32 +0000 Subject: [PATCH 1/4] Update jackson-module-scala to 2.16.2 in 2.12.x --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 846bba64c1d7..2349d66b0e45 100644 --- a/build.sbt +++ b/build.sbt @@ -413,7 +413,7 @@ lazy val compilerOptionsExporter = Project("compilerOptionsExporter", file(".") .settings(disablePublishing) .settings( libraryDependencies ++= { - val jacksonVersion = "2.16.1" + val jacksonVersion = "2.16.2" Seq( "com.fasterxml.jackson.core" % "jackson-core" % jacksonVersion, "com.fasterxml.jackson.core" % "jackson-annotations" % jacksonVersion, From c3ceadcd1ec5d252412c88a9a03014ddb76a8a55 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sun, 24 Mar 2024 18:36:17 +0000 Subject: [PATCH 2/4] Update sbt-buildinfo to 0.12.0 in 2.12.x --- project/project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/project/plugins.sbt b/project/project/plugins.sbt index 71982a81514a..980e841c0f6b 100644 --- a/project/project/plugins.sbt +++ b/project/project/plugins.sbt @@ -1 +1 @@ -addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.11.0") +addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.12.0") From 2b986efc4efedd20a2cf084bff4be6541123dee0 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sun, 24 Mar 2024 18:36:20 +0000 Subject: [PATCH 3/4] Update jackson-module-scala to 2.17.0 in 2.12.x --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 2349d66b0e45..50dc66bffbc2 100644 --- a/build.sbt +++ b/build.sbt @@ -413,7 +413,7 @@ lazy val compilerOptionsExporter = Project("compilerOptionsExporter", file(".") .settings(disablePublishing) .settings( libraryDependencies ++= { - val jacksonVersion = "2.16.2" + val jacksonVersion = "2.17.0" Seq( "com.fasterxml.jackson.core" % "jackson-core" % jacksonVersion, "com.fasterxml.jackson.core" % "jackson-annotations" % jacksonVersion, From e054c1b06645136132fb1780af172eb5151bdb40 Mon Sep 17 00:00:00 2001 From: Seth Tisue Date: Mon, 8 Apr 2024 14:37:19 -0700 Subject: [PATCH 4/4] GitHub Actions config: add JDK 22 to matrix --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b688c85c9d6d..69de3ac4ec8d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, windows-latest] - java: [8, 11, 17, 21] + java: [8, 11, 17, 21, 22] runs-on: ${{matrix.os}} steps: - run: git config --global core.autocrlf false