sdk-java
sdk-java copied to clipboard
Java SDK for CloudEvents
Looks like accidental set of ID to type. https://github.com/cloudevents/sdk-java/blob/main/formats/avro-compact/src/main/java/io/cloudevents/avro/compact/AvroCompactFormat.java#L90 Should be: ``` .withId(from.getId()) ``` Test should be fixed as well. Using different values in type and ID of the test...
Bumps `maven-surefire-plugin.version` from 2.17 to 3.5.2. Updates `org.apache.maven.plugins:maven-surefire-plugin` from 2.17 to 3.5.2 Release notes Sourced from org.apache.maven.plugins:maven-surefire-plugin's releases. 3.5.2 🚀 New features and improvements [SUREFIRE-2278] - Don't say please. (#792)...
Protobuf version is now on 4.x which is not compatible with protobuf 3.x, the wire format has not changed, just the java sdk. So existing messages should parse fine with...
Bumps org.apache.kafka:kafka-clients from 3.7.1 to 3.9.1. [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...
I understand that **CloudEvents** is firmly [rooted on a Java 8 baseline](https://github.com/cloudevents/sdk-java/blob/main/pom.xml#L88-L89). It is also `true` that the entire Spring Boot `2.x` generation is based on **Java 8** (see [here](https://github.com/spring-projects/spring-boot/blob/2.7.x/buildSrc/src/main/java/org/springframework/boot/build/JavaConventions.java#L109))....
Bumps org.eclipse.jetty:jetty-server from 9.4.55.v20240627 to 9.4.56.v20240826. [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) You can trigger a rebase of this PR by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- Dependabot commands...
Bumps [nokogiri](https://github.com/sparklemotion/nokogiri) from 1.18.3 to 1.18.8. Release notes Sourced from nokogiri's releases. v1.18.8 / 2025-04-21 Security [CRuby] Vendored libxml2 is updated to v2.13.8 to address CVE-2025-32414 and CVE-2025-32415. See GHSA-5w6v-399v-w3cc...
### Step to reproduce Declare a Rabbit templating using converter ``` @Bean public RabbitMessagingTemplate rabbitMessagingTemplate(RabbitTemplate rabbitTemplate, CloudEventMessageConverter cloudEventMessageConverter) { var rmt = new RabbitMessagingTemplate(rabbitTemplate); rmt.setMessageConverter(cloudEventMessageConverter); return rmt; } ``` Use...
Spring CloudEventMessageConverter content-type header name uses the Spring Messaging `contentType` header name which differs fom the cloud events spec `content-type` which is used by Kafka serializer for instance. This leads...
We are currently using the library `cloudevents-json-jackson:4.0.1` in our project, which depends on **Jackson 2.x**. As we are migrating to **Jackson 3.x**, we need this library to be compatible with...