-
Notifications
You must be signed in to change notification settings - Fork 167
Comparing changes
Open a pull request
base repository: cloudevents/sdk-java
base: 2.3.0
head repository: cloudevents/sdk-java
compare: 2.4.0
- 12 commits
- 57 files changed
- 9 contributors
Commits on Dec 21, 2021
-
Signed-off-by: GitHub <[email protected]> Co-authored-by: pierDipi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 4784f03 - Browse repository at this point
Copy the full SHA 4784f03View commit details
Commits on Jan 31, 2022
-
Protobuf: Enhance textual content-types detection (#444)
- Move content-type introspection in a separate support class. - Add unit tests to ensure introspection is correct. Signed-off-by: Day, Jeremy(jday) <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for a4bc7a8 - Browse repository at this point
Copy the full SHA a4bc7a8View commit details
Commits on Mar 18, 2022
-
Fix Spring structured example (#451)
Signed-off-by: Micael Vianna <[email protected]> Signed-off-by: Micael Estrazulas Vianna <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 6681205 - Browse repository at this point
Copy the full SHA 6681205View commit details
Commits on Apr 1, 2022
-
Add
CONTRIBUTING.mdandMAINTAINERS.mdfiles (#454)These 2 new files are based on the existing `pr_guidelines.md` and `maintainers_guide.md` Signed-off-by: Pierangelo Di Pilato <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 1c29726 - Browse repository at this point
Copy the full SHA 1c29726View commit details -
Bump nokogiri from 1.12.5 to 1.13.3 in /docs (#447)
Bumps [nokogiri](https://github.com/sparklemotion/nokogiri) from 1.12.5 to 1.13.3. - [Release notes](https://github.com/sparklemotion/nokogiri/releases) - [Changelog](https://github.com/sparklemotion/nokogiri/blob/main/CHANGELOG.md) - [Commits](sparklemotion/nokogiri@v1.12.5...v1.13.3) --- updated-dependencies: - dependency-name: nokogiri dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 2dd8ba9 - Browse repository at this point
Copy the full SHA 2dd8ba9View commit details
Commits on Apr 8, 2022
-
[Snyk] Security upgrade io.vertx:vertx-core from 4.0.0 to 4.2.5 (#455)
* fix: http/vertx/pom.xml to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JAVA-IONETTY-1020439 - https://snyk.io/vuln/SNYK-JAVA-IONETTY-1070799 - https://snyk.io/vuln/SNYK-JAVA-IONETTY-1082234 - https://snyk.io/vuln/SNYK-JAVA-IONETTY-1082235 - https://snyk.io/vuln/SNYK-JAVA-IONETTY-1082236 - https://snyk.io/vuln/SNYK-JAVA-IONETTY-1083991 - https://snyk.io/vuln/SNYK-JAVA-IONETTY-1089809 - https://snyk.io/vuln/SNYK-JAVA-IONETTY-1317097 - https://snyk.io/vuln/SNYK-JAVA-IONETTY-1584063 - https://snyk.io/vuln/SNYK-JAVA-IONETTY-1584064 - https://snyk.io/vuln/SNYK-JAVA-IONETTY-2314893 * Bump Vert.x to 4.2.5 Co-authored-by: Pierangelo Di Pilato <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 8f9b741 - Browse repository at this point
Copy the full SHA 8f9b741View commit details
Commits on May 25, 2022
-
Bump nokogiri from 1.13.3 to 1.13.6 in /docs (#457)
Bumps [nokogiri](https://github.com/sparklemotion/nokogiri) from 1.13.3 to 1.13.6. - [Release notes](https://github.com/sparklemotion/nokogiri/releases) - [Changelog](https://github.com/sparklemotion/nokogiri/blob/main/CHANGELOG.md) - [Commits](sparklemotion/nokogiri@v1.13.3...v1.13.6) --- updated-dependencies: - dependency-name: nokogiri dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 1d87fb7 - Browse repository at this point
Copy the full SHA 1d87fb7View commit details
Commits on Jul 13, 2022
-
Optimize
isCloudEventsHeadercheck (#445)Instead of using: ```java key.substring(0, CE_PREFIX.length()).toLowerCase().startsWith(CE_PREFIX); ``` we can just use: ```java key.regionMatches(true /* ignoreCase */, 0, CE_PREFIX, 0, CE_PREFIX.length()); ``` Signed-off-by: Pierangelo Di Pilato <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 45ec85f - Browse repository at this point
Copy the full SHA 45ec85fView commit details -
Configuration menu - View commit details
-
Copy full SHA for f35e6e6 - Browse repository at this point
Copy the full SHA f35e6e6View commit details
Commits on Jul 19, 2022
-
chore: update Quarkus example (#466)
* Server accepts both: binary and structured encoded events. * Emitter contains comment describing how to switch between binary and structured encoding for emitted events. Signed-off-by: Matej Vasek <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 9125136 - Browse repository at this point
Copy the full SHA 9125136View commit details
Commits on Sep 5, 2022
-
Support dynamic JSON data content type (#471)
Now checks if `datacontenttype` matches the regex: `^(application|text)\/([a-zA-Z]+\+)?json$")` This regex support `application/foobar+json` or standard ``` application/json text/json ``` Signed-off-by: Isaac Aymerich <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for f8d27b0 - Browse repository at this point
Copy the full SHA f8d27b0View commit details
Commits on Sep 6, 2022
-
Signed-off-by: GitHub <[email protected]> Co-authored-by: pierDipi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 830760a - Browse repository at this point
Copy the full SHA 830760aView commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff 2.3.0...2.4.0