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.2.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.3.0
Choose a head ref
  • 15 commits
  • 45 files changed
  • 8 contributors

Commits on Jul 28, 2020

  1. update readme and releasing files post-release. (#560)

    * update readme and releasing files post-release.
    
    Signed-off-by: Scott Nichols <snichols@vmware.com>
    
    * linting
    
    Signed-off-by: Scott Nichols <snichols@vmware.com>
    
    * update docs/index.md for release v2.2.0
    
    Signed-off-by: Scott Nichols <snichols@vmware.com>
    Scott Nichols authored Jul 28, 2020
    Configuration menu
    Copy the full SHA
    70e4358 View commit details
    Browse the repository at this point in the history

Commits on Jul 29, 2020

  1. Avoid Copying Event Data When Possible in binding.ToEvent (#561)

    * Do not copy data from a bytes.Buffer in binding.ToEvent
    
    When converting a message to an event, do not copy the event data if it is already buffered in a
    bytes.Buffer.
    
    Signed-off-by: Ian Milligan <ianmllgn@gmail.com>
    
    * Use a bytes.Buffer instead of bytes.Reader in ReadBinary when safe
    
    When the underlying buffer can be safely shared, passing a bytes.Buffer allows the downstream reader
    to directly reference the message data rather than making a copy.
    
    Signed-off-by: Ian Milligan <ianmllgn@gmail.com>
    ian-mi authored Jul 29, 2020
    Configuration menu
    Copy the full SHA
    2d83dc1 View commit details
    Browse the repository at this point in the history

Commits on Aug 3, 2020

  1. allow to construct mock sender for unit testing (#564)

    * allow to construct mock sender for unit testing
    
    Signed-off-by: Aleksander Slominski <aslom@us.ibm.com>
    
    * remove extra line
    
    Signed-off-by: Aleksander Slominski <aslom@us.ibm.com>
    aslom authored Aug 3, 2020
    Configuration menu
    Copy the full SHA
    269a447 View commit details
    Browse the repository at this point in the history

Commits on Aug 6, 2020

  1. Do not copy bytes.Buffer when writing a pubsub message (#565)

    Signed-off-by: Ian Milligan <ianmllgn@gmail.com>
    ian-mi authored Aug 6, 2020
    Configuration menu
    Copy the full SHA
    9ae0708 View commit details
    Browse the repository at this point in the history

Commits on Aug 11, 2020

  1. add coc ref (#566)

    Signed-off-by: Doug Davis <dug@us.ibm.com>
    Doug Davis authored Aug 11, 2020
    Configuration menu
    Copy the full SHA
    3db01d4 View commit details
    Browse the repository at this point in the history

Commits on Aug 27, 2020

  1. fix response log formatting (#571)

    Signed-off-by: Pablo Mercado <odacremolbap@gmail.com>
    Pablo Mercado authored Aug 27, 2020
    Configuration menu
    Copy the full SHA
    d4efd8a View commit details
    Browse the repository at this point in the history

Commits on Sep 3, 2020

  1. Client should not block on GOMAXPROCS receivers. (#574)

    * adding a test to validate the blocking maxproc is an issue in the client
    * allowing client invoker to be non-blocking
    
    Signed-off-by: Scott Nichols <snichols@vmware.com>
    Scott Nichols authored Sep 3, 2020
    Configuration menu
    Copy the full SHA
    0ffc5cc View commit details
    Browse the repository at this point in the history

Commits on Sep 7, 2020

  1. Fix gochan sender (#577)

    Signed-off-by: Iñigo Horcajo <inigohu@gmail.com>
    inigohu authored Sep 7, 2020
    Configuration menu
    Copy the full SHA
    9661242 View commit details
    Browse the repository at this point in the history

Commits on Sep 8, 2020

  1. Add retry for 502's (#579)

    Signed-off-by: Doug Davis <dug@us.ibm.com>
    Doug Davis authored Sep 8, 2020
    Configuration menu
    Copy the full SHA
    f5bd0f9 View commit details
    Browse the repository at this point in the history
  2. Add NewObserved HTTP Protocol constructor (#573)

    NewObserved adds trace propagating middleware to the created HTTP protocol and is used to add trace
    propagation to the default HTTP client.
    
    Signed-off-by: Ian Milligan <ianmllgn@gmail.com>
    ian-mi authored Sep 8, 2020
    Configuration menu
    Copy the full SHA
    89a2aa5 View commit details
    Browse the repository at this point in the history

Commits on Sep 10, 2020

  1. Fix pubsub protocol context cancellation (#582)

    Signed-off-by: Iñigo Horcajo <inigohu@gmail.com>
    inigohu authored Sep 10, 2020
    Configuration menu
    Copy the full SHA
    0330a9b View commit details
    Browse the repository at this point in the history

Commits on Sep 15, 2020

  1. Recover from panic in handler fn (#585)

    * Recover from panic in handler fn
    * More time tolerance in TestBlockingSenderReceiver
    
    Signed-off-by: Matej Vasek <mvasek@redhat.com>
    matejvasek authored Sep 15, 2020
    Configuration menu
    Copy the full SHA
    506c330 View commit details
    Browse the repository at this point in the history

Commits on Sep 16, 2020

  1. Fix handler input types variance (#587)

    Input types should be contravariant or invariant.
    
    Signed-off-by: Matej Vasek <mvasek@redhat.com>
    matejvasek authored Sep 16, 2020
    Configuration menu
    Copy the full SHA
    ac4d7cb View commit details
    Browse the repository at this point in the history

Commits on Sep 25, 2020

  1. StartReceiver returns if it can't start listening (#589)

    Signed-off-by: Matej Vasek <mvasek@redhat.com>
    matejvasek authored Sep 25, 2020
    Configuration menu
    Copy the full SHA
    f0303ff View commit details
    Browse the repository at this point in the history

Commits on Sep 28, 2020

  1. Adding github actions for CI (#588)

    * Adding github actions for CI
    
    Signed-off-by: Scott Nichols <snichols@vmware.com>
    
    * remove golang 1.14+ t.Cleanup call.
    
    Signed-off-by: Scott Nichols <snichols@vmware.com>
    
    * break apart the style tests
    
    Signed-off-by: Scott Nichols <snichols@vmware.com>
    
    * Adding integration tests with github services
    
    Signed-off-by: Scott Nichols <snichols@vmware.com>
    
    * adding linting exceptions
    
    Signed-off-by: Scott Nichols <snichols@vmware.com>
    
    * go mod tidy
    
    Signed-off-by: Scott Nichols <snichols@vmware.com>
    
    * add ADV_HOST
    
    Signed-off-by: Scott Nichols <snichols@vmware.com>
    
    * natss has bumped to 0.18
    
    Signed-off-by: Scott Nichols <snichols@vmware.com>
    
    * run int test at 1.14 anf 1.15 go version
    
    Signed-off-by: Scott Nichols <snichols@vmware.com>
    Scott Nichols authored Sep 28, 2020
    Configuration menu
    Copy the full SHA
    68306c1 View commit details
    Browse the repository at this point in the history
Loading