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: servicebinding/runtime
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.6.0
Choose a base ref
...
head repository: servicebinding/runtime
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.7.0
Choose a head ref
  • 13 commits
  • 22 files changed
  • 3 contributors

Commits on Oct 17, 2023

  1. Bump github.com/google/ko from 0.14.1 to 0.15.0 in /hack/ko

    Bumps [github.com/google/ko](https://github.com/google/ko) from 0.14.1 to 0.15.0.
    - [Release notes](https://github.com/google/ko/releases)
    - [Changelog](https://github.com/ko-build/ko/blob/main/.goreleaser.yml)
    - [Commits](ko-build/ko@v0.14.1...v0.15.0)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/google/ko
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored and sadlerap committed Oct 17, 2023
    Configuration menu
    Copy the full SHA
    0661d43 View commit details
    Browse the repository at this point in the history

Commits on Oct 19, 2023

  1. Bump the kubernetes group with 2 updates

    Bumps the kubernetes group with 2 updates: [k8s.io/api](https://github.com/kubernetes/api) and [k8s.io/client-go](https://github.com/kubernetes/client-go).
    
    
    Updates `k8s.io/api` from 0.28.2 to 0.28.3
    - [Commits](kubernetes/api@v0.28.2...v0.28.3)
    
    Updates `k8s.io/client-go` from 0.28.2 to 0.28.3
    - [Changelog](https://github.com/kubernetes/client-go/blob/master/CHANGELOG.md)
    - [Commits](kubernetes/client-go@v0.28.2...v0.28.3)
    
    ---
    updated-dependencies:
    - dependency-name: k8s.io/api
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: kubernetes
    - dependency-name: k8s.io/client-go
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: kubernetes
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    dadc923 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    57cb087 View commit details
    Browse the repository at this point in the history

Commits on Oct 25, 2023

  1. Configuration menu
    Copy the full SHA
    9e0cdcf View commit details
    Browse the repository at this point in the history
  2. Require Go 1.21+

    Signed-off-by: Scott Andrews <andrewssc@vmware.com>
    scothis authored and sadlerap committed Oct 25, 2023
    Configuration menu
    Copy the full SHA
    f5cee57 View commit details
    Browse the repository at this point in the history

Commits on Oct 27, 2023

  1. Configuration menu
    Copy the full SHA
    0209197 View commit details
    Browse the repository at this point in the history

Commits on Oct 31, 2023

  1. Bump github.com/vmware-tanzu/carvel-kbld in /hack/kbld (#360)

    Bumps [github.com/vmware-tanzu/carvel-kbld](https://github.com/vmware-tanzu/carvel-kbld) from 0.38.0 to 0.38.1.
    - [Release notes](https://github.com/vmware-tanzu/carvel-kbld/releases)
    - [Changelog](https://github.com/carvel-dev/kbld/blob/develop/.goreleaser.yml)
    - [Commits](carvel-dev/kbld@v0.38.0...v0.38.1)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/vmware-tanzu/carvel-kbld
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Oct 31, 2023
    Configuration menu
    Copy the full SHA
    00db1d5 View commit details
    Browse the repository at this point in the history

Commits on Nov 7, 2023

  1. disable http2 for metrics and webhooks by default (#356)

    * disable http2 for metrics and webhooks by default
    
    It appears that mitigating the recent http2 vulnerabilities (see
    CVE-2023-44487 and CVE-2023-39325) requires [more than just a library
    update to golang.org/x/net][1].  Until better mitigations have been
    developed, disable http2 in both the metrics and webhooks servers.
    
    [1]: kubernetes/kubernetes#121197
    
    Signed-off-by: Andy Sadler <ansadler@redhat.com>
    
    * cleanup http2 disabling methods
    
    Until better mitigations are in place, disable HTTP2 in all cases.
    Don't leave an option in place to re-enable it.
    
    Signed-off-by: Andy Sadler <ansadler@redhat.com>
    
    * fix generated drift
    
    Signed-off-by: Andy Sadler <ansadler@redhat.com>
    
    ---------
    
    Signed-off-by: Andy Sadler <ansadler@redhat.com>
    sadlerap authored Nov 7, 2023
    Configuration menu
    Copy the full SHA
    e6c1633 View commit details
    Browse the repository at this point in the history

Commits on Nov 9, 2023

  1. Configuration menu
    Copy the full SHA
    f277460 View commit details
    Browse the repository at this point in the history

Commits on Nov 16, 2023

  1. Configuration menu
    Copy the full SHA
    f00230d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    54017e1 View commit details
    Browse the repository at this point in the history

Commits on Nov 27, 2023

  1. Watch status subresource updates to trigger reconcile (#364)

    ServiceBindings setup a validating webhook to watch for changes on the
    service resource. This was only watching for requests on the main
    resource and did not observe the status subresource. This meant that if
    a provisioned service rotated the secret name and made no other changes,
    the new secret would not be observed until the regular reconcile of the
    ServiceBinding (up to 10 hours later).
    
    This change watches the status subresource for tracked resources.
    
    Signed-off-by: Scott Andrews <andrewssc@vmware.com>
    scothis authored Nov 27, 2023
    Configuration menu
    Copy the full SHA
    0973d3d View commit details
    Browse the repository at this point in the history

Commits on Nov 28, 2023

  1. Bump golang.org/x/tools from 0.15.0 to 0.16.0 in /hack/goimports

    Bumps [golang.org/x/tools](https://github.com/golang/tools) from 0.15.0 to 0.16.0.
    - [Release notes](https://github.com/golang/tools/releases)
    - [Commits](golang/tools@v0.15.0...v0.16.0)
    
    ---
    updated-dependencies:
    - dependency-name: golang.org/x/tools
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Nov 28, 2023
    Configuration menu
    Copy the full SHA
    5c1cc3d View commit details
    Browse the repository at this point in the history
Loading