-
Notifications
You must be signed in to change notification settings - Fork 58
impl(wkt): helper type for i32
deserialization
#2334
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
impl(wkt): helper type for i32
deserialization
#2334
Conversation
ProtoJSON requires accepting both strings and integers for integers. This PR only adds support for signed 32-bit integers. Future PRs will deal with unsigned integers and with 64-bit integers. The changes to the generator and the generated code will also happen in separate PRs.
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #2334 +/- ##
==========================================
- Coverage 93.92% 93.79% -0.13%
==========================================
Files 64 66 +2
Lines 2781 2838 +57
==========================================
+ Hits 2612 2662 +50
- Misses 169 176 +7 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
PTAL
ProtoJSON requires accepting both strings and integers for integers. This PR
only adds support for signed 32-bit integers. Future PRs will deal with
unsigned integers and with 64-bit integers.
The changes to the generator and the generated code will also happen in
separate PRs.
Fixes #2323