From a77855335d2b9a20835501eba641adb6c638a83f Mon Sep 17 00:00:00 2001 From: xerial-bot Date: Tue, 16 Jul 2024 13:23:11 -0700 Subject: [PATCH] Update jackson-datatype-jdk8, ... to 2.16.2 (#3586) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## About this PR 📦 Updates * [com.fasterxml.jackson.datatype:jackson-datatype-jdk8](https://github.com/FasterXML/jackson-modules-java8) * [com.fasterxml.jackson.datatype:jackson-datatype-json-org](https://github.com/FasterXML/jackson-datatypes-misc) from `2.16.1` to `2.16.2` ## Usage ✅ **Please merge!** I'll automatically update this PR to resolve conflicts as long as you don't change it yourself. If you'd like to skip this version, you can just close this PR. If you have any feedback, just mention me in the comments below. Configure Scala Steward for your repository with a [`.scala-steward.conf`](https://github.com/scala-steward-org/scala-steward/blob/7ec418cd5441d449f037bca6d34326534c07a5dd/docs/repo-specific-configuration.md) file. _Have a fantastic day writing Scala!_
âš™ Adjust future updates Add this to your `.scala-steward.conf` file to ignore future updates of this dependency: ``` updates.ignore = [ { groupId = "com.fasterxml.jackson.datatype" } ] ``` Or, add this to slow down future updates of this dependency: ``` dependencyOverrides = [{ pullRequests = { frequency = "30 days" }, dependency = { groupId = "com.fasterxml.jackson.datatype" } }] ```
labels: library-update --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 478b79585..947f1753a 100644 --- a/build.sbt +++ b/build.sbt @@ -939,8 +939,8 @@ lazy val fluentd = // td-client-java -> json-simple happened to include junit 4.10 [CVE-2020-15250] exclude ("junit", "junit"), // Necessary for td-client-java, which is used in fluency-treasuredata - "com.fasterxml.jackson.datatype" % "jackson-datatype-json-org" % "2.16.1" % Provided, - "com.fasterxml.jackson.datatype" % "jackson-datatype-jdk8" % "2.16.1" % Provided, + "com.fasterxml.jackson.datatype" % "jackson-datatype-json-org" % "2.16.2" % Provided, + "com.fasterxml.jackson.datatype" % "jackson-datatype-jdk8" % "2.16.2" % Provided, // Redirecting slf4j log from Fluency to aiframe-log "org.slf4j" % "slf4j-jdk14" % SLF4J_VERSION )