Skip to content

Commit 101dd4d

Browse files
author
Erlang/OTP
committed
Prepare release
1 parent c02c199 commit 101dd4d

19 files changed

Lines changed: 146 additions & 15 deletions

File tree

erts/doc/notes.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,24 @@ limitations under the License.
2121

2222
This document describes the changes made to the ERTS application.
2323

24+
## Erts 15.2.7.9
25+
26+
### Fixed Bugs and Malfunctions
27+
28+
- Fixed bug in `ets:member/2` for `set`, `bag` and `duplicate_bag`. The bug could (maybe) lead to `ets:member` spuriously returning false for a value which is actually a member for a table that faces high insert load.
29+
30+
Own Id: OTP-20152 Aux Id: [PR-11115]
31+
32+
- A buffer overflow error when parsing SCTP ERROR or ABORT chunks has been fixed.
33+
34+
This could lead to stack corruption and VM crash, but ultimately with hard work by an attacker be refined into maybe even remote code execution.
35+
36+
Own Id: OTP-20165 Aux Id: [PR-1234], GHSA-6f4f-chj5-5g97, [CVE-2026-49759]
37+
38+
[PR-11115]: https://github.com/erlang/otp/pull/11115
39+
[PR-1234]: https://github.com/erlang/otp/pull/1234
40+
[CVE-2026-49759]: https://nvd.nist.gov/vuln/detail/2026-49759
41+
2442
## Erts 15.2.7.8
2543

2644
### Fixed Bugs and Malfunctions

erts/vsn.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# %CopyrightEnd%
1919
#
2020

21-
VSN = 15.2.7.8
21+
VSN = 15.2.7.9
2222

2323
# Port number 4365 in 4.2
2424
# Port number 4366 in 4.3

lib/dialyzer/doc/notes.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,17 @@ limitations under the License.
2121

2222
This document describes the changes made to the Dialyzer application.
2323

24+
## Dialyzer 5.3.1.1
25+
26+
### Fixed Bugs and Malfunctions
27+
28+
- Fix Dialyzer crash with overriding built-in types
29+
30+
Own Id: OTP-19631 Aux Id: [GH-11093], [PR-11096]
31+
32+
[GH-11093]: https://github.com/erlang/otp/issues/11093
33+
[PR-11096]: https://github.com/erlang/otp/pull/11096
34+
2435
## Dialyzer 5.3.1
2536

2637
### Fixed Bugs and Malfunctions

lib/dialyzer/vsn.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
DIALYZER_VSN = 5.3.1
1+
DIALYZER_VSN = 5.3.1.1

lib/diameter/doc/notes.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,17 @@ limitations under the License.
2121

2222
Releases are listed in reverse chronological order, most recent first.
2323

24+
## diameter 2.4.1.2
25+
26+
### Fixed Bugs and Malfunctions
27+
28+
- Fixed return value documentation of `diameter:service_info(SvcName, statistics)`
29+
30+
Own Id: OTP-20150 Aux Id: [GH-11105], [PR-11146]
31+
32+
[GH-11105]: https://github.com/erlang/otp/issues/11105
33+
[PR-11146]: https://github.com/erlang/otp/pull/11146
34+
2435
## diameter 2.4.1.1
2536

2637
### Fixed Bugs and Malfunctions

lib/diameter/vsn.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@
1717
# %CopyrightEnd%
1818

1919
APPLICATION = diameter
20-
DIAMETER_VSN = 2.4.1.1
20+
DIAMETER_VSN = 2.4.1.2
2121
APP_VSN = $(APPLICATION)-$(DIAMETER_VSN)$(PRE_VSN)

lib/erl_interface/doc/notes.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,17 @@ limitations under the License.
2121

2222
This document describes the changes made to the Erl_interface application.
2323

24+
## Erl_Interface 5.5.2.1
25+
26+
### Fixed Bugs and Malfunctions
27+
28+
- Fixed stack overflow in `ei_s_print_term` for very big integer terms (> 2000 hexadecimal digits long).
29+
30+
Own Id: OTP-20160 Aux Id: [PR-11193], GHSA-xcxj-5pg2-v72j,[CVE-2026-49760]
31+
32+
[PR-11193]: https://github.com/erlang/otp/pull/11193
33+
[CVE-2026-49760]: https://nvd.nist.gov/vuln/detail/2026-49760
34+
2435
## Erl_Interface 5.5.2
2536

2637
### Improvements and New Features

lib/erl_interface/vsn.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
EI_VSN = 5.5.2
1+
EI_VSN = 5.5.2.1
22
ERL_INTERFACE_VSN = $(EI_VSN)

lib/ftp/doc/notes.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,17 @@ limitations under the License.
1919
-->
2020
# FTP Release Notes
2121

22+
## Ftp 1.2.3.1
23+
24+
### Fixed Bugs and Malfunctions
25+
26+
- FTP client default connections that use the so called passive mode of FTP fails to properly validating the response IP of the server, hence a malicious or compromised FTP server could redirect the data connection to an arbitrary host, enabling s server-side request forgery (SSRF) and FTP bounce attacks.
27+
28+
Own Id: OTP-20166 Aux Id: [PR-11186], GHSA-24cv-hwgr-37fq, [CVE-2026-48858]
29+
30+
[PR-11186]: https://github.com/erlang/otp/pull/11186
31+
[CVE-2026-48858]: https://nvd.nist.gov/vuln/detail/2026-48858
32+
2233
## Ftp 1.2.3
2334

2435
### Fixed Bugs and Malfunctions

lib/ftp/vsn.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919
# %CopyrightEnd%
2020

2121
APPLICATION = ftp
22-
FTP_VSN = 1.2.3
22+
FTP_VSN = 1.2.3.1
2323
PRE_VSN =
2424
APP_VSN = "$(APPLICATION)-$(FTP_VSN)$(PRE_VSN)"

0 commit comments

Comments
 (0)