Skip to content

fix: avoid calling the issuer's well-known endpoint for every routes#7394

Merged
arkodg merged 2 commits intoenvoyproxy:mainfrom
zhaohuabing:improve-oidc-auto-discovery
Nov 4, 2025
Merged

fix: avoid calling the issuer's well-known endpoint for every routes#7394
arkodg merged 2 commits intoenvoyproxy:mainfrom
zhaohuabing:improve-oidc-auto-discovery

Conversation

@zhaohuabing
Copy link
Copy Markdown
Member

@zhaohuabing zhaohuabing commented Oct 31, 2025

The Gateway API translator calls the issuer's well-known OIDC configuration endpoint to fetch OIDC configuration for each routes. This can cause significant delay during translation when the issuer's well-known endpoint is slow or unresponsive.

This PR improves it by caching the fetching results and reuse them during the translation.

fixes: #7358

The PR has been verified with the following setup.

Test setup:

Crate a SecurityPolicy targeting 10 HTTPRoutes.

apiVersion: gateway.envoyproxy.io/v1alpha1
kind: SecurityPolicy
metadata:
  name: keycloak-oidc-not-exist
spec:
  oidc:
    clientID: oidctest
    clientSecret:
      group: ""
      kind: Secret
      name: oidctest-secret
    cookieNames:
      accessToken: OIDC_AccessToken
      idToken: OIDC_IdToken
    forwardAccessToken: false
    logoutPath: /foo/logout
    provider:
      issuer: https://keycloak-not-exist.default/realms/master
    redirectURL: https://www.example.com/foo/oauth2/callback
    refreshToken: true
  targetRefs:
  - group: gateway.networking.k8s.io
    kind: HTTPRoute
    name: foo1
  - group: gateway.networking.k8s.io
    kind: HTTPRoute
    name: foo2
  - group: gateway.networking.k8s.io
    kind: HTTPRoute
    name: foo3
  - group: gateway.networking.k8s.io
    kind: HTTPRoute
    name: foo4
  - group: gateway.networking.k8s.io
    kind: HTTPRoute
    name: foo5
  - group: gateway.networking.k8s.io
    kind: HTTPRoute
    name: foo6
  - group: gateway.networking.k8s.io
    kind: HTTPRoute
    name: foo7
  - group: gateway.networking.k8s.io
    kind: HTTPRoute
    name: foo8
  - group: gateway.networking.k8s.io
    kind: HTTPRoute
    name: foo9
  - group: gateway.networking.k8s.io
    kind: HTTPRoute
    name: foo10

Scale out the backend deploy from 1 to 20.

kubectl scale deployment backend --replicas=20

v1.5.4 test result

It took 279s for v1.5.4 to sync the endpoints to envoy.

ADDRESS       ENVOY_HEALTH_STATUS    READY    SERVING    TERMINATING    EG_READY    EG_SERVING    EG_TERMINATING    RED_DURATION
------------  ---------------------  -------  ---------  -------------  ----------  ------------  ----------------  --------------
10.244.0.200  UNHEALTHY              -        -          -              -           -             -                 -
10.244.0.201  UNHEALTHY              -        -          -              -           -             -                 -
10.244.0.202  UNHEALTHY              -        -          -              -           -             -                 -
10.244.0.204  UNHEALTHY              -        -          -              -           -             -                 -
10.244.0.207  UNHEALTHY              -        -          -              -           -             -                 -
10.244.0.212  UNHEALTHY              -        -          -              -           -             -                 -
10.244.0.213  UNHEALTHY              -        -          -              -           -             -                 -
10.244.0.215  UNHEALTHY              -        -          -              -           -             -                 -
10.244.0.216  UNHEALTHY              -        -          -              -           -             -                 -
10.244.0.239  -                      true     true       false          true        true          false             279s
10.244.0.240  -                      true     true       false          true        true          false             279s
10.244.0.241  -                      true     true       false          true        true          false             279s
10.244.0.242  -                      true     true       false          true        true          false             279s
10.244.0.243  -                      true     true       false          true        true          false             279s
10.244.0.244  -                      true     true       false          true        true          false             279s
10.244.0.245  -                      true     true       false          true        true          false             279s
10.244.0.246  -                      true     true       false          true        true          false             279s
10.244.0.247  -                      true     true       false          true        true          false             279s
10.244.0.248  -                      true     true       false          true        true          false             279s
10.244.0.249  -                      true     true       false          true        true          false             279s
10.244.0.250  -                      true     true       false          true        true          false             279s
10.244.0.251  -                      true     true       false          true        true          false             279s
10.244.0.252  -                      true     true       false          true        true          false             279s
10.244.0.253  -                      true     true       false          true        true          false             279s
10.244.0.254  -                      true     true       false          true        true          false             279s
10.244.0.6    -                      true     true       false          true        true          false             279s
10.244.0.7    -                      true     true       false          true        true          false             279s
10.244.0.8    HEALTHY                true     true       false          true        true          false             -
10.244.0.9    -                      true     true       false          true        true          false             279s

