Skip to content

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

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

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

Conversation

@renovate

@renovate renovate Bot commented Jun 22, 2025

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
com.fasterxml.jackson.module:jackson-module-kotlin 2.18.22.22.1 age adoption passing confidence
com.fasterxml.jackson.module:jackson-module-kotlin 2.13.42.22.1 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

vercel Bot commented Jun 22, 2025

Copy link
Copy Markdown

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

Project Deployment Actions Updated (UTC)
boomchainlab-framework Error Error Jul 8, 2026 2:35am

Comment thread agu-token-java-core/build.gradle.kts Outdated
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
Copy Markdown

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

coderabbitai Bot commented Jul 18, 2025

Copy link
Copy Markdown

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 thread agu-token-java-core/build.gradle.kts Outdated
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
Copy Markdown

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
@renovate
renovate Bot force-pushed the renovate/com.fasterxml.jackson.module-jackson-module-kotlin-2.x branch from a87e2ce to 2175bf2 Compare March 20, 2026 18:09
@renovate renovate Bot changed the title chore(deps): update dependency com.fasterxml.jackson.module:jackson-module-kotlin to v2.21.1 chore(deps): update dependency com.fasterxml.jackson.module:jackson-module-kotlin to v2.21.2 Mar 20, 2026
@renovate
renovate Bot force-pushed the renovate/com.fasterxml.jackson.module-jackson-module-kotlin-2.x branch from 2175bf2 to d4f6fa2 Compare April 28, 2026 22:16
@renovate renovate Bot changed the title chore(deps): update dependency com.fasterxml.jackson.module:jackson-module-kotlin to v2.21.2 chore(deps): update dependency com.fasterxml.jackson.module:jackson-module-kotlin to v2.21.3 Apr 28, 2026
@renovate
renovate Bot force-pushed the renovate/com.fasterxml.jackson.module-jackson-module-kotlin-2.x branch from d4f6fa2 to 8c20e1f Compare May 29, 2026 06:01
@renovate renovate Bot changed the title chore(deps): update dependency com.fasterxml.jackson.module:jackson-module-kotlin to v2.21.3 chore(deps): update dependency com.fasterxml.jackson.module:jackson-module-kotlin to v2.21.4 May 29, 2026
@renovate
renovate Bot force-pushed the renovate/com.fasterxml.jackson.module-jackson-module-kotlin-2.x branch from 8c20e1f to b8b998b Compare June 1, 2026 19:07
@renovate renovate Bot changed the title chore(deps): update dependency com.fasterxml.jackson.module:jackson-module-kotlin to v2.21.4 chore(deps): update dependency com.fasterxml.jackson.module:jackson-module-kotlin to v2.22.0 Jun 1, 2026
@renovate
renovate Bot force-pushed the renovate/com.fasterxml.jackson.module-jackson-module-kotlin-2.x branch from b8b998b to a532e03 Compare July 8, 2026 02:35
@renovate renovate Bot changed the title chore(deps): update dependency com.fasterxml.jackson.module:jackson-module-kotlin to v2.22.0 chore(deps): update dependency com.fasterxml.jackson.module:jackson-module-kotlin to v2.22.1 Jul 8, 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