Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: cloudevents/sdk-java
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2.3.0
Choose a base ref
...
head repository: cloudevents/sdk-java
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2.4.0
Choose a head ref
  • 12 commits
  • 57 files changed
  • 9 contributors

Commits on Dec 21, 2021

  1. Bump to 2.4.0-SNAPSHOT (#439)

    Signed-off-by: GitHub <[email protected]>
    
    Co-authored-by: pierDipi <[email protected]>
    github-actions[bot] and pierDipi authored Dec 21, 2021
    Configuration menu
    Copy the full SHA
    4784f03 View commit details
    Browse the repository at this point in the history

Commits on Jan 31, 2022

  1. 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]>
    JemDay authored Jan 31, 2022
    Configuration menu
    Copy the full SHA
    a4bc7a8 View commit details
    Browse the repository at this point in the history

Commits on Mar 18, 2022

  1. Fix Spring structured example (#451)

    Signed-off-by: Micael Vianna <[email protected]>
    Signed-off-by: Micael Estrazulas Vianna <[email protected]>
    mEstrazulas authored Mar 18, 2022
    Configuration menu
    Copy the full SHA
    6681205 View commit details
    Browse the repository at this point in the history

Commits on Apr 1, 2022

  1. Add CONTRIBUTING.md and MAINTAINERS.md files (#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]>
    pierDipi authored Apr 1, 2022
    Configuration menu
    Copy the full SHA
    1c29726 View commit details
    Browse the repository at this point in the history
  2. 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>
    dependabot[bot] authored Apr 1, 2022
    Configuration menu
    Copy the full SHA
    2dd8ba9 View commit details
    Browse the repository at this point in the history

Commits on Apr 8, 2022

  1. [Snyk] Security upgrade io.vertx:vertx-core from 4.0.0 to 4.2.5 (#455)

    snyk-bot and pierDipi authored Apr 8, 2022
    Configuration menu
    Copy the full SHA
    8f9b741 View commit details
    Browse the repository at this point in the history

Commits on May 25, 2022

  1. 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>
    dependabot[bot] authored May 25, 2022
    Configuration menu
    Copy the full SHA
    1d87fb7 View commit details
    Browse the repository at this point in the history

Commits on Jul 13, 2022

  1. Optimize isCloudEventsHeader check (#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]>
    pierDipi authored Jul 13, 2022
    Configuration menu
    Copy the full SHA
    45ec85f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f35e6e6 View commit details
    Browse the repository at this point in the history

Commits on Jul 19, 2022

  1. 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]>
    matejvasek authored Jul 19, 2022
    Configuration menu
    Copy the full SHA
    9125136 View commit details
    Browse the repository at this point in the history

Commits on Sep 5, 2022

  1. 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]>
    segator authored Sep 5, 2022
    Configuration menu
    Copy the full SHA
    f8d27b0 View commit details
    Browse the repository at this point in the history

Commits on Sep 6, 2022

  1. Bump to 2.4.0 (#472)

    Signed-off-by: GitHub <[email protected]>
    Co-authored-by: pierDipi <[email protected]>
    github-actions[bot] and pierDipi authored Sep 6, 2022
    Configuration menu
    Copy the full SHA
    830760a View commit details
    Browse the repository at this point in the history
Loading