Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sync to upstream:54ceade #23

Merged
merged 44 commits into from
Oct 10, 2024

Commits on Aug 8, 2024

  1. add changelog

    Signed-off-by: gang.liu <[email protected]>
    izturn committed Aug 8, 2024
    Configuration menu
    Copy the full SHA
    b7da97a View commit details
    Browse the repository at this point in the history

Commits on Aug 12, 2024

  1. build(deps): bump actions/upload-artifact in the artifact-actions gro…

    …up (projectcontour#6608)
    
    Bumps the artifact-actions group with 1 update: [actions/upload-artifact](https://github.com/actions/upload-artifact).
    
    
    Updates `actions/upload-artifact` from 4.3.5 to 4.3.6
    - [Release notes](https://github.com/actions/upload-artifact/releases)
    - [Commits](actions/upload-artifact@89ef406...834a144)
    
    ---
    updated-dependencies:
    - dependency-name: actions/upload-artifact
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: artifact-actions
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Aug 12, 2024
    Configuration menu
    Copy the full SHA
    1927dca View commit details
    Browse the repository at this point in the history
  2. build(deps): bump github/codeql-action from 3.25.15 to 3.26.0 (projec…

    …tcontour#6609)
    
    Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.25.15 to 3.26.0.
    - [Release notes](https://github.com/github/codeql-action/releases)
    - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
    - [Commits](github/codeql-action@afb54ba...eb055d7)
    
    ---
    updated-dependencies:
    - dependency-name: github/codeql-action
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Aug 12, 2024
    Configuration menu
    Copy the full SHA
    54d3629 View commit details
    Browse the repository at this point in the history
  3. build(deps): bump github.com/onsi/ginkgo/v2 from 2.19.1 to 2.20.0 (pr…

    …ojectcontour#6607)
    
    Bumps [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) from 2.19.1 to 2.20.0.
    - [Release notes](https://github.com/onsi/ginkgo/releases)
    - [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md)
    - [Commits](onsi/ginkgo@v2.19.1...v2.20.0)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/onsi/ginkgo/v2
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Aug 12, 2024
    Configuration menu
    Copy the full SHA
    d4ac7d4 View commit details
    Browse the repository at this point in the history

Commits on Aug 14, 2024

  1. docs: Clarify how XFCC headers are handled (projectcontour#6586)

    Since XFCC headers contain authentication information, it's important to know
    precisely how Contour (ie Envoy) handle existing XFCC headers from clients -
    ie, are they blocked, or appended to, and in what circumstances are they
    blocked? Getting this wrong could allow serious vulnerabilities such as
    spoofing client certs.
    
    This documents Contours behaviour, so that users can know exactly how they are
    required to handle that header without needing to dive into the Contour source
    code. My understanding from reading the source code:
    
    https://github.com/gautierdelorme/contour/blob/main/internal/envoy/v3/listener.go#L483
    
    as well as the Envoy documentation:
    
    https://www.envoyproxy.io/docs/envoy/latest/api-v3/extensions/filters/network/http_connection_manager/v3/http_connection_manager.proto#envoy-v3-api-enum-extensions-filters-network-http-connection-manager-v3-httpconnectionmanager-forwardclientcertdetails
    
    is that when forwarding client certificate details is not configured in
    Contour, Contour leaves `ForwardClientCertDetails` in Envoy unset, which means
    it defaults to `SANITIZE`, which means incoming headers from clients are
    blocked. Meanwhile, when forwarding client certificate details is configured in
    Contour, Contour sets `ForwardClientCertDetails` to `SANITIZE_SET` in Envoy,
    which means incoming XFCC headers are blocked, and if an incoming cert is
    present, a new XFCC header is added.
    
    Signed-off-by: James Roper <[email protected]>
    jroper authored Aug 14, 2024
    Configuration menu
    Copy the full SHA
    f9b6f6f View commit details
    Browse the repository at this point in the history

Commits on Aug 19, 2024

  1. build(deps): bump dario.cat/mergo from 1.0.0 to 1.0.1 (projectcontour…

    …#6627)
    
    Bumps [dario.cat/mergo](https://github.com/imdario/mergo) from 1.0.0 to 1.0.1.
    - [Release notes](https://github.com/imdario/mergo/releases)
    - [Commits](darccio/mergo@v1.0.0...v1.0.1)
    
    ---
    updated-dependencies:
    - dependency-name: dario.cat/mergo
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Aug 19, 2024
    Configuration menu
    Copy the full SHA
    4eaed33 View commit details
    Browse the repository at this point in the history
  2. build(deps): bump github/codeql-action from 3.26.0 to 3.26.2 (project…

    …contour#6622)
    
    Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.26.0 to 3.26.2.
    - [Release notes](https://github.com/github/codeql-action/releases)
    - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
    - [Commits](github/codeql-action@eb055d7...429e197)
    
    ---
    updated-dependencies:
    - dependency-name: github/codeql-action
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Aug 19, 2024
    Configuration menu
    Copy the full SHA
    cd3ba80 View commit details
    Browse the repository at this point in the history
  3. build(deps): bump github.com/prometheus/client_golang (projectcontour…

    …#6626)
    
    Bumps [github.com/prometheus/client_golang](https://github.com/prometheus/client_golang) from 1.19.1 to 1.20.0.
    - [Release notes](https://github.com/prometheus/client_golang/releases)
    - [Changelog](https://github.com/prometheus/client_golang/blob/main/CHANGELOG.md)
    - [Commits](prometheus/client_golang@v1.19.1...v1.20.0)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/prometheus/client_golang
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Aug 19, 2024
    Configuration menu
    Copy the full SHA
    6c7fe38 View commit details
    Browse the repository at this point in the history
  4. build(deps): bump github.com/envoyproxy/go-control-plane (projectcont…

    …our#6625)
    
    Bumps [github.com/envoyproxy/go-control-plane](https://github.com/envoyproxy/go-control-plane) from 0.12.1-0.20240111020705-5401a878d8bb to 0.13.0.
    - [Release notes](https://github.com/envoyproxy/go-control-plane/releases)
    - [Changelog](https://github.com/envoyproxy/go-control-plane/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/envoyproxy/go-control-plane/commits/v0.13.0)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/envoyproxy/go-control-plane
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Aug 19, 2024
    Configuration menu
    Copy the full SHA
    44bffe8 View commit details
    Browse the repository at this point in the history

Commits on Aug 20, 2024

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

Commits on Aug 23, 2024

  1. docs: Update README.md to be more helpful (projectcontour#6585)

    The docs/README.md made no sense. Anyone reading it in GitHub clearly wants to
    contribute to the documentation, that's why they're in the source code of
    Contour, why else would they have found their way to the source repository? So,
    it should point to where the documentation lives in the git repository, not to
    the website where it's served.
    
    Signed-off-by: James Roper <[email protected]>
    Co-authored-by: Steve Kriss <[email protected]>
    jroper and skriss authored Aug 23, 2024
    Configuration menu
    Copy the full SHA
    20e57df View commit details
    Browse the repository at this point in the history

Commits on Aug 24, 2024

  1. [api-gateway]: Support http(s) as AppProtocol in Kubernetes svc (proj…

    …ectcontour#6616)
    
    * [api-gateway]: Support http, https and www-http as AppProtocol in kubernetes' service
    
    Fix projectcontour#6560
    
    Signed-off-by: Ludovic Logiou <[email protected]>
    
    * Remove legacy www-http
    
    Signed-off-by: Ludovic Logiou <[email protected]>
    
    * Fix undefined vars
    
    Signed-off-by: Ludovic Logiou <[email protected]>
    
    * Add changelog
    
    Signed-off-by: Ludovic Logiou <[email protected]>
    
    * Fix issues found by the linter
    
    Signed-off-by: Ludovic Logiou <[email protected]>
    
    * Fix format and add unit tests
    
    Signed-off-by: Ludovic Logiou <[email protected]>
    
    ---------
    
    Signed-off-by: Ludovic Logiou <[email protected]>
    Krast76 authored Aug 24, 2024
    Configuration menu
    Copy the full SHA
    63f5e19 View commit details
    Browse the repository at this point in the history

Commits on Aug 26, 2024

  1. Configuration menu
    Copy the full SHA
    654e5bd View commit details
    Browse the repository at this point in the history
  2. build(deps): bump codespell-project/actions-codespell from 2.0 to 2.1 (

    …projectcontour#6635)
    
    Bumps [codespell-project/actions-codespell](https://github.com/codespell-project/actions-codespell) from 2.0 to 2.1.
    - [Release notes](https://github.com/codespell-project/actions-codespell/releases)
    - [Commits](codespell-project/actions-codespell@94259cd...406322e)
    
    ---
    updated-dependencies:
    - dependency-name: codespell-project/actions-codespell
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Aug 26, 2024
    Configuration menu
    Copy the full SHA
    f9370ec View commit details
    Browse the repository at this point in the history
  3. build(deps): bump github.com/prometheus/client_golang (projectcontour…

    …#6640)
    
    Bumps [github.com/prometheus/client_golang](https://github.com/prometheus/client_golang) from 1.20.0 to 1.20.2.
    - [Release notes](https://github.com/prometheus/client_golang/releases)
    - [Changelog](https://github.com/prometheus/client_golang/blob/main/CHANGELOG.md)
    - [Commits](prometheus/client_golang@v1.20.0...v1.20.2)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/prometheus/client_golang
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Aug 26, 2024
    Configuration menu
    Copy the full SHA
    3850f0a View commit details
    Browse the repository at this point in the history
  4. build(deps): bump github.com/onsi/ginkgo/v2 from 2.20.0 to 2.20.1 (pr…

    …ojectcontour#6639)
    
    Bumps [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) from 2.20.0 to 2.20.1.
    - [Release notes](https://github.com/onsi/ginkgo/releases)
    - [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md)
    - [Commits](onsi/ginkgo@v2.20.0...v2.20.1)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/onsi/ginkgo/v2
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Aug 26, 2024
    Configuration menu
    Copy the full SHA
    9239884 View commit details
    Browse the repository at this point in the history
  5. build(deps): bump github.com/vektra/mockery/v2 from 2.44.1 to 2.45.0 (p…

    …rojectcontour#6638)
    
    Bumps [github.com/vektra/mockery/v2](https://github.com/vektra/mockery) from 2.44.1 to 2.45.0.
    - [Release notes](https://github.com/vektra/mockery/releases)
    - [Changelog](https://github.com/vektra/mockery/blob/master/docs/changelog.md)
    - [Commits](vektra/mockery@v2.44.1...v2.45.0)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/vektra/mockery/v2
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Aug 26, 2024
    Configuration menu
    Copy the full SHA
    e621e6d View commit details
    Browse the repository at this point in the history
  6. Bump kind and kubectl tools (projectcontour#6642)

    kind: 0.24.0
    kubectl: 1.31.0
    
    Signed-off-by: Sunjay Bhatia <[email protected]>
    sunjayBhatia authored Aug 26, 2024
    Configuration menu
    Copy the full SHA
    808864b View commit details
    Browse the repository at this point in the history

Commits on Aug 27, 2024

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

Commits on Sep 3, 2024

  1. build(deps): bump actions/upload-artifact in the artifact-actions gro…

    …up (projectcontour#6647)
    
    Bumps the artifact-actions group with 1 update: [actions/upload-artifact](https://github.com/actions/upload-artifact).
    
    
    Updates `actions/upload-artifact` from 4.3.6 to 4.4.0
    - [Release notes](https://github.com/actions/upload-artifact/releases)
    - [Commits](actions/upload-artifact@834a144...5076954)
    
    ---
    updated-dependencies:
    - dependency-name: actions/upload-artifact
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: artifact-actions
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Sep 3, 2024
    Configuration menu
    Copy the full SHA
    712a87f View commit details
    Browse the repository at this point in the history
  2. build(deps): bump github/codeql-action from 3.26.2 to 3.26.6 (project…

    …contour#6648)
    
    Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.26.2 to 3.26.6.
    - [Release notes](https://github.com/github/codeql-action/releases)
    - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
    - [Commits](github/codeql-action@429e197...4dd1613)
    
    ---
    updated-dependencies:
    - dependency-name: github/codeql-action
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Sep 3, 2024
    Configuration menu
    Copy the full SHA
    2779143 View commit details
    Browse the repository at this point in the history
  3. build(deps): bump mheap/github-action-required-labels (projectcontour…

    …#6649)
    
    Bumps [mheap/github-action-required-labels](https://github.com/mheap/github-action-required-labels) from 5.4.1 to 5.4.2.
    - [Release notes](https://github.com/mheap/github-action-required-labels/releases)
    - [Commits](mheap/github-action-required-labels@5847eef...d25134c)
    
    ---
    updated-dependencies:
    - dependency-name: mheap/github-action-required-labels
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Sep 3, 2024
    Configuration menu
    Copy the full SHA
    b6972c1 View commit details
    Browse the repository at this point in the history
  4. build(deps): bump github.com/prometheus/common from 0.55.0 to 0.57.0 (p…

    …rojectcontour#6651)
    
    Bumps [github.com/prometheus/common](https://github.com/prometheus/common) from 0.55.0 to 0.57.0.
    - [Release notes](https://github.com/prometheus/common/releases)
    - [Changelog](https://github.com/prometheus/common/blob/main/RELEASE.md)
    - [Commits](prometheus/common@v0.55.0...v0.57.0)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/prometheus/common
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Sep 3, 2024
    Configuration menu
    Copy the full SHA
    b160860 View commit details
    Browse the repository at this point in the history
  5. build(deps): bump github.com/cert-manager/cert-manager (projectcontou…

    …r#6652)
    
    Bumps [github.com/cert-manager/cert-manager](https://github.com/cert-manager/cert-manager) from 1.15.2 to 1.15.3.
    - [Release notes](https://github.com/cert-manager/cert-manager/releases)
    - [Changelog](https://github.com/cert-manager/cert-manager/blob/master/RELEASE.md)
    - [Commits](cert-manager/cert-manager@v1.15.2...v1.15.3)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/cert-manager/cert-manager
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Sep 3, 2024
    Configuration menu
    Copy the full SHA
    5a81863 View commit details
    Browse the repository at this point in the history
  6. build(deps): bump github.com/onsi/ginkgo/v2 from 2.20.1 to 2.20.2 (pr…

    …ojectcontour#6653)
    
    Bumps [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) from 2.20.1 to 2.20.2.
    - [Release notes](https://github.com/onsi/ginkgo/releases)
    - [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md)
    - [Commits](onsi/ginkgo@v2.20.1...v2.20.2)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/onsi/ginkgo/v2
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Sep 3, 2024
    Configuration menu
    Copy the full SHA
    3dbb90a View commit details
    Browse the repository at this point in the history
  7. Bump kind node images to 1.31 and latest patches (projectcontour#6643)

    Also updates compat matrix
    
    Signed-off-by: Sunjay Bhatia <[email protected]>
    sunjayBhatia authored Sep 3, 2024
    Configuration menu
    Copy the full SHA
    db432cc View commit details
    Browse the repository at this point in the history

Commits on Sep 9, 2024

  1. build(deps): bump github.com/onsi/gomega from 1.34.1 to 1.34.2 (proje…

    …ctcontour#6664)
    
    Bumps [github.com/onsi/gomega](https://github.com/onsi/gomega) from 1.34.1 to 1.34.2.
    - [Release notes](https://github.com/onsi/gomega/releases)
    - [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md)
    - [Commits](onsi/gomega@v1.34.1...v1.34.2)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/onsi/gomega
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Sep 9, 2024
    Configuration menu
    Copy the full SHA
    5a3c7ea View commit details
    Browse the repository at this point in the history
  2. build(deps): bump github.com/Masterminds/semver/v3 from 3.2.1 to 3.3.0 (

    projectcontour#6662)
    
    Bumps [github.com/Masterminds/semver/v3](https://github.com/Masterminds/semver) from 3.2.1 to 3.3.0.
    - [Release notes](https://github.com/Masterminds/semver/releases)
    - [Changelog](https://github.com/Masterminds/semver/blob/master/CHANGELOG.md)
    - [Commits](Masterminds/semver@v3.2.1...v3.3.0)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/Masterminds/semver/v3
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Sep 9, 2024
    Configuration menu
    Copy the full SHA
    6f0bbd3 View commit details
    Browse the repository at this point in the history
  3. build(deps): bump github.com/prometheus/client_golang (projectcontour…

    …#6663)
    
    Bumps [github.com/prometheus/client_golang](https://github.com/prometheus/client_golang) from 1.20.2 to 1.20.3.
    - [Release notes](https://github.com/prometheus/client_golang/releases)
    - [Changelog](https://github.com/prometheus/client_golang/blob/v1.20.3/CHANGELOG.md)
    - [Commits](prometheus/client_golang@v1.20.2...v1.20.3)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/prometheus/client_golang
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Sep 9, 2024
    Configuration menu
    Copy the full SHA
    39544fe View commit details
    Browse the repository at this point in the history

Commits on Sep 16, 2024

  1. build(deps): bump github/codeql-action from 3.26.6 to 3.26.7 (project…

    …contour#6667)
    
    Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.26.6 to 3.26.7.
    - [Release notes](https://github.com/github/codeql-action/releases)
    - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
    - [Commits](github/codeql-action@4dd1613...8214744)
    
    ---
    updated-dependencies:
    - dependency-name: github/codeql-action
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Sep 16, 2024
    Configuration menu
    Copy the full SHA
    098e9f5 View commit details
    Browse the repository at this point in the history
  2. build(deps): bump github.com/vektra/mockery/v2 from 2.45.0 to 2.45.1 (p…

    …rojectcontour#6668)
    
    Bumps [github.com/vektra/mockery/v2](https://github.com/vektra/mockery) from 2.45.0 to 2.45.1.
    - [Release notes](https://github.com/vektra/mockery/releases)
    - [Changelog](https://github.com/vektra/mockery/blob/master/docs/changelog.md)
    - [Commits](vektra/mockery@v2.45.0...v2.45.1)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/vektra/mockery/v2
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Sep 16, 2024
    Configuration menu
    Copy the full SHA
    d8b9d2d View commit details
    Browse the repository at this point in the history
  3. build(deps): bump github.com/prometheus/common from 0.57.0 to 0.59.1 (p…

    …rojectcontour#6671)
    
    Bumps [github.com/prometheus/common](https://github.com/prometheus/common) from 0.57.0 to 0.59.1.
    - [Release notes](https://github.com/prometheus/common/releases)
    - [Changelog](https://github.com/prometheus/common/blob/main/RELEASE.md)
    - [Commits](prometheus/common@v0.57.0...v0.59.1)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/prometheus/common
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Sep 16, 2024
    Configuration menu
    Copy the full SHA
    93008ed View commit details
    Browse the repository at this point in the history
  4. build(deps): bump golang.org/x/oauth2 from 0.22.0 to 0.23.0 (projectc…

    …ontour#6670)
    
    Bumps [golang.org/x/oauth2](https://github.com/golang/oauth2) from 0.22.0 to 0.23.0.
    - [Commits](golang/oauth2@v0.22.0...v0.23.0)
    
    ---
    updated-dependencies:
    - dependency-name: golang.org/x/oauth2
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Sep 16, 2024
    Configuration menu
    Copy the full SHA
    60834f7 View commit details
    Browse the repository at this point in the history

Commits on Sep 23, 2024

  1. build(deps): bump github/codeql-action from 3.26.7 to 3.26.8 (project…

    …contour#6684)
    
    Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.26.7 to 3.26.8.
    - [Release notes](https://github.com/github/codeql-action/releases)
    - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
    - [Commits](github/codeql-action@8214744...294a9d9)
    
    ---
    updated-dependencies:
    - dependency-name: github/codeql-action
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Sep 23, 2024
    Configuration menu
    Copy the full SHA
    a87b4d2 View commit details
    Browse the repository at this point in the history
  2. build(deps): bump github.com/vektra/mockery/v2 from 2.45.1 to 2.46.0 (p…

    …rojectcontour#6683)
    
    Bumps [github.com/vektra/mockery/v2](https://github.com/vektra/mockery) from 2.45.1 to 2.46.0.
    - [Release notes](https://github.com/vektra/mockery/releases)
    - [Changelog](https://github.com/vektra/mockery/blob/master/docs/changelog.md)
    - [Commits](vektra/mockery@v2.45.1...v2.46.0)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/vektra/mockery/v2
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Sep 23, 2024
    Configuration menu
    Copy the full SHA
    b0e8907 View commit details
    Browse the repository at this point in the history
  3. build(deps): bump github.com/prometheus/client_golang (projectcontour…

    …#6682)
    
    Bumps [github.com/prometheus/client_golang](https://github.com/prometheus/client_golang) from 1.20.3 to 1.20.4.
    - [Release notes](https://github.com/prometheus/client_golang/releases)
    - [Changelog](https://github.com/prometheus/client_golang/blob/main/CHANGELOG.md)
    - [Commits](prometheus/client_golang@v1.20.3...v1.20.4)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/prometheus/client_golang
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Sep 23, 2024
    Configuration menu
    Copy the full SHA
    f9e8826 View commit details
    Browse the repository at this point in the history

Commits on Sep 29, 2024

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

Commits on Oct 2, 2024

  1. build(deps): bump go.uber.org/automaxprocs from 1.5.3 to 1.6.0 (proje…

    …ctcontour#6687)
    
    Bumps [go.uber.org/automaxprocs](https://github.com/uber-go/automaxprocs) from 1.5.3 to 1.6.0.
    - [Release notes](https://github.com/uber-go/automaxprocs/releases)
    - [Changelog](https://github.com/uber-go/automaxprocs/blob/master/CHANGELOG.md)
    - [Commits](uber-go/automaxprocs@v1.5.3...v1.6.0)
    
    ---
    updated-dependencies:
    - dependency-name: go.uber.org/automaxprocs
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Oct 2, 2024
    Configuration menu
    Copy the full SHA
    9c7133d View commit details
    Browse the repository at this point in the history
  2. build(deps): bump github/codeql-action from 3.26.8 to 3.26.9 (project…

    …contour#6689)
    
    Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.26.8 to 3.26.9.
    - [Release notes](https://github.com/github/codeql-action/releases)
    - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
    - [Commits](github/codeql-action@294a9d9...461ef6c)
    
    ---
    updated-dependencies:
    - dependency-name: github/codeql-action
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Oct 2, 2024
    Configuration menu
    Copy the full SHA
    62378d6 View commit details
    Browse the repository at this point in the history
  3. build(deps): bump actions/checkout from 4.1.7 to 4.2.0 (projectcontou…

    …r#6690)
    
    Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.7 to 4.2.0.
    - [Release notes](https://github.com/actions/checkout/releases)
    - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
    - [Commits](actions/checkout@692973e...d632683)
    
    ---
    updated-dependencies:
    - dependency-name: actions/checkout
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Oct 2, 2024
    Configuration menu
    Copy the full SHA
    54ceade View commit details
    Browse the repository at this point in the history

Commits on Oct 9, 2024

  1. Configuration menu
    Copy the full SHA
    7b9d711 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7bd8979 View commit details
    Browse the repository at this point in the history

Commits on Oct 10, 2024

  1. remove the wrong changelog

    Signed-off-by: gang.liu <[email protected]>
    izturn committed Oct 10, 2024
    Configuration menu
    Copy the full SHA
    2d915a4 View commit details
    Browse the repository at this point in the history
  2. add changelog

    Signed-off-by: gang.liu <[email protected]>
    izturn committed Oct 10, 2024
    Configuration menu
    Copy the full SHA
    ac93088 View commit details
    Browse the repository at this point in the history