惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

G
Google Developers Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
量子位
C
Check Point Blog
B
Blog RSS Feed
Y
Y Combinator Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
A
About on SuperTechFans
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - 聂微东
阮一峰的网络日志
阮一峰的网络日志
人人都是产品经理
人人都是产品经理
小众软件
小众软件
Last Week in AI
Last Week in AI
博客园 - 【当耐特】
GbyAI
GbyAI
The Cloudflare Blog
博客园 - 叶小钗
S
SegmentFault 最新的问题
博客园 - Franky
Engineering at Meta
Engineering at Meta
F
Fortinet All Blogs
B
Blog
Jina AI
Jina AI

Erlang/OTP | News

Björn on BEAM on the BEAM There, Done That Podcast - Erlang/OTP Native Records on the Podcast BEAM There, Done That - Erlang/OTP Erlang/OTP 29.0 - Erlang/OTP Erlang/OTP 28.5 Release - Erlang/OTP Erlang/OTP 29.0 Release Candidate 3 - Erlang/OTP Erlang/OTP 29.0 Release Candidate 2 - Erlang/OTP Erlang/OTP 28.4 Release - Erlang/OTP Erlang/OTP 29.0 Release Candidate 1 - Erlang/OTP Erlang/OTP 28.3 Release - Erlang/OTP Erlang/OTP 28.1 Release - Erlang/OTP Erlang/OTP 28.0 - Erlang/OTP
Erlang/OTP 29.1 Release - Erlang/OTP
Henrik Nord · 2026-09-16 · via Erlang/OTP | News

Erlang/OTP 29.1 is the firest maintenance patch package for OTP 29, with mostly bug fixes as well as a few improvements.

POTENTIAL INCOMPATIBILITIES #

When beam_lib returns an error tuple, the filename in the information tuple is now a list of characters instead of an atom.

Example:

1> beam_lib:chunks(code:which(lists), [“nope”]). {error,beam_lib, {missing_chunk,”…/git/otp/lib/stdlib/ebin/lists.beam”, “nope”}} The reason for this change is that a long file name is not guaranteed to fit in an atom. Applications or tools that do deep inspection of the beam_lib errors (not recommended) will need to be updated.

OTP-29.1 Improvements and New Features A new versions module has been added to the runtime_tools application containing functions for, e.g., comparing, versions that adhere to the OTP Versions Scheme.

The documentation of the OTP Versions Scheme has also been improved.

Crypto #

The documentation of the crypto module now contains runnable examples for most functions. The examples are verified by the crypto test suite, so they always match actual behavior.