ok2c / httpcomponents-jackson

JSON message asynchronous producers and consumers for Apache HttpComponents 5.0 based on Jackson JSON library
https://ok2c.github.io/httpcomponents-jackson
Apache License 2.0
7 stars 6 forks source link

Support long when parsing numbers #14

Closed schulzp closed 2 months ago

schulzp commented 2 months ago

When the JsonTokenEventHandlerAdaptor encounters a JSON INT token, it will parse it as int which breaks in case of large (negative) numbers, for example, 2153599188 (outside [-2147483648; 2147483647]). Since DeserializationFeatures don't have an effect in the current implementation, it is not possible work around this.

schulzp commented 2 months ago

Thank you! Would you have time to create a public release? Currently we run with a local build, but a public release would be highly appreciated. 🙏🏻

ok2c commented 2 months ago

Thank you! Would you have time to create a public release? Currently we run with a local build, but a public release would be highly appreciated. 🙏🏻

@schulzp I will do my best to get around to cutting a new release sometime this or the next week.

ok2c commented 2 months ago

@schulzp 0.4.0 has been released.

schulzp commented 2 months ago

Thank you so much! Just in time for a new production release. 🚀