With the coalesce optimization in #7328

With PR #7328 alone, the sync time was reduced to 58s.

2025-10-31T13:20:35.720Z INFO watchable message/watchutil.go:132 coalesced updates {"runner": "gateway-api", "count": 1, "before": 19}

ADDRESS      ENVOY_HEALTH_STATUS    READY    SERVING    TERMINATING    EG_READY    EG_SERVING    EG_TERMINATING    RED_DURATION
-----------  ---------------------  -------  ---------  -------------  ----------  ------------  ----------------  --------------
10.244.0.32  -                      true     true       false          true        true          false             58s
10.244.0.33  -                      true     true       false          true        true          false             58s
10.244.0.34  -                      true     true       false          true        true          false             58s
10.244.0.35  -                      true     true       false          true        true          false             58s
10.244.0.36  -                      true     true       false          true        true          false             58s
10.244.0.37  -                      true     true       false          true        true          false             58s
10.244.0.38  -                      true     true       false          true        true          false             58s
10.244.0.39  -                      true     true       false          true        true          false             58s
10.244.0.40  -                      true     true       false          true        true          false             58s
10.244.0.41  -                      true     true       false          true        true          false             58s
10.244.0.42  -                      true     true       false          true        true          false             58s
10.244.0.43  -                      true     true       false          true        true          false             58s
10.244.0.44  -                      true     true       false          true        true          false             58s
10.244.0.45  -                      true     true       false          true        true          false             58s
10.244.0.46  -                      true     true       false          true        true          false             58s
10.244.0.47  -                      true     true       false          true        true          false             58s
10.244.0.48  -                      true     true       false          true        true          false             58s
10.244.0.49  -                      true     true       false          true        true          false             58s
10.244.0.50  -                      true     true       false          true        true          false             58s

With both #7328 and this PR

With PR #7328 and this PR, the sync time was reduced to 9s.

2025-10-31T13:15:47.903Z INFO watchable message/watchutil.go:132 coalesced updates {"runner": "gateway-api", "count": 1, "before": 18}

ADDRESS      ENVOY_HEALTH_STATUS    READY    SERVING    TERMINATING    EG_READY    EG_SERVING    EG_TERMINATING    RED_DURATION
-----------  ---------------------  -------  ---------  -------------  ----------  ------------  ----------------  --------------
10.244.0.12  -                      true     true       false          true        true          false             9s
10.244.0.13  HEALTHY                true     true       false          true        true          false             -
10.244.0.14  -                      true     true       false          true        true          false             9s
10.244.0.15  -                      true     true       false          true        true          false             9s
10.244.0.16  -                      true     true       false          true        true          false             9s
10.244.0.17  -                      true     true       false          true        true          false             9s
10.244.0.18  -                      true     true       false          true        true          false             9s
10.244.0.19  -                      true     true       false          true        true          false             9s
10.244.0.20  -                      true     true       false          true        true          false             9s
10.244.0.21  -                      true     true       false          true        true          false             9s
10.244.0.22  -                      true     true       false          true        true          false             9s
10.244.0.23  -                      true     true       false          true        true          false             9s
10.244.0.24  -                      true     true       false          true        true          false             9s
10.244.0.25  -                      true     true       false          true        true          false             9s
10.244.0.26  -                      true     true       false          true        true          false             9s
10.244.0.27  -                      true     true       false          true        true          false             9s
10.244.0.28  -                      true     true       false          true        true          false             9s
10.244.0.29  HEALTHY                true     true       false          true        true          false             -
10.244.0.30  -                      true     true       false          true        true          false             9s
10.244.0.8   HEALTHY                true     true       false          true        true          false             -
@zhaohuabing zhaohuabing requested a review from a team as a code owner October 31, 2025 08:17
@zhaohuabing zhaohuabing force-pushed the improve-oidc-auto-discovery branch 3 times, most recently from 6766744 to 18b2baa Compare October 31, 2025 08:26
@zhaohuabing zhaohuabing marked this pull request as draft October 31, 2025 08:34
@zhaohuabing zhaohuabing force-pushed the improve-oidc-auto-discovery branch 2 times, most recently from 88d6511 to 50699dc Compare October 31, 2025 08:59
@zhaohuabing zhaohuabing marked this pull request as ready for review October 31, 2025 09:04
@codecov
Copy link
Copy Markdown

