Skip to content

Bump com.fasterxml.jackson.core:jackson-databind from 2.13.4.1 to 2.22.0#11

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/maven/com.fasterxml.jackson.core-jackson-databind-2.22.0
Open

Bump com.fasterxml.jackson.core:jackson-databind from 2.13.4.1 to 2.22.0#11
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/maven/com.fasterxml.jackson.core-jackson-databind-2.22.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 30, 2026

Copy link
Copy Markdown
Contributor

Bumps com.fasterxml.jackson.core:jackson-databind from 2.13.4.1 to 2.22.0.

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps [com.fasterxml.jackson.core:jackson-databind](https://github.com/FasterXML/jackson) from 2.13.4.1 to 2.22.0.
- [Commits](https://github.com/FasterXML/jackson/commits)

---
updated-dependencies:
- dependency-name: com.fasterxml.jackson.core:jackson-databind
  dependency-version: 2.22.0
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file java Pull requests that update java code labels Jun 30, 2026
@PoloniexCodeBuild

Copy link
Copy Markdown

PR Reviewer Guide 🔍

在 pom.xml 中新增 jackson-databind 依赖

本 PR 在 pom.xml 中新增了 jackson-databind 依赖。但所指定的版本 2.22.0 并不存在,且与已声明的 jackson-annotations 2.13.5 版本不一致,需修正版本以保证构建可用与模块兼容。

Changes Walkthrough

Filename Changes
pom.xml 新增 jackson-databind 依赖,版本指定为不存在的 2.22.0

Findings Summary

Category Count
🐛 Possible bug 1
⏱️ Estimated effort to review1 🔵⚪⚪⚪⚪
🧪 Relevant testsNo relevant tests
🔒 Security concerns🔒 No security concerns

Key issues to review:

jackson-databind 版本不存在pom.xml:51

指定的 2.22.0 版本不存在且与 jackson-annotations 2.13.5 错配,会导致构建失败和运行时不兼容。


🤖 Scanner

@PoloniexCodeBuild

Copy link
Copy Markdown

PR Code Suggestions ✨

Possible bug

File Description Impact
pom.xml:51-55 本次变更新增的 jackson-databind 依赖指定版本为 2.22.0。Jackson 2.x 系列目前并不存在 2.22.0 这一发布版本(截至当前最新为 2.1x 系列)。该坐标无法从中央仓库解析,会直接导致 Maven 构建失败。此外该版本与下方已声明的 jackson-annotations 2.13.5 存在严重的版本错配,Jackson 各模块(databind/annotations/core)应保持同一版本线,混用极易引发运行时 NoSuchMethodError/不兼容问题。建议统一为一个真实存在且彼此匹配的版本。 Medium

🤖 Scanner

Comment thread pom.xml
@@ -50,7 +50,7 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

🟠 jackson-databind 2.22.0 版本不存在,会导致依赖解析失败 · 📎 pom.xml:51-55

本次变更新增的 jackson-databind 依赖指定版本为 2.22.0。Jackson 2.x 系列目前并不存在 2.22.0 这一发布版本(截至当前最新为 2.1x 系列)。该坐标无法从中央仓库解析,会直接导致 Maven 构建失败。此外该版本与下方已声明的 jackson-annotations 2.13.5 存在严重的版本错配,Jackson 各模块(databind/annotations/core)应保持同一版本线,混用极易引发运行时 NoSuchMethodError/不兼容问题。建议统一为一个真实存在且彼此匹配的版本。

Suggestion: 将 jackson-databind 改为真实存在且与 jackson-annotations 一致的版本,并保持 Jackson 各模块版本统一(建议同时升级 annotations)。

Suggested change
<groupId>com.fasterxml.jackson.core</groupId>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.13.5</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>

🤖 Scanner

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file java Pull requests that update java code Review effort 1/5

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant