Skip to content

Commit 391be24

Browse files
author
Erlang/OTP
committed
Prepare release
1 parent 3c3f83b commit 391be24

File tree

10 files changed

+64
-9
lines changed

10 files changed

+64
-9
lines changed

erts/doc/notes.md

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

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

24+
## Erts 15.2.7
25+
26+
### Fixed Bugs and Malfunctions
27+
28+
- Fixed an emulator crash when setting an error_handler module that was not yet loaded.
29+
30+
Own Id: OTP-19577 Aux Id: ERIERL-1220, [PR-9696]
31+
32+
- Fixed a rare bug that could cause an emulator crash after unloading a module or erasing a persistent_term.
33+
34+
Own Id: OTP-19599 Aux Id: [PR-9724]
35+
36+
[PR-9696]: https://github.com/erlang/otp/pull/9696
37+
[PR-9724]: https://github.com/erlang/otp/pull/9724
38+
2439
## Erts 15.2.6
2540

2641
### 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.6
21+
VSN = 15.2.7
2222

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

lib/kernel/doc/notes.md

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

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

24+
## Kernel 10.2.7
25+
26+
### Fixed Bugs and Malfunctions
27+
28+
- With this change, disk_log will not crash when using chunk_step/3 after log size was decreased.
29+
30+
Own Id: OTP-19605 Aux Id: [GH-9720], [PR-9765]
31+
32+
- With this change, disk_log will not run into infinite loop when using chunk/2,3 after log size was decreased.
33+
34+
Own Id: OTP-19608 Aux Id: [GH-9707], [PR-9767]
35+
36+
[GH-9720]: https://github.com/erlang/otp/issues/9720
37+
[PR-9765]: https://github.com/erlang/otp/pull/9765
38+
[GH-9707]: https://github.com/erlang/otp/issues/9707
39+
[PR-9767]: https://github.com/erlang/otp/pull/9767
40+
2441
## Kernel 10.2.6
2542

2643
### Fixed Bugs and Malfunctions

lib/kernel/src/kernel.appup.src

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
{<<"^10\\.2\\.3(?:\\.[0-9]+)*$">>,[restart_new_emulator]},
4343
{<<"^10\\.2\\.4(?:\\.[0-9]+)*$">>,[restart_new_emulator]},
4444
{<<"^10\\.2\\.5(?:\\.[0-9]+)*$">>,[restart_new_emulator]},
45+
{<<"^10\\.2\\.6(?:\\.[0-9]+)*$">>,[restart_new_emulator]},
4546
{<<"^8\\.4$">>,[restart_new_emulator]},
4647
{<<"^8\\.4\\.0(?:\\.[0-9]+)+$">>,[restart_new_emulator]},
4748
{<<"^8\\.4\\.1(?:\\.[0-9]+)*$">>,[restart_new_emulator]},
@@ -78,6 +79,7 @@
7879
{<<"^10\\.2\\.3(?:\\.[0-9]+)*$">>,[restart_new_emulator]},
7980
{<<"^10\\.2\\.4(?:\\.[0-9]+)*$">>,[restart_new_emulator]},
8081
{<<"^10\\.2\\.5(?:\\.[0-9]+)*$">>,[restart_new_emulator]},
82+
{<<"^10\\.2\\.6(?:\\.[0-9]+)*$">>,[restart_new_emulator]},
8183
{<<"^8\\.4$">>,[restart_new_emulator]},
8284
{<<"^8\\.4\\.0(?:\\.[0-9]+)+$">>,[restart_new_emulator]},
8385
{<<"^8\\.4\\.1(?:\\.[0-9]+)*$">>,[restart_new_emulator]},

lib/kernel/vsn.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
KERNEL_VSN = 10.2.6
1+
KERNEL_VSN = 10.2.7

lib/ssh/doc/notes.md

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

22+
## Ssh 5.2.11
23+
24+
### Fixed Bugs and Malfunctions
25+
26+
- Fix KEX strict implementation according to draft-miller-sshm-strict-kex-01 document.
27+
28+
Own Id: OTP-19625 Aux Id: CVE-2025-46712
29+
2230
## Ssh 5.2.10
2331

2432
### Fixed Bugs and Malfunctions

lib/ssh/vsn.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#-*-makefile-*- ; force emacs to enter makefile-mode
22

3-
SSH_VSN = 5.2.10
3+
SSH_VSN = 5.2.11
44
APP_VSN = "ssh-$(SSH_VSN)"

lib/xmerl/doc/notes.md

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

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

24+
## Xmerl 2.1.3
25+
26+
### Improvements and New Features
27+
28+
- A new option to discard whitespace before the `xml` tag when reading from a stream has been added to the Xmerl SAX parser.
29+
30+
* __`{discard_ws_before_xml_document, Boolean}`__ - Discard whitespace before `xml` tag instead of returning a fatal error if set to `true` (`false` is default)
31+
32+
Own Id: OTP-19602 Aux Id: [PR-9753]
33+
34+
[PR-9753]: https://github.com/erlang/otp/pull/9753
35+
2436
## Xmerl 2.1.2
2537

2638
### Fixed Bugs and Malfunctions

lib/xmerl/vsn.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
XMERL_VSN = 2.1.2
1+
XMERL_VSN = 2.1.3

make/otp_version_tickets

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
OTP-19581
2-
OTP-19582
3-
OTP-19585
4-
OTP-19592
5-
OTP-19595
1+
OTP-19577
2+
OTP-19599
3+
OTP-19602
4+
OTP-19605
5+
OTP-19608
6+
OTP-19625

0 commit comments

Comments
 (0)