codecov bot commented Oct 31, 2025

Codecov Report

❌ Patch coverage is 87.09677% with 4 lines in your changes missing coverage. Please review.
⚠️ Please upload report for BASE (main@5a95a04). Learn more about missing BASE report.
⚠️ Report is 3 commits behind head on main.

Files with missing lines Patch % Lines
internal/gatewayapi/securitypolicy.go 87.09% 2 Missing and 2 partials ⚠️
Additional details and impacted files
@@           Coverage Diff           @@
##             main    #7394   +/-   ##
=======================================
  Coverage        ?   72.35%           
=======================================
  Files           ?      231           
  Lines           ?    34034           
  Branches        ?        0           
=======================================
  Hits            ?    24626           
  Misses          ?     7634           
  Partials        ?     1774           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.
Copy link
Copy Markdown
Member Author

@zhaohuabing zhaohuabing Oct 31, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Instead of blocking the translator here, a more ideal approach is to fail fast and retry fetching in a background go routine, and re-trigger the translation once it succeed. This would need a global cache and some hack in the message watch.

If this makes sense, I'll send a follow-up PR.

@zhaohuabing zhaohuabing added this to the v1.6.0 Milestone milestone Oct 31, 2025
jukie
jukie previously approved these changes Oct 31, 2025
@arkodg
Copy link
Copy Markdown
Contributor

arkodg commented Oct 31, 2025

thanks @zhaohuabing, guessing we'll hit this issue for jwt and wasm too, any other remote configuration we rely on ?

@zhaohuabing
Copy link
Copy Markdown
Member Author

zhaohuabing commented Nov 1, 2025

thanks @zhaohuabing, guessing we'll hit this issue for jwt and wasm too, any other remote configuration we rely on ?

jwt: we don't pull the jwks on the control plane.
wasm: we have a global cache for wasm module, but now it doesn't cache failed pulls, and retries for failed wasm on every route. So we do have similar issue there.

…with

Signed-off-by: Huabing Zhao <zhaohuabing@gmail.com>
Signed-off-by: Huabing Zhao <zhaohuabing@gmail.com>
Copy link
Copy Markdown
Contributor

@arkodg arkodg left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM thanks

@arkodg arkodg merged commit 2ec695d into envoyproxy:main Nov 4, 2025
30 of 32 checks passed
@zhaohuabing zhaohuabing deleted the improve-oidc-auto-discovery branch November 5, 2025 00:28
rudrakhp pushed a commit that referenced this pull request Nov 10, 2025
…7394)

* fix: avoid calling the issuer's well-known endpoint for every routes with

