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-go
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.10.0
Choose a base ref
...
head repository: cloudevents/sdk-go
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.11.0
Choose a head ref
  • 9 commits
  • 74 files changed
  • 6 contributors

Commits on Jun 10, 2022

  1. fix: Reset request body on retry (#774)

    Closes: #773
    Signed-off-by: Michael Gasch <mgasch@vmware.com>
    Michael Gasch authored Jun 10, 2022
    Configuration menu
    Copy the full SHA
    249465f View commit details
    Browse the repository at this point in the history

Commits on Jun 30, 2022

  1. fix golangci-lint-action (#779)

    Error message:
    ```
    level=error msg="Running error: buildir: failed to load package goarch: could not load export data: cannot import \"internal/goarch\" (unknown iexport format version 2), export data is newer version - update tool"
    ```
    
    Upgrade `golangci-lint-action` to v3 golangci/golangci-lint-action#434
    
    Signed-off-by: Iñigo Horcajo <inigohu@gmail.com>
    inigohu authored Jun 30, 2022
    Configuration menu
    Copy the full SHA
    2d3bb5b View commit details
    Browse the repository at this point in the history

Commits on Jul 18, 2022

  1. Unblock connection receive when context is done (#781)

    When context is canceled we don't read anymore from `t.incoming` channel
    because the select clause exists on `ctx.Done`. This change adds the
    same behavior to the point where `t.incoming` channel is written.
    Without this the call to `conn.Receive` could block forever given a
    race condition between a context cancellation and a new incoming
    message.
    
    Furthermore, is always a good practice to listen to `context.Done` on
    blocking points where a context variable is available.
    
    Signed-off-by: Iñigo Garcia Olaizola <11333576+igolaizola@users.noreply.github.com>
    igolaizola authored Jul 18, 2022
    Configuration menu
    Copy the full SHA
    0911e5f View commit details
    Browse the repository at this point in the history
  2. bump golang to 1.17 (#778)

    Bumping golang version to 1.17
    Signed-off-by: Iñigo Horcajo <inigohu@gmail.com>
    inigohu authored Jul 18, 2022
    Configuration menu
    Copy the full SHA
    f95748f View commit details
    Browse the repository at this point in the history
  3. protocol/pubsub: bump cloud.google.com/go/pubsub to latest (#777)

    Stay up to date and bring some fixes.
    googleapis/google-cloud-go@pubsub/v1.17.0...pubsub/v1.23.0
    
    Signed-off-by: Iñigo Horcajo <inigohu@gmail.com>
    inigohu authored Jul 18, 2022
    Configuration menu
    Copy the full SHA
    ae4b7be View commit details
    Browse the repository at this point in the history

Commits on Jul 19, 2022

  1. add proto test to confirm it is correct (#784)

    Signed-off-by: Scott Nichols <n3wscott@chainguard.dev>
    n3wscott authored Jul 19, 2022
    Configuration menu
    Copy the full SHA
    14755d1 View commit details
    Browse the repository at this point in the history

Commits on Jul 26, 2022

  1. fix: missing error message when return HTTPResult (#785)

    * fix: missing error message when return HTTPResult
    
    Signed-off-by: wenfeng <sxian.wang@gmail.com>
    
    * fmt: goimport
    
    Signed-off-by: wenfeng <sxian.wang@gmail.com>
    
    * update according to reviewer's advice
    
    Signed-off-by: wenfeng <sxian.wang@gmail.com>
    wenfengwang authored Jul 26, 2022
    Configuration menu
    Copy the full SHA
    b7b2232 View commit details
    Browse the repository at this point in the history

Commits on Jul 27, 2022

  1. add unordered, unknown datacontenttype test and errors to v2/event (#787

    )
    
    Signed-off-by: Scott Nichols <n3wscott@chainguard.dev>
    n3wscott authored Jul 27, 2022
    Configuration menu
    Copy the full SHA
    93d324d View commit details
    Browse the repository at this point in the history

Commits on Aug 12, 2022

  1. Upgrade testify to 1.8.0 (#790)

    Signed-off-by: Scott Nichols <n3wscott@tableflip.dev>
    
    Signed-off-by: Scott Nichols <n3wscott@tableflip.dev>
    n3wscott authored Aug 12, 2022
    Configuration menu
    Copy the full SHA
    76cfa1c View commit details
    Browse the repository at this point in the history
Loading