Reducing cgo/syscall overhead on Windows by ~20%, down to ~30ns ⚡ go.dev/cl/824784 #golang
Gerrit Code Review
go.dev
Quim Muntal
@qmuntal.bsky.social
Father, Catalan, Go Windows maintainer. Go @ Microsoft
Reducing cgo/syscall overhead on Windows by ~20%, down to ~30ns ⚡ go.dev/cl/824784 #golang
Gerrit Code Review
go.dev
Microsoft Agent Framework for Go is now in public preview. Agents, multi-agent workflows, MCP, tools, observability, and support for multiple model providers, all in idiomatic Go. 🚀 devblogs.microsoft.com/go/microsoft... #golang
Microsoft Agent Framework for Go public preview
Microsoft Agent Framework for Go is entering public preview, bringing Agent Framework concepts to Go developers building agents and multi-agent workflows.
devblogs.microsoft.com
Every engineering team faces challenges at scale - but what do those look like inside Microsoft? 🌍 @gdams.bsky.social will pull back the curtain on how Microsoft uses Go at global scale and the lessons learned along the way. Grab your ticket and catch this session live! 🎟️ gophercon.com #golang
In 2020, OpenSSL had a vuln related to the signature_algorithms_cert ext. openssl-library.org/news/secadv/... Palo Alto apparently "solved" this in their IPS by blocking connections with "unknown" algs in sigalg_cert. Six years later, we can't add ML-DSA to sigalg_cert in Go. sigalg_cert is dead.
crypto/tls: TLS 1.3 handshake timeout with tip, Go 1.26 can connect successfully · Issue #79626 · golang/go
What version of Go are you using (go version)? $ go version go version go1.27-devel_bfbbe9667e Fri May 22 15:49:08 2026 -0700 darwin/arm64 Does this issue reproduce with the latest release? No What...
github.com
🔥 Replaced the fixed Windows callback table in the #golang runtime with a growable design. No limits, smaller binaries, and ~6,000 lines of auto‑generated assembly gone. go.dev/cl/788700
Gerrit Code Review
go.dev
Sometimes the #golang toolchain is slower on Windows not for the usual reasons, but simply because it’s largely shaped by Unix-first assumptions. Case in point: I just sent a change that speeds up some warm‑cache build commands on Windows by ~40%… by modifying 4 lines of code: go.dev/cl/787340
Gerrit Code Review
go.dev
Just deleted 300+ lines of hardcore C from the #golang runtime’s cgo package. I was halfway through porting them to pure Go… then realized they are not needed anymore 😄 go.dev/cl/756800
Gerrit Code Review
go.dev
Compiler nerd joy: making some #golang switch statements ~2.5x faster ⚡ go.dev/cl/756340
Gerrit Code Review
go.dev
C files in Go's runtime/cgo package when I open it in VS Code go-review.googlesource.com/c/go/+/708035 #golang
homer simpson from the simpsons is standing in front of a grassy field .
ALT: homer simpson from the simpsons is standing in front of a grassy field .
media.tenor.com
Spotlight on @qmuntal.bsky.social 's lightning talk: Go-ing Native: Supercharging Windows Support In Go. youtu.be/NVSZ67gZhK0?... #gopherconEU #golang
Lightning Talk: Go-ing Native: Supercharging Windows Support In Go - Quim Muntal | GopherCon EU 2025
YouTube video by GopherCon Europe
youtu.be
I don't think they post here, but excited to be talking about what the Go Security team does, and why (hopefully) you don't hear much about us, at GopherCon UK in August.
I'll be attending #gopherconEU this week, where I'll give a lightning talk! Ping me if you will be there and want to chat about Windows (or about anything else)
Happy to say that I'll be speaking at @gophercon.com 2025 about TypeScript's port to Go! There's a lot of interesting stuff to talk about, from the effort's inception, the actual process of porting, and all of the Go stuff we learned along the way (gotchas, perf). www.gophercon.com/agenda/sessi...
Found this tonight and it's a really solid read on the Go runtime. Definitely a long post but it's got a lot of useful info in it. Learned a lot about things that I haven't really dug into before from it. nghiant3223.github.io/2025/04/15/g...
Go Scheduler
↑ ↓
nghiant3223.github.io
New experimental garbage collector for Go programs! github.com/golang/go/is...
runtime: green tea garbage collector · Issue #73581 · golang/go
Green Tea 🍵 Garbage Collector Authors: Michael Knyszek, Austin Clements Updated: 2 May 2025 This issue tracks the design and implementation of the Green Tea garbage collector. As of the last update...
github.com
Today we're thrilled to announce our effort to port the TypeScript compiler and language service to native code, gaining a 10x speed boost in build times and editor responsiveness! devblogs.microsoft.com/typescript/t...
A 10x Faster TypeScript - TypeScript
Embarking on a native port of the existing TypeScript compiler and toolset to achieve a 10x performance speed-up.
devblogs.microsoft.com
Microsoft Go 1.24 ships with many new FIPS-140 related features. Here's a closer look at the changes. devblogs.microsoft.com/go/go-1-24-f... #golang
Microsoft Go 1.24 FIPS changes
Microsoft Go 1.24 ships with many new FIPS-140 related features. Here's a closer look at the upcoming changes.
devblogs.microsoft.com
It's been almost 1 year without submitting a Go linker change. My head is hurting hard, but managed to put Darwin's GOT (Global Offset Table) symbols into the read-only __DATA_CONST section: go-review.googlesource.com/c/go/+/644055
Gerrit Code Review
go-review.googlesource.com
🎊 Go 1.24 Release Candidate 1 is released! 🏃♀️ Run it in dev! Run it in prod! File bugs! go.dev/issue/new 🔈 Announcement: groups.google.com/g/golang-ann... 📦 Download: go.dev/dl/#go1.24rc1
Here are the slides for my talk at London Gophers about what's coming in #golang 1.24! With a special thanks to @bboreham.bsky.social for spotting that I forgot swiss maps 🙈
What's coming in Go 1.24
What's coming in Go 1.24 London Gophers, 2024 - Daniel Martí @mvdan.cc
docs.google.com
Proposed moving x/crypto/hkdf to the standard library one year ago: github.com/golang/go/is... 📜 #golang 1.24 will ship with a new package: crypto/hkdf 🥳 Thanks @filippo.abyssdomain.expert and Daniel McCarney for driving the API design and implementing it 👏
crypto/hkdf: add package · Issue #61477 · golang/go
ImportantNov 20, 2024: The latest version of the proposal is here I propose to move the golang.org/x/crypto/hkdf package into the standard library with the name crypto/hkdf. golang.org/x/crypto/hkd...
github.com
Three improvements I've made to os/user.Current for #golang 1.24 (Windows-only): * no longer takes 1-120s when using Active Directory, it's now always in the order of ms * can be used on Windows Nano Server * can be used on impersonated threads