Skip to content

chore(deps): update dependency com.fasterxml.jackson.module:jackson-module-kotlin to v2.21.1#26

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

chore(deps): update dependency com.fasterxml.jackson.module:jackson-module-kotlin to v2.21.1#26
renovate[bot] wants to merge 1 commit intomainfrom
renovate/com.fasterxml.jackson.module-jackson-module-kotlin-2.x

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jun 22, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
com.fasterxml.jackson.module:jackson-module-kotlin 2.18.22.21.1 age adoption passing confidence
com.fasterxml.jackson.module:jackson-module-kotlin 2.13.42.21.1 age adoption passing confidence

Configuration

📅 Schedule: 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

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 Feb 23, 2026 5:48am

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")
force("com.fasterxml.jackson.module:jackson-module-kotlin:2.19.1")
Copy link

Choose a reason for hiding this comment

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

Version inconsistency detected in Jackson dependencies

There's a potential compatibility issue in this PR. The jackson-module-kotlin dependency is being updated to version 2.19.1, while other Jackson core libraries are still forced to version 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.19.1")  // Updated version

Jackson libraries are designed to work together at the same version. Mixing versions can lead to runtime errors or unexpected behavior.

Consider either:

  1. Updating all Jackson dependencies to 2.19.1, or
  2. Keeping jackson-module-kotlin at 2.13.4 to maintain version consistency

This applies to both the forced configurations and the implementation dependencies.

Suggested change
force("com.fasterxml.jackson.module:jackson-module-kotlin:2.19.1")
force("com.fasterxml.jackson.module:jackson-module-kotlin: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.module-jackson-module-kotlin-2.x branch from 262c623 to a56a9d3 Compare July 18, 2025 19:02
@renovate renovate bot changed the title chore(deps): update dependency com.fasterxml.jackson.module:jackson-module-kotlin to v2.19.1 chore(deps): update dependency com.fasterxml.jackson.module:jackson-module-kotlin to v2.19.2 Jul 18, 2025
@coderabbitai
Copy link

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.

@renovate renovate bot force-pushed the renovate/com.fasterxml.jackson.module-jackson-module-kotlin-2.x branch from a56a9d3 to 7b6ede3 Compare August 31, 2025 10:04
@renovate renovate bot changed the title chore(deps): update dependency com.fasterxml.jackson.module:jackson-module-kotlin to v2.19.2 chore(deps): update dependency com.fasterxml.jackson.module:jackson-module-kotlin to v2.20.0 Aug 31, 2025
Comment on lines +12 to +15
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")
force("com.fasterxml.jackson.module:jackson-module-kotlin:2.20.0")
Copy link

Choose a reason for hiding this comment

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

Version Mismatch Warning: This PR creates a significant version gap between Jackson components. The jackson-module-kotlin is being updated to 2.20.0 while other Jackson dependencies remain at 2.13.4 in the force configuration.

Jackson components are designed to work together at the same version level. Mixing versions (especially with a 7-minor-version gap) can lead to:

  • Runtime compatibility issues
  • Unexpected serialization/deserialization behavior
  • ClassCastExceptions or NoSuchMethodErrors

Consider either:

  1. Updating all Jackson dependencies to 2.20.0 consistently
  2. Keeping jackson-module-kotlin at a version compatible with the other components

This inconsistency appears in both the forced dependencies section and the implementation dependencies section.

Suggested change
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")
force("com.fasterxml.jackson.module:jackson-module-kotlin:2.20.0")
force("com.fasterxml.jackson.core:jackson-annotations:2.20.0")
force("com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.20.0")
force("com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.20.0")
force("com.fasterxml.jackson.module:jackson-module-kotlin:2.20.0")

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.module-jackson-module-kotlin-2.x branch from 7b6ede3 to 2942a4c Compare October 31, 2025 03:27
@renovate renovate bot changed the title chore(deps): update dependency com.fasterxml.jackson.module:jackson-module-kotlin to v2.20.0 chore(deps): update dependency com.fasterxml.jackson.module:jackson-module-kotlin to v2.20.1 Oct 31, 2025
@renovate renovate bot force-pushed the renovate/com.fasterxml.jackson.module-jackson-module-kotlin-2.x branch from 2942a4c to 8c87907 Compare January 19, 2026 02:02
@renovate renovate bot changed the title chore(deps): update dependency com.fasterxml.jackson.module:jackson-module-kotlin to v2.20.1 chore(deps): update dependency com.fasterxml.jackson.module:jackson-module-kotlin to v2.21.0 Jan 19, 2026
@renovate renovate bot force-pushed the renovate/com.fasterxml.jackson.module-jackson-module-kotlin-2.x branch from 8c87907 to a87e2ce Compare February 23, 2026 05:47
@renovate renovate bot changed the title chore(deps): update dependency com.fasterxml.jackson.module:jackson-module-kotlin to v2.21.0 chore(deps): update dependency com.fasterxml.jackson.module:jackson-module-kotlin to v2.21.1 Feb 23, 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