-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
update go 1.22.5 => 1.23.0 #3902
Conversation
Good stuff! This will also fix two supply chain vulnerabilities (fix version 1.22.7) I'm not qualified to say whether they apply at all to esbuild, but they do get picked up by the vulnerability scanner in our CI |
Yes please, let's release a patch for this. Thanks!
|
If possible, I'd encourage going one step further and updating to 1.23.1 instead of 1.23.0 Doing that would also get rid of In any case, thanks for preparing the patch! |
In version of the go compiler prior to
1.23.0
,esbuild-wasm
can crash with the following stack trace:This was due to a bug in
memchr
which was incorrectly treating memory addresses as signed integers.It's now fixed in Go
1.23.0
: golang/go@90c6558Original issue on the golang repository golang/go#65571