Skip to content

build(deps): bump golang.org/x/net from 0.48.0 to 0.55.0 - #8

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

build(deps): bump golang.org/x/net from 0.48.0 to 0.55.0#8
dependabot[bot] wants to merge 1 commit into
mainfrom
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

Bumps golang.org/x/net from 0.48.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.48.0 to 0.55.0.
- [Commits](golang/net@v0.48.0...v0.55.0)

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

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
emmanuelm41 pushed a commit that referenced this pull request Jul 30, 2026
* build(deps): update all Go module dependencies

Direct:
- github.com/btcsuite/btcd/btcec/v2  v2.3.6  -> v2.5.0
- github.com/stretchr/testify        v1.10.0 -> v1.11.1

Indirect (pulled in via zondax/ledger-go -> zondax/golem):
- github.com/zondax/golem            v0.27.0 -> v0.30.0
- github.com/decred/.../secp256k1/v4 v4.4.0  -> v4.4.1
- go.uber.org/zap                    v1.27.0 -> v1.28.0
- golang.org/x/net                   v0.48.0 -> v0.57.0  (supersedes #8)
- golang.org/x/sys                   v0.39.0 -> v0.47.0
- golang.org/x/text                  v0.32.0 -> v0.40.0
- google.golang.org/grpc             v1.79.3 -> v1.82.1  (supersedes #9)
- google.golang.org/protobuf         v1.36.10 -> v1.36.11
- google.golang.org/genproto/googleapis/rpc bumped to 20260727163830

The go directive moves 1.24.0 -> 1.25.0 and the explicit `toolchain
go1.24.6` line drops out: grpc 1.82.1, x/net 0.57.0, golem 0.30.0 and
btcec 2.5.0 all declare `go 1.25`, so the floor is forced by the
dependencies rather than chosen here. Dependabot's own PRs would have
required the same bump.

github.com/rogpeppe/go-internal is a new indirect entry - testify 1.11
uses go-internal/fmtsort.

* ci: install golangci-lint via `go install` and quiet goconst on tests

`make install-lint` has been failing on every PR, so the Lint step never
ran:

    golangci/golangci-lint info found version: 2.12.2 for v2.12.2/linux/amd64
    golangci/golangci-lint err hash_sha256_verify checksum for
      golangci-lint-2.12.2-linux-amd64.tar.gz did not verify
    make: *** [Makefile:3: install-lint] Error 1

The release assets are fine - I checked. From v2.12.0 onward golangci-lint
started publishing `<tarball>.tar.gz.sbom.json` entries alongside the
tarballs in checksums.txt, and install.sh resolves the expected hash with a
plain `grep <tarball-name>`. The .sbom.json filename *contains* the tarball
name, so that grep now matches two lines, the expected checksum resolves to
two values, and verification can never succeed. v2.11.4 has no .sbom.json
entries (50 lines, 0 sbom) and installs fine; v2.12.2 has 77 lines and 27
sbom entries and does not:

    grep 'linux-amd64.tar.gz' checksums.txt
      v2.11.4 -> 1 match
      v2.12.2 -> 2 matches   (tarball + tarball.sbom.json)

That is upstream's to fix and will affect every future 2.12+ release, so
pinning to 2.11.4 would freeze the linter indefinitely. Install via
`go install` instead, which does not touch install.sh at all, pinned to
v2.12.2 and overridable via GOLANGCI_LINT_VERSION.

With the linter actually running again, 2.12.2 reports 3 goconst findings
that 2.11.4 did not - all in _test.go files, all test fixtures. The clearest
is Test_RemoveDuplicates, which feeds a list whose repetition is the very
thing under test; hoisting those literals into constants would obscure the
test. Set goconst.ignore-tests instead of contorting the fixtures.

Verified locally: `golangci-lint run` (2.12.2) reports 0 issues, `make build`
and `make check-modtidy` both clean.
@dependabot @github

dependabot Bot commented on behalf of github Jul 30, 2026

Copy link
Copy Markdown
Author

Looks like golang.org/x/net is up-to-date now, so this is no longer needed.

@dependabot dependabot Bot closed this Jul 30, 2026
@dependabot
dependabot Bot deleted the dependabot/go_modules/golang.org/x/net-0.55.0 branch July 30, 2026 12:11
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants