Skip to content

fix(deps): update module golang.org/x/tools to v0.42.0 (main)#14415

Open
renovate-sh-app[bot] wants to merge 1 commit intomainfrom
deps-update/main-golang.org-x-tools-0.x
Open

fix(deps): update module golang.org/x/tools to v0.42.0 (main)#14415
renovate-sh-app[bot] wants to merge 1 commit intomainfrom
deps-update/main-golang.org-x-tools-0.x

Conversation

@renovate-sh-app
Copy link
Contributor

@renovate-sh-app renovate-sh-app bot commented Feb 19, 2026

This PR contains the following updates:

Package Change Age Confidence
golang.org/x/tools v0.41.0v0.42.0 age confidence

Warning

Some dependencies could not be looked up. Check the warning logs for more information.


Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM ( * 0-3 * * * ) (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 this update again.


  • If you want to rebase/retry this PR, check this box

Need help?

You can ask for more help in the following Slack channel: #proj-renovate-self-hosted. In that channel you can also find ADR and FAQ docs in the Resources section.

@renovate-sh-app
Copy link
Contributor Author

ℹ️ Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 2 additional dependencies were updated

Details:

Package Change
golang.org/x/net v0.49.0 -> v0.50.0
golang.org/x/mod v0.32.0 -> v0.33.0

@renovate-sh-app renovate-sh-app bot requested a review from a team as a code owner February 19, 2026 02:09
Copy link

@cursor cursor bot left a comment

Choose a reason for hiding this comment

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

Cursor Bugbot has reviewed your changes and found 1 potential issue.

Bugbot Autofix is ON. A Cloud Agent has been kicked off to fix the reported issue.

@cursor
Copy link

cursor bot commented Feb 19, 2026

Bugbot Autofix prepared fixes for 1 of the 1 bugs found in the latest run.

  • ✅ Fixed: Nil parser panic for HTTP/2 frame types 0xa-0xf
    • Added nil check in typeFrameParser to fall back to parseUnknownFrame for uninitialized array entries at indices 10-15, preventing the nil pointer dereference panic when receiving frames with types in that range.

Create PR

Or push these changes by commenting:

@cursor push 1e9ffb0c6d
Preview (1e9ffb0c6d)
diff --git a/vendor/golang.org/x/net/http2/frame.go b/vendor/golang.org/x/net/http2/frame.go
--- a/vendor/golang.org/x/net/http2/frame.go
+++ b/vendor/golang.org/x/net/http2/frame.go
@@ -145,7 +145,9 @@
 
 func typeFrameParser(t FrameType) frameParser {
 	if int(t) < len(frameParsers) {
-		return frameParsers[t]
+		if f := frameParsers[t]; f != nil {
+			return f
+		}
 	}
 	return parseUnknownFrame
 }

Copy link
Contributor

@aknuds1 aknuds1 left a comment

Choose a reason for hiding this comment

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

golang.org/x/net v0.50.0 has a bug.

| datasource | package            | from    | to      |
| ---------- | ------------------ | ------- | ------- |
| go         | golang.org/x/tools | v0.41.0 | v0.42.0 |


Signed-off-by: renovate-sh-app[bot] <219655108+renovate-sh-app[bot]@users.noreply.github.com>
@renovate-sh-app renovate-sh-app bot force-pushed the deps-update/main-golang.org-x-tools-0.x branch from 3d3f25c to 6db1f02 Compare February 19, 2026 08:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant

Comments