Skip to content

Commit 71219a5

Browse files
author
Erlang/OTP
committed
Prepare release
1 parent 6be458a commit 71219a5

File tree

12 files changed

+70
-16
lines changed

12 files changed

+70
-16
lines changed

erts/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 ERTS application.
2323

24+
## Erts 15.2.6
25+
26+
### Fixed Bugs and Malfunctions
27+
28+
- Fixed bug in `call_memory` tracing that could cause wildly incorrect reported memory values. Bug exists since OTP 27.1.
29+
30+
Also fixed return type spec of `trace:info/3`.
31+
32+
Own Id: OTP-19581 Aux Id: ERIERL-1219, [PR-9706]
33+
34+
[PR-9706]: https://github.com/erlang/otp/pull/9706
35+
2436
## Erts 15.2.5
2537

2638
### 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.5
21+
VSN = 15.2.6
2222

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

lib/kernel/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 Kernel application.
2323

24+
## Kernel 10.2.6
25+
26+
### Fixed Bugs and Malfunctions
27+
28+
- Fixed bug in `call_memory` tracing that could cause wildly incorrect reported memory values. Bug exists since OTP 27.1.
29+
30+
Also fixed return type spec of `trace:info/3`.
31+
32+
Own Id: OTP-19581 Aux Id: ERIERL-1219, [PR-9706]
33+
34+
[PR-9706]: https://github.com/erlang/otp/pull/9706
35+
2436
## Kernel 10.2.5
2537

2638
### Fixed Bugs and Malfunctions

lib/kernel/src/kernel.appup.src

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
{<<"^10\\.2\\.2(?:\\.[0-9]+)*$">>,[restart_new_emulator]},
4242
{<<"^10\\.2\\.3(?:\\.[0-9]+)*$">>,[restart_new_emulator]},
4343
{<<"^10\\.2\\.4(?:\\.[0-9]+)*$">>,[restart_new_emulator]},
44+
{<<"^10\\.2\\.5(?:\\.[0-9]+)*$">>,[restart_new_emulator]},
4445
{<<"^8\\.4$">>,[restart_new_emulator]},
4546
{<<"^8\\.4\\.0(?:\\.[0-9]+)+$">>,[restart_new_emulator]},
4647
{<<"^8\\.4\\.1(?:\\.[0-9]+)*$">>,[restart_new_emulator]},
@@ -76,6 +77,7 @@
7677
{<<"^10\\.2\\.2(?:\\.[0-9]+)*$">>,[restart_new_emulator]},
7778
{<<"^10\\.2\\.3(?:\\.[0-9]+)*$">>,[restart_new_emulator]},
7879
{<<"^10\\.2\\.4(?:\\.[0-9]+)*$">>,[restart_new_emulator]},
80+
{<<"^10\\.2\\.5(?:\\.[0-9]+)*$">>,[restart_new_emulator]},
7981
{<<"^8\\.4$">>,[restart_new_emulator]},
8082
{<<"^8\\.4\\.0(?:\\.[0-9]+)+$">>,[restart_new_emulator]},
8183
{<<"^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.5
1+
KERNEL_VSN = 10.2.6

lib/megaco/doc/notes.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,14 @@ as all enhancements and bugfixes for every release of Megaco. Each release of
2525
Megaco thus constitutes one section in this document. The title of each section
2626
is the version number of Megaco.
2727

28+
## Megaco 4.7.2
29+
30+
### Fixed Bugs and Malfunctions
31+
32+
- Corrected type spec for type mid().
33+
34+
Own Id: OTP-19585 Aux Id: ERIERL-1222
35+
2836
## Megaco 4.7.1
2937

3038
### Fixed Bugs and Malfunctions

lib/megaco/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 = megaco
22-
MEGACO_VSN = 4.7.1
22+
MEGACO_VSN = 4.7.2
2323
PRE_VSN =
2424
APP_VSN = "$(APPLICATION)-$(MEGACO_VSN)$(PRE_VSN)"

lib/ssh/doc/notes.md

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

22+
## Ssh 5.2.10
23+
24+
### Fixed Bugs and Malfunctions
25+
26+
- Reception of wrong Unicode does not cause unnecessary processing. US-ASCII fields are not decoded as Unicode.
27+
28+
Own Id: OTP-19582 Aux Id: [PR-9679]
29+
30+
- SSH daemon disconnects upon receiving connection protocol message for unauthenticated used.
31+
32+
Thanks to Fabian Bäumer, Marcel Maehren, Marcus Brinkmann, Nurullah Erinola, Jörg Schwenk (Ruhr University Bochum).
33+
34+
Own Id: OTP-19595 Aux Id: CVE-2025-32433
35+
36+
[PR-9679]: https://github.com/erlang/otp/pull/9679
37+
2238
## Ssh 5.2.9
2339

2440
### 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.9
3+
SSH_VSN = 5.2.10
44
APP_VSN = "ssh-$(SSH_VSN)"

lib/ssl/doc/notes.md

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

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

24+
## SSL 11.2.12
25+
26+
### Improvements and New Features
27+
28+
- Lower log level for user cancelation as this is not an error case. Also handle possible undecrypted close alert during TLS-1.3 handshake.
29+
30+
Own Id: OTP-19592 Aux Id: [PR-9566]
31+
32+
[PR-9566]: https://github.com/erlang/otp/pull/9566
33+
2434
## SSL 11.2.11
2535

2636
### Fixed Bugs and Malfunctions

0 commit comments

Comments
 (0)