Skip to content

chore: Bump the security group across 1 directory with 3 updates#440

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/security-2f5d6b0a64
Open

chore: Bump the security group across 1 directory with 3 updates#440
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/security-2f5d6b0a64

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 8, 2026

Copy link
Copy Markdown
Contributor

Bumps the security group with 3 updates in the / directory: github.com/projectcontour/contour, github.com/vmware-tanzu/velero and go.etcd.io/etcd/client/v3.

Updates github.com/projectcontour/contour from 1.33.4 to 1.33.5

Release notes

Sourced from github.com/projectcontour/contour's releases.

v1.33.5

We are delighted to present version v1.33.5 of Contour, our layer 7 HTTP reverse proxy for Kubernetes clusters.

All Changes

Security fix for GHSA-g3xr-5w5j-w4q4

Fixes a bug where configuring fallback certificate with JWT verification in HTTPProxy allowed requests without TLS SNI or with unrecognized SNI to bypass JWT verification. Contour now rejects this invalid configuration.

Other Changes

Installing and Upgrading

For a fresh install of Contour, consult the getting started documentation.

To upgrade an existing Contour installation, please consult the upgrade documentation.

Compatible Kubernetes Versions

Contour v1.33.5 is tested against Kubernetes 1.32 through 1.34.

Are you a Contour user? We would love to know!

If you're using Contour and want to add your organization to our adopters list, please visit this page. If you prefer to keep your organization name anonymous but still give us feedback into your usage and scenarios for Contour, please post on this GitHub thread.

