Skip to content

chore(deps): bump golang.org/x/net from 0.43.0 to 0.55.0#6097

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/go_modules/golang.org/x/net-0.55.0
Open

chore(deps): bump golang.org/x/net from 0.43.0 to 0.55.0#6097
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/go_modules/golang.org/x/net-0.55.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 3, 2026

Copy link
Copy Markdown
Contributor

Bumps golang.org/x/net from 0.43.0 to 0.55.0.

Commits
  • 7770ec4 go.mod: update golang.org/x dependencies
  • 4ece7b6 html: escape greater-than symbol in doctype identifiers
  • 08be507 html: improve Noah's Ark clause performance
  • a8fb2fe html: properly render fostered elements in foreign content
  • 0dc5b7a html: properly check namespace in "in body" any other end tag
  • a452f3c html: ignore duplicate attributes during tokenization
  • f865199 quic: fix appendMaxDataFrame erroneously accumulating sentLimit
  • 210ed3c quic: establish a "happened-before" relationship between stream write and read
  • ad8140e quic: fix buffer slicing when handling overlapping stream data
  • 23ee2ef http2: avoid API changes when built with go1.27
  • Additional commits viewable in compare view

Dependabot compatibility score

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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps [golang.org/x/net](https://github.com/golang/net) from 0.43.0 to 0.55.0.
- [Commits](golang/net@v0.43.0...v0.55.0)

---
updated-dependencies:
- dependency-name: golang.org/x/net
  dependency-version: 0.55.0
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Jul 3, 2026
@fluid-e2e-bot

fluid-e2e-bot Bot commented Jul 3, 2026

Copy link
Copy Markdown

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by:
Once this PR has been reviewed and has the lgtm label, please assign ronggu for approval by writing /assign @ronggu in a comment. For more information see:The Kubernetes Code Review Process.

The full list of commands accepted by this bot can be found here.

Details Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@fluid-e2e-bot

fluid-e2e-bot Bot commented Jul 3, 2026

Copy link
Copy Markdown

Hi @dependabot[bot]. Thanks for your PR.

I'm waiting for a fluid-cloudnative member to verify that this patch is reasonable to test. If it is, they should reply with /ok-to-test on its own line. Until that is done, I will not automatically test new commits in this PR, but the usual testing commands by org members will still work. Regular contributors should join the org to skip this step.

Once the patch is verified, the new status will be reflected by the ok-to-test label.

I understand the commands that are listed here.

Details

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository.

@sonarqubecloud

sonarqubecloud Bot commented Jul 3, 2026

Copy link
Copy Markdown

@cheyang

cheyang commented Jul 6, 2026

Copy link
Copy Markdown
Collaborator

/copilot review

@cheyang

cheyang commented Jul 6, 2026

Copy link
Copy Markdown
Collaborator

@gemini-code-assist /review

@gemini-code-assist gemini-code-assist Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Code Review

This pull request upgrades the Go toolchain version to 1.25.0 and updates several golang.org/x dependencies in go.mod and the vendor directory, including x/net, x/sys, x/tools, x/text, x/sync, and x/term. Key updates in the vendored packages include support for RFC 9218 prioritization and standard library wrapping in http2, Unicode 16.0.0 compatibility in idna, optimizations and nesting limits in the html parser, and various API enhancements in x/tools such as the new Cursor traversal API in ast/inspector. There are no review comments to address, and I have no additional feedback to provide.

Important

The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.

@cheyang

cheyang commented Jul 6, 2026

Copy link
Copy Markdown
Collaborator

Review: Dependency Bump — needs-work

This bump of golang.org/x/net from v0.43.0 to v0.55.0 is desirable from a security standpoint — it resolves multiple CVEs including:

However, CI is broken. The root cause is that golang.org/x/net v0.55.0 requires Go 1.25, which bumped the go directive in go.mod from 1.24.12 to 1.25.0. The project's CI workflows pin GO_VERSION: 1.24.12 with GOTOOLCHAIN=local, so all jobs fail with:

go: go.mod requires go >= 1.25.0 (running go 1.24.12; GOTOOLCHAIN=local)

To resolve, either:

  1. Update CI workflows to use Go 1.25.x (if the project is ready for that toolchain bump), or
  2. Pin golang.org/x/net to the latest version still compatible with Go 1.24 (likely v0.52.0 or similar — check the go directive in x/net's own go.mod).

Non-vendor file changes are limited to go.mod and go.sum — no unexpected modifications. DCO passes (Dependabot signs off automatically).

Comment thread go.mod
module github.com/fluid-cloudnative/fluid

go 1.24.12
go 1.25.0

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

The go directive moved from 1.24.12 to 1.25.0 because x/net v0.55.0 (and all bumped x/ siblings) now require Go 1.25. CI is still on Go 1.24.12 with GOTOOLCHAIN=local, so every build, lint, test, and e2e job fails with:

go: go.mod requires go >= 1.25.0 (running go 1.24.12; GOTOOLCHAIN=local)

Options:

  1. Upgrade CI to Go 1.25 first, then merge this PR.
  2. Target the latest x/net release that still supports Go 1.24 (pick a version that declares go 1.23 or go 1.24 rather than go 1.25).

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 Pull requests that update Go code needs-ok-to-test

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant