sdk-java
sdk-java copied to clipboard
Java SDK for CloudEvents
Bumps [com.github.hanleyt:jersey-junit](https://github.com/hanleyt/jersey-junit) from 2.1.0 to 2.2.0. Release notes Sourced from com.github.hanleyt:jersey-junit's releases. 2.2.0 Set container port to zero to allocate available tcp port #13 Commits e0618d3 Release 2.2.0 6bd9419 Set...
Bumps [org.apache.maven.plugins:maven-resources-plugin](https://github.com/apache/maven-resources-plugin) from 2.6 to 3.3.1. Release notes Sourced from org.apache.maven.plugins:maven-resources-plugin's releases. 3.3.1 [MRESOURCES-288] - Make tests-jar reproducible (#56) @cstamas [MRESOURCES-297] - Update to parent POM 39, reformat (#55) @cstamas...
Bumps [org.jboss.resteasy:resteasy-client](https://github.com/resteasy/resteasy) from 6.0.3.Final to 6.2.7.Final. Release notes Sourced from org.jboss.resteasy:resteasy-client's releases. 6.2.7.Final What's Changed Bump org.jboss.arquillian:arquillian-bom from 1.7.1.Final to 1.7.2.Final by @dependabot in resteasy/resteasy#3911 Bump org.wildfly.plugins:wildfly-maven-plugin from 4.2.0.Final to...
Adding a validation wrapper Library separated from manifests. By adding this in our library we are avoiding each validation to be added by each consumer. cloudevents/spec#2 aspects: 1. validation -...
As the topic. It seems that there is no example showing how to serialize List . Springboot's default serialization mechanism is jackson, which serializes List ,The resulted json string cannot...
please replace @Override public Set getExtensionNames() { return this.extensions.keySet(); } with something, like @Override public Set getExtensionNames() { return Collections.unmodifiableSet (this.extensions.keySet()); } to avoid breaking encapsulation. More details can be...
Hi Team, What is the way to add a custom validation for cloudevents? **My requirement** - I want to add some mandatory validation w.r.t our organization and keep this in...
It would be great to add benchmarks to the CloudEvents SQL, so that we can find any places where performance improvements can be made as well as detect performance regressions....
I have a cluster that deploys the same image, with a total of six nodes. Occasionally, some nodes do not load the `JsonFormat` class, The relevant codes are as follows...
The `CloudEventsProvider` defaults to binary encoding. Only when there is an `StructuredEncoding` annotation present, this mode will be set. See the logic: https://github.com/cloudevents/sdk-java/blob/3614a4f5f4982e6ed38332c2cc73b1a558326274/http/restful-ws/src/main/java/io/cloudevents/http/restful/ws/CloudEventsProvider.java#L95-L112 This makes the `BinaryEncoding` useless, confirmed by...