Signed-off-by: Huabing Zhao <zhaohuabing@gmail.com>
arkodg added a commit that referenced this pull request Nov 10, 2025
* chore(examples): fix extensionserver build (#7398)

Signed-off-by: Maxime Brunet <max@brnt.mx>
Signed-off-by: Rudrakh Panigrahi <rudrakh97@gmail.com>

* chore: add missing endpoints in the crl test (#7402)

fix test for #7199

Signed-off-by: Huabing Zhao <zhaohuabing@gmail.com>
Signed-off-by: Rudrakh Panigrahi <rudrakh97@gmail.com>

* chore(make): exit on failure (#7387)

Signed-off-by: Maxime Brunet <max@brnt.mx>
Co-authored-by: zirain <zirain2009@gmail.com>
Signed-off-by: Rudrakh Panigrahi <rudrakh97@gmail.com>

* fix: port typo (#7397)

Signed-off-by: cong <q1875486458@gmail.com>
Signed-off-by: Rudrakh Panigrahi <rudrakh97@gmail.com>

* build(deps): bump busybox from `2f590fc` to `e3652a0` in /tools/docker/envoy-gateway (#7409)

build(deps): bump busybox in /tools/docker/envoy-gateway

Bumps busybox from `2f590fc` to `e3652a0`.

---
updated-dependencies:
- dependency-name: busybox
  dependency-version: e3652a00a2fabd16ce889f0aa32c38eec347b997e73bd09e69c962ec7f8732ee
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Signed-off-by: Rudrakh Panigrahi <rudrakh97@gmail.com>

* fix: validate EnvoyGateway configuration before reload (#7412)

Signed-off-by: zirain <zirain2009@gmail.com>
Signed-off-by: Rudrakh Panigrahi <rudrakh97@gmail.com>

* build(deps): bump the actions group across 1 directory with 2 updates (#7410)

Bumps the actions group with 2 updates in the / directory: [github/codeql-action](https://github.com/github/codeql-action) and [google/osv-scanner-action](https://github.com/google/osv-scanner-action).

Updates `github/codeql-action` from 4.31.0 to 4.31.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@4e94bd1...0499de3)

Updates `google/osv-scanner-action` from 2.2.3 to 2.2.4
- [Release notes](https://github.com/google/osv-scanner-action/releases)
- [Commits](google/osv-scanner-action@e92b5d0...9bb6957)

---
updated-dependencies:
- dependency-name: github/codeql-action
  dependency-version: 4.31.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: actions
- dependency-name: google/osv-scanner-action
  dependency-version: 2.2.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: actions
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Signed-off-by: Rudrakh Panigrahi <rudrakh97@gmail.com>

* fix: missing onInvalidMessage for ClientTrafficPolicy (#7417)

Signed-off-by: i.makarychev <makarichev.ivan@gmail.com>
Signed-off-by: i.makarychev <i.makarychev@tbank.ru>
Signed-off-by: Rudrakh Panigrahi <rudrakh97@gmail.com>

* chore: add missing filters in the filter order configuration (#7404)

* add missing filters in the filter order configuration

Signed-off-by: Huabing Zhao <zhaohuabing@gmail.com>

* fix wrong filter name

Signed-off-by: Huabing Zhao <zhaohuabing@gmail.com>
Signed-off-by: Rudrakh Panigrahi <rudrakh97@gmail.com>

* test: tcp security policy e2e (#7226)

* feat(securitypolicy): Added e2e tests for tcp security policies

Signed-off-by: davem-git <demathieu@gmail.com>

* removed commented out line

Signed-off-by: davem-git <demathieu@gmail.com>

---------

Signed-off-by: davem-git <demathieu@gmail.com>
Signed-off-by: Rudrakh Panigrahi <rudrakh97@gmail.com>

* Docs: tcp security policy (#7247)

* updated release notes

Signed-off-by: davem-git <demathieu@gmail.com>

* updated docs

Signed-off-by: davem-git <demathieu@gmail.com>

* fixed merge conflict

Signed-off-by: davem-git <demathieu@gmail.com>

---------

Signed-off-by: davem-git <demathieu@gmail.com>
Signed-off-by: Rudrakh Panigrahi <rudrakh97@gmail.com>

* feat: support both local and global ratelimit simultaneously (#7334)

* update rate limit type

Signed-off-by: kkk777-7 <kota.kimura0725@gmail.com>

* feat: support both type rate limit

Signed-off-by: kkk777-7 <kota.kimura0725@gmail.com>
Signed-off-by: Rudrakh Panigrahi <rudrakh97@gmail.com>

* feat: support separated path match in ratelimit path (#7413)

* update: path match ratelimit e2e

Signed-off-by: kkk777-7 <kota.kimura0725@gmail.com>
Signed-off-by: Rudrakh Panigrahi <rudrakh97@gmail.com>

* fix: handle optional next update for CRL (#7422)

fix: handle optional next update for crl

Signed-off-by: Rudrakh Panigrahi <rudrakh97@gmail.com>

* fix: missing  jwt provider when jwt is configured on multiple listeners sharing the same port (#7337)

* fix jwt provider missing when jwt is configured at multiple ir listeners

Signed-off-by: Huabing Zhao <zhaohuabing@gmail.com>
Signed-off-by: Rudrakh Panigrahi <rudrakh97@gmail.com>

* fix: only insert proxy service once it exists (#7424)

* maybe this is the fix?

Signed-off-by: jukie <10012479+jukie@users.noreply.github.com>

* fixes

Signed-off-by: jukie <10012479+jukie@users.noreply.github.com>

* cleanup

Signed-off-by: jukie <10012479+jukie@users.noreply.github.com>

* consolidate

Signed-off-by: jukie <10012479+jukie@users.noreply.github.com>

* fix

Signed-off-by: jukie <10012479+jukie@users.noreply.github.com>

---------

Signed-off-by: jukie <10012479+jukie@users.noreply.github.com>
Signed-off-by: Rudrakh Panigrahi <rudrakh97@gmail.com>

* fix error when updating invalid gateway status (#7415)

* fix error when updating invalid gateway status

Signed-off-by: zirain <zirain2009@gmail.com>
Signed-off-by: Rudrakh Panigrahi <rudrakh97@gmail.com>

* fix: avoid calling the issuer's well-known endpoint for every routes (#7394)

* fix: avoid calling the issuer's well-known endpoint for every routes with

Signed-off-by: Huabing Zhao <zhaohuabing@gmail.com>
Signed-off-by: Rudrakh Panigrahi <rudrakh97@gmail.com>

* fix: memory leak (#7429)

Fix memory leak.

Two watchable.Maps were never closed when shutting down the provider:
- GatewayClassStatuses.Close() - missing in GatewayAPIStatuses.Close()
- BackendTrafficPolicyStatuses.Close() - missing in PolicyStatuses.Close()

Each unclosed map leaked 3 goroutines:
1. Internal watchable.Map.coalesce goroutine
2. HandleSubscription goroutine blocked on channel read
3. Error handler goroutine blocked on channel read

Signed-off-by: Gonzalo Serrano <boikot@gmail.com>
Signed-off-by: Rudrakh Panigrahi <rudrakh97@gmail.com>

* perf: move snapshot update above status update in xds layer (#7423)

Signed-off-by: Arko Dasgupta <arko@tetrate.io>
Signed-off-by: Rudrakh Panigrahi <rudrakh97@gmail.com>

* chore: cleanup logging when inserting proxy service cluster (#7431)

cleanup

Signed-off-by: jukie <10012479+jukie@users.noreply.github.com>
Signed-off-by: Rudrakh Panigrahi <rudrakh97@gmail.com>

* upgrade gofumpt (#7420)

Signed-off-by: fabian4 <fabian.v.bao@gmail.com>
Signed-off-by: Rudrakh Panigrahi <rudrakh97@gmail.com>

* feat(translator): relax backend restrictions for localhost when running standalone with Host infrastructure (#7427)

Signed-off-by: Rudrakh Panigrahi <rudrakh97@gmail.com>

* chore: improve api docs for http10.useDefaultHost (#7435)

* imporove api docs for useDefaultHost

Signed-off-by: Huabing Zhao <zhaohuabing@gmail.com>
Signed-off-by: Rudrakh Panigrahi <rudrakh97@gmail.com>

* ci: disable lint.dependabot (#7445)

Signed-off-by: zirain <zirain2009@gmail.com>
Signed-off-by: Rudrakh Panigrahi <rudrakh97@gmail.com>

* chore: bump github.com/containerd/containerd (#7448)

Signed-off-by: zirain <zirain2009@gmail.com>
Signed-off-by: Rudrakh Panigrahi <rudrakh97@gmail.com>

* perf: do not set last transition time for status in watcher layer (#7268)

Signed-off-by: Rudrakh Panigrahi <rudrakh97@gmail.com>

* docs: fix gwapi docs (#7408)

* docs: fix gwapi docs

Signed-off-by: zirain <zirain2009@gmail.com>

* fix

Signed-off-by: zirain <zirain2009@gmail.com>

* update

Signed-off-by: zirain <zirain2009@gmail.com>

---------

Signed-off-by: zirain <zirain2009@gmail.com>
Signed-off-by: Rudrakh Panigrahi <rudrakh97@gmail.com>

* chore: renable lint.dependabot (#7454)

Signed-off-by: zirain <zirain2009@gmail.com>
Signed-off-by: Rudrakh Panigrahi <rudrakh97@gmail.com>

* chore: remove last transition time comparison as no longer set (#7451)

chore: remove last transition time comparision as no longer set

Signed-off-by: Rudrakh Panigrahi <rudrakh97@gmail.com>
Co-authored-by: zirain <zirain2009@gmail.com>
Signed-off-by: Rudrakh Panigrahi <rudrakh97@gmail.com>

* fix: merged policy status (#7376)

Signed-off-by: kkk777-7 <kota.kimura0725@gmail.com>
Signed-off-by: Rudrakh Panigrahi <rudrakh97@gmail.com>

* fix: header modifier doesn't permit multiple values with commas (#7436)

* revert: separate headers with commas

Signed-off-by: kkk777-7 <kota.kimura0725@gmail.com>

* add e2e

Signed-off-by: kkk777-7 <kota.kimura0725@gmail.com>
Signed-off-by: Rudrakh Panigrahi <rudrakh97@gmail.com>

* fix auto http config with proxy protocol (#7439)

* don't set TypedExtensionProtocolOptions when ProxyProtocol enabled

Signed-off-by: zirain <zirain2009@gmail.com>

* update test

Signed-off-by: zirain <zirain2009@gmail.com>

* enable auto ALPN for proxy protocol

Signed-off-by: zirain <zirain2009@gmail.com>

* add e2e

Signed-off-by: zirain <zirain2009@gmail.com>

* update

Signed-off-by: zirain <zirain2009@gmail.com>

---------

Signed-off-by: zirain <zirain2009@gmail.com>
Signed-off-by: Rudrakh Panigrahi <rudrakh97@gmail.com>

* build(deps): bump sigs.k8s.io/controller-runtime from 0.22.3 to 0.22.4 in /examples/extension-server (#7470)

build(deps): bump sigs.k8s.io/controller-runtime

Bumps [sigs.k8s.io/controller-runtime](https://github.com/kubernetes-sigs/controller-runtime) from 0.22.3 to 0.22.4.
- [Release notes](https://github.com/kubernetes-sigs/controller-runtime/releases)
- [Changelog](https://github.com/kubernetes-sigs/controller-runtime/blob/main/RELEASE.md)
- [Commits](kubernetes-sigs/controller-runtime@v0.22.3...v0.22.4)

---
updated-dependencies:
- dependency-name: sigs.k8s.io/controller-runtime
  dependency-version: 0.22.4
  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>
Signed-off-by: Rudrakh Panigrahi <rudrakh97@gmail.com>

* build(deps): bump softprops/action-gh-release from 2.4.1 to 2.4.2 in the actions group across 1 directory (#7461)

build(deps): bump softprops/action-gh-release

Bumps the actions group with 1 update in the / directory: [softprops/action-gh-release](https://github.com/softprops/action-gh-release).

Updates `softprops/action-gh-release` from 2.4.1 to 2.4.2
- [Release notes](https://github.com/softprops/action-gh-release/releases)
- [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md)
- [Commits](softprops/action-gh-release@6da8fa9...5be0e66)

---
updated-dependencies:
- dependency-name: softprops/action-gh-release
  dependency-version: 2.4.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: actions
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Signed-off-by: Rudrakh Panigrahi <rudrakh97@gmail.com>

* build(deps): bump github.com/envoyproxy/go-control-plane/envoy from 1.35.0 to 1.36.0 in /examples/grpc-ext-proc (#7471)

build(deps): bump github.com/envoyproxy/go-control-plane/envoy

Bumps [github.com/envoyproxy/go-control-plane/envoy](https://github.com/envoyproxy/go-control-plane) from 1.35.0 to 1.36.0.
- [Release notes](https://github.com/envoyproxy/go-control-plane/releases)
- [Changelog](https://github.com/envoyproxy/go-control-plane/blob/main/CHANGELOG.md)
- [Commits](envoyproxy/go-control-plane@envoy/v1.35.0...envoy/v1.36.0)

---
updated-dependencies:
- dependency-name: github.com/envoyproxy/go-control-plane/envoy
  dependency-version: 1.36.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Signed-off-by: Rudrakh Panigrahi <rudrakh97@gmail.com>

* build(deps): bump github.com/envoyproxy/go-control-plane/envoy from 1.35.0 to 1.36.0 in /examples/envoy-ext-auth (#7467)

build(deps): bump github.com/envoyproxy/go-control-plane/envoy

Bumps [github.com/envoyproxy/go-control-plane/envoy](https://github.com/envoyproxy/go-control-plane) from 1.35.0 to 1.36.0.
- [Release notes](https://github.com/envoyproxy/go-control-plane/releases)
- [Changelog](https://github.com/envoyproxy/go-control-plane/blob/main/CHANGELOG.md)
- [Commits](envoyproxy/go-control-plane@envoy/v1.35.0...envoy/v1.36.0)

---
updated-dependencies:
- dependency-name: github.com/envoyproxy/go-control-plane/envoy
  dependency-version: 1.36.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Signed-off-by: Rudrakh Panigrahi <rudrakh97@gmail.com>

* build(deps): bump github.com/envoyproxy/go-control-plane/envoy from 1.35.1-0.20251029084203-42a4a9261f66 to 1.36.0 in /examples/extension-server (#7468)

build(deps): bump github.com/envoyproxy/go-control-plane/envoy

Bumps [github.com/envoyproxy/go-control-plane/envoy](https://github.com/envoyproxy/go-control-plane) from 1.35.1-0.20251029084203-42a4a9261f66 to 1.36.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/envoy/v1.36.0)

---
updated-dependencies:
- dependency-name: github.com/envoyproxy/go-control-plane/envoy
  dependency-version: 1.36.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Signed-off-by: Rudrakh Panigrahi <rudrakh97@gmail.com>

* [release/v1.6] v1.6.0 release docs (#7475)

Signed-off-by: Rudrakh Panigrahi <rudrakh97@gmail.com>

---------

Signed-off-by: Maxime Brunet <max@brnt.mx>
Signed-off-by: Rudrakh Panigrahi <rudrakh97@gmail.com>
Signed-off-by: Huabing Zhao <zhaohuabing@gmail.com>
Signed-off-by: cong <q1875486458@gmail.com>
Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: zirain <zirain2009@gmail.com>
Signed-off-by: i.makarychev <makarichev.ivan@gmail.com>
Signed-off-by: i.makarychev <i.makarychev@tbank.ru>
Signed-off-by: davem-git <demathieu@gmail.com>
Signed-off-by: kkk777-7 <kota.kimura0725@gmail.com>
Signed-off-by: jukie <10012479+jukie@users.noreply.github.com>
Signed-off-by: Gonzalo Serrano <boikot@gmail.com>
Signed-off-by: Arko Dasgupta <arko@tetrate.io>
Signed-off-by: fabian4 <fabian.v.bao@gmail.com>
Co-authored-by: Maxime Brunet <max@brnt.mx>
Co-authored-by: Huabing (Robin) Zhao <zhaohuabing@gmail.com>
Co-authored-by: zirain <zirain2009@gmail.com>
Co-authored-by: 聪 <q1875486458@gmail.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Inode1 <makarichevivan@gmail.com>
Co-authored-by: davem-git <demathieu@gmail.com>
Co-authored-by: Kota Kimura <86363983+kkk777-7@users.noreply.github.com>
Co-authored-by: Isaac <10012479+jukie@users.noreply.github.com>
Co-authored-by: Gonzalo Serrano <boikot@gmail.com>
Co-authored-by: Arko Dasgupta <arkodg@users.noreply.github.com>
Co-authored-by: Fabian Bao <fabian.v.bao@gmail.com>
Co-authored-by: Ignasi Barrera <nacx@apache.org>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

4 participants