Skip to content

chore(deps): update dependency com.fasterxml.jackson.datatype:jackson-datatype-jdk8 to v2.21.2#24

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/com.fasterxml.jackson.datatype-jackson-datatype-jdk8-2.x
Open

chore(deps): update dependency com.fasterxml.jackson.datatype:jackson-datatype-jdk8 to v2.21.2#24
renovate[bot] wants to merge 1 commit intomainfrom
renovate/com.fasterxml.jackson.datatype-jackson-datatype-jdk8-2.x

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Jun 22, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
com.fasterxml.jackson.datatype:jackson-datatype-jdk8 2.18.22.21.2 age adoption passing confidence
com.fasterxml.jackson.datatype:jackson-datatype-jdk8 2.13.42.21.2 age adoption passing confidence

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@vercel
Copy link
Copy Markdown

vercel Bot commented Jun 22, 2025

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
boomchainlab-framework Error Error Mar 20, 2026 6:09pm

@renovate renovate Bot force-pushed the renovate/com.fasterxml.jackson.datatype-jackson-datatype-jdk8-2.x branch from 3350b40 to 3ae1452 Compare July 18, 2025 19:02
@renovate renovate Bot changed the title chore(deps): update dependency com.fasterxml.jackson.datatype:jackson-datatype-jdk8 to v2.19.1 chore(deps): update dependency com.fasterxml.jackson.datatype:jackson-datatype-jdk8 to v2.19.2 Jul 18, 2025
@coderabbitai
Copy link
Copy Markdown

coderabbitai Bot commented Jul 18, 2025

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Note

Other AI code review bot(s) detected

CodeRabbit has detected other AI code review bot(s) in this pull request and will avoid duplicating their findings in the review comments. This may lead to a less comprehensive review.


Comment @coderabbitai help to get the list of available commands and usage tips.

Comment thread agu-token-java-core/build.gradle.kts Outdated
force("com.fasterxml.jackson.core:jackson-databind:2.13.4")
force("com.fasterxml.jackson.core:jackson-annotations:2.13.4")
force("com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.4")
force("com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.19.2")
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The version update for jackson-datatype-jdk8 to 2.19.2 in the resolutionStrategy block creates inconsistency with other Jackson dependencies that remain at 2.13.4. According to the comment above this block, the purpose is to "compile and test against a lower Jackson version to ensure we're compatible with it." To maintain this compatibility testing approach, this dependency should remain at version 2.13.4 like the other Jackson components in this block.

The implementation dependency can be updated to 2.19.2 as shown later in the file, but the forced resolution version should stay consistent with the compatibility testing strategy.

Suggested change
force("com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.19.2")
force("com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.4")

Spotted by Diamond

Is this helpful? React 👍 or 👎 to let us know.

@renovate renovate Bot force-pushed the renovate/com.fasterxml.jackson.datatype-jackson-datatype-jdk8-2.x branch from 3ae1452 to 8dc2905 Compare August 31, 2025 10:04
@renovate renovate Bot changed the title chore(deps): update dependency com.fasterxml.jackson.datatype:jackson-datatype-jdk8 to v2.19.2 chore(deps): update dependency com.fasterxml.jackson.datatype:jackson-datatype-jdk8 to v2.20.0 Aug 31, 2025
Comment on lines 10 to 15
force("com.fasterxml.jackson.core:jackson-core:2.13.4")
force("com.fasterxml.jackson.core:jackson-databind:2.13.4")
force("com.fasterxml.jackson.core:jackson-annotations:2.13.4")
force("com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.4")
force("com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.20.0")
force("com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.4")
force("com.fasterxml.jackson.module:jackson-module-kotlin:2.13.4")
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This PR introduces a version inconsistency in the Jackson library ecosystem. The jackson-datatype-jdk8 component is being updated to version 2.20.0 while other Jackson components remain at 2.13.4 in the force configuration block.

Jackson libraries are designed to work together as a cohesive unit, and mixing versions can lead to compatibility issues or unexpected behavior. For optimal stability, all Jackson components should use the same version.

Consider either:

  1. Updating all Jackson dependencies to 2.20.0, or
  2. Maintaining the current version (2.13.4) for all Jackson components

This applies to both the force() configuration and the implementation dependencies below.

Suggested change
force("com.fasterxml.jackson.core:jackson-core:2.13.4")
force("com.fasterxml.jackson.core:jackson-databind:2.13.4")
force("com.fasterxml.jackson.core:jackson-annotations:2.13.4")
force("com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.4")
force("com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.20.0")
force("com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.4")
force("com.fasterxml.jackson.module:jackson-module-kotlin:2.13.4")
force("com.fasterxml.jackson.core:jackson-core:2.13.4")
force("com.fasterxml.jackson.core:jackson-databind:2.13.4")
force("com.fasterxml.jackson.core:jackson-annotations:2.13.4")
force("com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.4")
force("com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.4")
force("com.fasterxml.jackson.module:jackson-module-kotlin:2.13.4")

Spotted by Diamond

Fix in Graphite


Is this helpful? React 👍 or 👎 to let us know.

@renovate renovate Bot force-pushed the renovate/com.fasterxml.jackson.datatype-jackson-datatype-jdk8-2.x branch from 8dc2905 to 8c7b3d3 Compare October 31, 2025 03:27
@renovate renovate Bot changed the title chore(deps): update dependency com.fasterxml.jackson.datatype:jackson-datatype-jdk8 to v2.20.0 chore(deps): update dependency com.fasterxml.jackson.datatype:jackson-datatype-jdk8 to v2.20.1 Oct 31, 2025
@renovate renovate Bot force-pushed the renovate/com.fasterxml.jackson.datatype-jackson-datatype-jdk8-2.x branch from 8c7b3d3 to d5ffa59 Compare January 19, 2026 02:02
@renovate renovate Bot changed the title chore(deps): update dependency com.fasterxml.jackson.datatype:jackson-datatype-jdk8 to v2.20.1 chore(deps): update dependency com.fasterxml.jackson.datatype:jackson-datatype-jdk8 to v2.21.0 Jan 19, 2026
Comment thread agu-token-java-core/build.gradle.kts Outdated
force("com.fasterxml.jackson.core:jackson-databind:2.13.4")
force("com.fasterxml.jackson.core:jackson-annotations:2.13.4")
force("com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.4")
force("com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.21.0")

This comment was marked as outdated.

@renovate renovate Bot force-pushed the renovate/com.fasterxml.jackson.datatype-jackson-datatype-jdk8-2.x branch from d5ffa59 to 35dd143 Compare February 23, 2026 05:47
@renovate renovate Bot changed the title chore(deps): update dependency com.fasterxml.jackson.datatype:jackson-datatype-jdk8 to v2.21.0 chore(deps): update dependency com.fasterxml.jackson.datatype:jackson-datatype-jdk8 to v2.21.1 Feb 23, 2026
@renovate renovate Bot force-pushed the renovate/com.fasterxml.jackson.datatype-jackson-datatype-jdk8-2.x branch from 35dd143 to fd3380c Compare March 20, 2026 18:09
@renovate renovate Bot changed the title chore(deps): update dependency com.fasterxml.jackson.datatype:jackson-datatype-jdk8 to v2.21.1 chore(deps): update dependency com.fasterxml.jackson.datatype:jackson-datatype-jdk8 to v2.21.2 Mar 20, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants