Go 1.24 已发布!

原文:https://go.dev/blog/go1.24

Go 1.24 is released! - Go 1.24 已发布!

Junyang Shao, on behalf of the Go team

Junyang Shao,代表 Go 团队

11 February 2025

2025 年 2 月 11 日

Today the Go team is excited to release Go 1.24, which you can get by visiting the download page.

​ 今天,Go 团队很高兴发布 Go 1.24,您可以通过访问 下载页面 获取。

Go 1.24 comes with many improvements over Go 1.23. Here are some of the notable changes; for the full list, refer to the release notes.

​ Go 1.24 相较于 Go 1.23 有许多改进。以下是一些显著变化;完整列表请参阅 发布说明.

语言变化 Language changes

Go 1.24 now fully supports generic type aliases: a type alias may be parameterized like a defined type. See the language spec for details.

​ Go 1.24 现已完全支持 泛型类型别名:类型别名可以像定义类型那样带参数。详细信息请参阅 语言规范.

性能改进 Performance improvements

Several performance improvements in the runtime have decreased CPU overhead by 2–3% on average across a suite of representative benchmarks. These improvements include a new builtin map implementation based on Swiss Tables, more efficient memory allocation of small objects, and a new runtime-internal mutex implementation.

​ 运行时的几项性能改进使得在一系列代表性基准测试中,CPU 开销平均降低了 2–3%。这些改进包括基于 Swiss Tables 的全新内置 map 实现、更高效的小对象内存分配,以及全新的运行时内部互斥锁实现.

工具改进 Tool improvements

  • The go command now provides a mechanism for tracking tool dependencies for a module. Use go get -tool to add a tool directive to the current module. Use go tool [tool name] to run the tools declared with the tool directive. Read more on the go command in the release notes.
  • go 命令现在提供了一种跟踪模块工具依赖的机制。使用 go get -tool 为当前模块添加 tool 指令,使用 go tool [tool name] 来运行通过 tool 指令声明的工具。更多信息请阅读发布说明中的 go 命令.
  • The new test analyzer in go vet subcommand reports common mistakes in declarations of tests, fuzzers, benchmarks, and examples in test packages. Read more on vet in the release notes.
  • go vet 子命令中的新 test 分析器会报告测试包中测试、模糊测试、基准测试和示例声明中的常见错误。更多信息请阅读发布说明中的 vet.

标准库新增内容 Standard library additions

改进的 WebAssembly 支持 Improved WebAssembly support

Go 1.24 adds a new go:wasmexport directive for Go programs to export functions to the WebAssembly host, and supports building a Go program as a WASI reactor/library. Read more on WebAssembly in the release notes.

​ Go 1.24 新增了 go:wasmexport 指令,使 Go 程序可以将函数导出到 WebAssembly 宿主,并支持将 Go 程序构建为 WASI 反应器/库。更多信息请阅读发布说明中的 WebAssembly.


Please read the Go 1.24 release notes for the complete and detailed information. Don’t forget to watch for follow-up blog posts that will go in more depth on some of the topics mentioned here!

​ 请阅读 Go 1.24 发布说明 以获取完整详细的信息。别忘了关注后续博客文章,它们将更深入地探讨此处提到的一些主题!

Thank you to everyone who contributed to this release by writing code and documentation, reporting bugs, sharing feedback, and testing the release candidates. Your efforts helped to ensure that Go 1.24 is as stable as possible. As always, if you notice any problems, please file an issue.

​ 感谢所有通过编写代码和文档、报告错误、分享反馈以及测试候选版本为此次发布做出贡献的人。您们的努力帮助确保 Go 1.24 尽可能稳定。如往常一样,如果您发现任何问题,请 提交问题.

Enjoy Go 1.24!

祝您享受 Go 1.24!

最后修改 March 31, 2025: 更新 (8af5350a)