Skip to content

Upgrade jackson-core to latest. Is this repo still maintained ? #60

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
guillaume-verdon-sword opened this issue Feb 18, 2025 · 1 comment

Comments

@guillaume-verdon-sword
Copy link

Hello,

Our vulnerability scanner keeps raising alerts because we're using open-api-generator which relies on jackson-databind-nullable.

It seems the latest version here was released in Febuary 2023 and is dependent on com.fasterxml.jackson.core:[email protected] which introduce a CWE-400 (see FasterXML/jackson-core#861)

I can see a PR that could fix this issue is opened here #52 but no follow-up was done since August 2024. Any chance to get it merged ? Is this repo still maintained ?

Regards :)

Guillaume

@plumstone
Copy link

plumstone commented Apr 28, 2025

One idea for the long term could be to mark the dependency jackson-databind as provided (inside the pom of this repo).

<dependency>
    <groupId>com.fasterxml.jackson.core</groupId>
    <artifactId>jackson-databind</artifactId>
    <scope>provided</scope>
</dependency>

This would require all consumers of this dependency to also declare jackson-databind in their dependency section (which is probably already done by most consumers) but on the other hand provide way more flexibility which jackson version to use.
Also this dependency then does not need continuous maintenance, unless jackson-databind introduces a breaking change.

Could anyone share some opinions regarding my idea? :)

plumstone added a commit to plumstone/jackson-databind-nullable that referenced this issue Apr 28, 2025
plumstone added a commit to plumstone/jackson-databind-nullable that referenced this issue May 1, 2025
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

No branches or pull requests

2 participants