-
Notifications
You must be signed in to change notification settings - Fork 207
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
Add additional CloudEvent fields (pubsubname, topic, time, etc) #866
Add additional CloudEvent fields (pubsubname, topic, time, etc) #866
Conversation
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.
Please, sign-off to your commits so DCO can pass.
I will also look into how I can add a DCO sign-off to my commit(s). |
… traceparent, & tracestate) Added the com.fasterxml.jackson:jackson-datatype-jsr310 dependency to handle serdes of OffsetDateTime for the CloudEvent time field via ObjectMapper settings .configure(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS, false) & .findAndRegisterModules() Updated com.fasterxml.jackson dependencies to the latest 2.15.1 Added OffsetDateTime as timeValue to test the DefaultObjectSerializer Added more tests for new & old CloudEvent fields in CloudEventTest & DefaultObjectSerializerTest Signed-off-by: Luke Sieben <siebenluke@gmail.com>
Removed the 2 new constructors Signed-off-by: Luke Sieben <siebenluke@gmail.com>
…ames as JSON/OBJECT_MAPPER are case-sensitive Signed-off-by: Luke Sieben <siebenluke@gmail.com>
…ency in favor of custom field level serdes for time Signed-off-by: Luke Sieben <siebenluke@gmail.com>
… end of the offending lines to a new line Signed-off-by: Luke Sieben <siebenluke@gmail.com>
@siebenluke - mind resolving the conflicts? Then I think we can merge this |
Signed-off-by: Luke Sieben <siebenluke@gmail.com>
Hi @cicoyle / @artursouza, I have resolved the conflicts, so if someone (Artur) could take another look that would be great. Thanks. |
Signed-off-by: Luke Sieben <siebenluke@gmail.com>
Hi @cicoyle / @artursouza, Happy New Years, I believe I've added all the necessary CloudEvent test cases in 78e9575 to appease Codecov. Let me know if there are any other additional changes I need to make before this can be merged. |
Signed-off-by: Luke Sieben <siebenluke@gmail.com>
Signed-off-by: Luke Sieben <siebenluke@gmail.com>
Signed-off-by: Luke Sieben <siebenluke@gmail.com>
Signed-off-by: Luke Sieben <siebenluke@gmail.com>
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## master #866 +/- ##
============================================
+ Coverage 76.29% 76.85% +0.56%
- Complexity 1463 1497 +34
============================================
Files 138 138
Lines 4497 4524 +27
Branches 524 530 +6
============================================
+ Hits 3431 3477 +46
+ Misses 784 773 -11
+ Partials 282 274 -8 ☔ View full report in Codecov by Sentry. |
Description
Issue reference
Add additional CloudEvent fields (pubsubname, topic, time, traceid, traceparent, & tracestate) per discussion in Discord chat
Checklist