Replies: 2 comments 16 replies
-
You can refer to the release notes to find out what changed |
Beta Was this translation helpful? Give feedback.
5 replies
-
There are no additional dependencies for So, yeah, what would be needed is a reproduction. On release notes; changes would be in
but it sounds like you may already have gone over some of these. |
Beta Was this translation helpful? Give feedback.
11 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hey folks,
I been working on a spring boot project which use Datastore as backend. On this project, I'm trying to update jackson dependencies from the current version it has (2.13.4) to a newer one (2.16.2) but I been having an issue on a Datastore Entity which use JsonNode as attribute.
I have seen that, after upgrading to jackson 2.14.X or higher, I'm getting an error on bean creation which only says "Type must not be null". After a lot of debugging, and creating a SpringBoot+Datastore project from scratch, I found that if I remove a JsonNode attribute from a Datastore Entity the service starts. I must mention that this JsonNode attribute has been included from long time ago and it was working.
My guess is, after Jackson upgrade to 2.14.X, there's some dependency which needs to be provided to keep it working but I haven't been able to identified which is. I review the Release Notes from 2.14.0 but didn't found anything about it.
Can you point me if there's a breaking change between 2.13.X and higher version or if a similar issue has been identified which can guide me?
Beta Was this translation helpful? Give feedback.
All reactions