Commits
  • 2713ad0 Update Contour Docker image to v1.33.5.
  • 4cb1dcb HTTPProxy: reject fallback certificate combined with JWT verification
  • 9b74896 release-1.33: Bump to go 1.25.10 (#7565)
  • 9115d51 release-1.33: bump to golang.org/x/net v0.55.0 (#7561)
  • cd950d0 build(deps): bump the k8s-dependencies group with 4 updates (#7548)
  • d420a7f build(deps): bump the k8s-dependencies group with 4 updates (#7517)
  • afb42aa release-1.33: Bump to go 1.25.9 (#7524)
  • See full diff in compare view

Updates github.com/vmware-tanzu/velero from 1.18.0 to 1.18.1

Release notes

Sourced from github.com/vmware-tanzu/velero's releases.

v1.18.1

Download

https://github.com/vmware-tanzu/velero/releases/tag/v1.18.1

Container Image

velero/velero:v1.18.1

Documentation

https://velero.io/docs/v1.18/

Upgrading

https://velero.io/docs/v1.18/upgrade-to-1.18/

All Changes

v1.18.1-rc.2

v1.18.1

Download

https://github.com/vmware-tanzu/velero/releases/tag/v1.18.1-rc.2

Container Image

velero/velero:v1.18.1-rc.2

Documentation

https://velero.io/docs/v1.18/

Upgrading

... (truncated)

Commits
  • 26ef8fa Modify the E2E version comparison logic. (#9787)
  • bf7666f Merge pull request #9786 from blackpiglet/jxun/1.18/bump_k8s_version_to_0.33.11
  • 47b3192 Bump k8s library versions to v0.33.11
  • 949b020 Merge pull request #9781 from blackpiglet/jxun/1.18/bump_deps
  • 5e3cb1e Bump Velero dependencies to latest version.
  • ce360b4 Use string.Builder to concatenate string in loop.
  • 5de7f61 Enlarge the goreleaser timeout to 60m. (#9777)
  • 383c796 Merge pull request #9774 from blackpiglet/xj014661/1.18/CVE-2026-27141
  • d245d3b Bump golang.net/x/net to 0.51.0 to fix CVE-2026-27141
  • bd42e36 Merge pull request #9766 from blackpiglet/xj014661/1.18/update_windows_docker...
  • Additional commits viewable in compare view

Updates go.etcd.io/etcd/client/v3 from 3.6.11 to 3.6.12

Release notes

Sourced from go.etcd.io/etcd/client/v3's releases.

v3.6.12

Please check out CHANGELOG for a full list of changes. And make sure to read upgrade guide before upgrading etcd (there may be breaking changes).

For installation guides, please check out operating etcd. Latest support status for common architectures and operating systems can be found at supported platforms.

Linux
ETCD_VER=v3.6.12
choose either URL
GOOGLE_URL=https://storage.googleapis.com/etcd
GITHUB_URL=https://github.com/etcd-io/etcd/releases/download
DOWNLOAD_URL=${GOOGLE_URL}
rm -f /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz
rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test
curl -L ${DOWNLOAD_URL}/${ETCD_VER}/etcd-${ETCD_VER}-linux-amd64.tar.gz -o /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz
tar xzvf /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz -C /tmp/etcd-download-test --strip-components=1 --no-same-owner
rm -f /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz
/tmp/etcd-download-test/etcd --version
/tmp/etcd-download-test/etcdctl version
/tmp/etcd-download-test/etcdutl version
start a local etcd server
/tmp/etcd-download-test/etcd
write,read to etcd
/tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 put foo bar
/tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 get foo

macOS (Darwin)
ETCD_VER=v3.6.12
choose either URL
GOOGLE_URL=https://storage.googleapis.com/etcd
GITHUB_URL=https://github.com/etcd-io/etcd/releases/download
DOWNLOAD_URL=${GOOGLE_URL}
rm -f /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test
curl -L ${DOWNLOAD_URL}/${ETCD_VER}/etcd-${ETCD_VER}-darwin-amd64.zip -o /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
unzip /tmp/etcd-${ETCD_VER}-darwin-amd64.zip -d /tmp && rm -f /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
mv /tmp/etcd-${ETCD_VER}-darwin-amd64/* /tmp/etcd-download-test && rm -rf mv /tmp/etcd-${ETCD_VER}-darwin-amd64
</tr></table>

... (truncated)

Commits
  • 90b034a version: bump up to 3.6.12
  • 8b95963 Merge pull request #21811 from Deln0r/release-3.6-backport-21666
  • 576a6a0 server: allow non-admin maintenance status
  • 2286051 Merge pull request #21794 from vivekpatani/cherry-pick-21788-release-3.6
  • e1468c8 client/pkg/fileutil: use os.Getuid() to skip TestIsDirWriteable as root
  • aaf38f8 Merge pull request #21768 from silentred/release-3.6-etcdutl-invalid-datadir
  • 449e34b etcdutl: validate data file path and return consistent errors instead of pani...
  • 00e1b15 Merge pull request #21736 from silentred/release-3.6-bugfix-memberupdate-learner
  • 49cd4a4 bugfix: MemberUpdate implicitly and unexpectedly promotes a learner
  • 9bbe31b Merge pull request #21727 from silentred/release-3.6-bump-go-1.25.10
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the security group with 3 updates in the / directory: [github.com/projectcontour/contour](https://github.com/projectcontour/contour), [github.com/vmware-tanzu/velero](https://github.com/vmware-tanzu/velero) and [go.etcd.io/etcd/client/v3](https://github.com/etcd-io/etcd).


Updates `github.com/projectcontour/contour` from 1.33.4 to 1.33.5
- [Release notes](https://github.com/projectcontour/contour/releases)
- [Changelog](https://github.com/projectcontour/contour/blob/main/RELEASES.md)
- [Commits](projectcontour/contour@v1.33.4...v1.33.5)

Updates `github.com/vmware-tanzu/velero` from 1.18.0 to 1.18.1
- [Release notes](https://github.com/vmware-tanzu/velero/releases)
- [Changelog](https://github.com/velero-io/velero/blob/main/CHANGELOG.md)
- [Commits](velero-io/velero@v1.18.0...v1.18.1)

Updates `go.etcd.io/etcd/client/v3` from 3.6.11 to 3.6.12
- [Release notes](https://github.com/etcd-io/etcd/releases)
- [Commits](etcd-io/etcd@v3.6.11...v3.6.12)

---
updated-dependencies:
- dependency-name: github.com/projectcontour/contour
  dependency-version: 1.33.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: security
- dependency-name: github.com/vmware-tanzu/velero
  dependency-version: 1.18.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: security
- dependency-name: go.etcd.io/etcd/client/v3
  dependency-version: 3.6.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: security
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file go type::chore labels Jun 8, 2026
@dependabot dependabot Bot requested a review from a team as a code owner June 8, 2026 05:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file go type::chore

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants