chore(deps): update envoy 1.34.x to v1.34.13 (v1.34)#1786
Merged
Conversation
3037274 to
a874b18
Compare
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Signed-off-by: Tam Mach <tam.mach@cilium.io>
a874b18 to
9013ab3
Compare
Contributor
Author
Edited/Blocked NotificationRenovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR. You can manually request rebase by checking the rebase/retry box above. |
[ upstream commit 54eda58 ] This commit adds support for specifying wildcard('*') anywhere in the server names match pattern. This allow users to write more compressed network policies. With this change users can now write allowed server names as: - `*.cilium.io` matching all first-level subdomains of `cilium.io`: - Matches: `www.cilium.io`, `blog.cilium.io` - Does NOT match: `cilium.io`, `foo.bar.cilium.io`, `kubernetes.io` - `*cilium.io` matching `cilium.io` and any domain ending with the `cilium.io` suffix: - Matches: `cilium.io`, `sub-cilium.io`, `subcilium.io` - Does NOT match: `www.cilium.io`, `blog.cilium.io` - `sub*.cilium.io` matching subdomains of `cilium.io` that start with the "sub" prefix: - Matches: `sub.cilium.io`, `subdomain.cilium.io` - Does NOT match: `www.cilium.io`, `blog-sub.cilium.io`, `blog.sub.cilium.io`, `cilium.io` - `**.cilium.io` matching all subdomains of `cilium.io` at any depth: - Matches: `www.cilium.io`, `test.app.cilium.io` - Does NOT match: `cilium.io` SNI match patterns are now implemented using regular expressions. The required regex is derived and compiled once during xDS configuration update. If the match pattern doesn't contain any wildcard specifier the implementation relies on explicit full string match as before. Signed-off-by: Deepesh Pathak <deepesh.pathak@isovalent.com>
[ upstream commit 38f2469 ] This commit adds regex pattern validation to the `server_names` field of PortNetworkPolicyRule type. The validation pattern (`^([-a-zA-Z0-9_*]+[.]?)+"$`) is in alignment with the supported match pattern as defined for the corresponding k8s type in cilium/cilium. Signed-off-by: Deepesh Pathak <deepesh.pathak@isovalent.com>
[ upstream commit f97ae52 ] Use validating regular expression that does not allow consecutive wildcard specifiers ('*'), except for two ('**') as multiple subdomain wildcard specifier that does not combine with any specific characters. Add test to make sure patterns where multiple subdomain wildcard pattern is not delineated with the domain separator ('.') fail validation. Protobuf validation pattern is the same except for the explicit anchoring that is needed for protoc-gen-validate, but not for the isValid() that uses RE2::FullMatch(). PGV pattern does not allow for empty strings, while in isValid() we explicitly allow empty patterns for testing purposes. Signed-off-by: Jarno Rajahalme <jarno@isovalent.com> Signed-off-by: Deepesh Pathak <deepesh.pathak@isovalent.com>
Member
|
Backport #1747 to fix the CI failure 🤞 |
sayboras
approved these changes
Mar 11, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
1.34.12→1.34.13v1.34.12→v1.34.13Release Notes
envoyproxy/envoy (envoyproxy/envoy)
v1.34.13Compare Source
Summary of changes:
Security fixes:
Bug fix:
Dependency updates:
google/gurl).Docker images:
https://hub.docker.com/r/envoyproxy/envoy/tags?page=1&name=v1.34.13
Docs:
https://www.envoyproxy.io/docs/envoy/v1.34.13/
Release notes:
https://www.envoyproxy.io/docs/envoy/v1.34.13/version_history/v1.34/v1.34.13
Full changelog:
envoyproxy/envoy@v1.34.12...v1.34.13
Signed-off-by: Ryan Northey ryan@synca.io
Signed-off-by: Boteng Yao boteng@google.com
Configuration
📅 Schedule: Branch creation - "on monday" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about these updates again.
This PR was generated by Mend Renovate. View the repository job log.