Skip to content

Commit

Permalink
Prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
Erlang/OTP committed Jun 25, 2024
1 parent 91bc991 commit 7b67a6f
Show file tree
Hide file tree
Showing 14 changed files with 187 additions and 19 deletions.
33 changes: 33 additions & 0 deletions erts/doc/src/notes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,39 @@
</header>
<p>This document describes the changes made to the ERTS application.</p>

<section><title>Erts 14.2.5.1</title>

<section><title>Fixed Bugs and Malfunctions</title>
<list>
<item>
<p>
A call to socket:[recv|recvfrom|recvmsg]/* with Timeout =
0 on Windows could cause a (case clause) crash if data is
immediately available.</p>
<p>
Own Id: OTP-19063 Aux Id: OTP-18835 </p>
</item>
<item>
<p>When a port command crashed in the inet driver during
<c>gen_tcp:send/2</c>, a monitor <c>'DOWN'</c> message
could be left lingering in the caller's mailbox. This has
now been fixed. </p>
<p>
Own Id: OTP-19121 Aux Id: GH-8484 </p>
</item>
<item>
<p><c>'DOWN'</c> messages originating from a monitored
port, contained the atom <c>process</c> instead of the
atom <c>port</c> as the third element when the exit
reason was not an immediate term.</p>
<p>
Own Id: OTP-19123 Aux Id: GH-8484, PR-8546 </p>
</item>
</list>
</section>

</section>

<section><title>Erts 14.2.5</title>

<section><title>Fixed Bugs and Malfunctions</title>
Expand Down
2 changes: 1 addition & 1 deletion erts/vsn.mk
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# %CopyrightEnd%
#

VSN = 14.2.5
VSN = 14.2.5.1

# Port number 4365 in 4.2
# Port number 4366 in 4.3
Expand Down
16 changes: 16 additions & 0 deletions lib/diameter/doc/src/notes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,22 @@ first.</p>

<!-- ===================================================================== -->

<section><title>diameter 2.3.2.1</title>

<section><title>Improvements and New Features</title>
<list>
<item>
<p>
Pick peer can now also handle request of type
#diameter_packet{}.</p>
<p>
Own Id: OTP-19090 Aux Id: PR-8399 </p>
</item>
</list>
</section>

</section>

<section><title>diameter 2.3.2</title>

<section><title>Fixed Bugs and Malfunctions</title>
Expand Down
2 changes: 1 addition & 1 deletion lib/diameter/vsn.mk
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@
# %CopyrightEnd%

APPLICATION = diameter
DIAMETER_VSN = 2.3.2
DIAMETER_VSN = 2.3.2.1
APP_VSN = $(APPLICATION)-$(DIAMETER_VSN)$(PRE_VSN)
24 changes: 24 additions & 0 deletions lib/kernel/doc/src/notes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,30 @@
</header>
<p>This document describes the changes made to the Kernel application.</p>

<section><title>Kernel 9.2.4.1</title>

<section><title>Fixed Bugs and Malfunctions</title>
<list>
<item>
<p>
A call to socket:[recv|recvfrom|recvmsg]/* with Timeout =
0 on Windows could cause a (case clause) crash if data is
immediately available.</p>
<p>
Own Id: OTP-19063 Aux Id: OTP-18835 </p>
</item>
<item>
<p>Open a <c>disk_log</c> file and combining
<c>head_func</c> with <c>rotate</c> options did not
work.</p>
<p>
Own Id: OTP-19104 Aux Id: ERIERL-870 </p>
</item>
</list>
</section>

</section>

<section><title>Kernel 9.2.4</title>

<section><title>Fixed Bugs and Malfunctions</title>
Expand Down
6 changes: 4 additions & 2 deletions lib/kernel/src/kernel.appup.src
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@
{<<"^9\\.2\\.0(?:\\.[0-9]+)+$">>,[restart_new_emulator]},
{<<"^9\\.2\\.1(?:\\.[0-9]+)*$">>,[restart_new_emulator]},
{<<"^9\\.2\\.2(?:\\.[0-9]+)*$">>,[restart_new_emulator]},
{<<"^9\\.2\\.3(?:\\.[0-9]+)*$">>,[restart_new_emulator]}],
{<<"^9\\.2\\.3(?:\\.[0-9]+)*$">>,[restart_new_emulator]},
{<<"^9\\.2\\.4(?:\\.[0-9]+)*$">>,[restart_new_emulator]}],
[{<<"^8\\.0$">>,[restart_new_emulator]},
{<<"^8\\.0\\.0(?:\\.[0-9]+)+$">>,[restart_new_emulator]},
{<<"^8\\.0\\.1(?:\\.[0-9]+)*$">>,[restart_new_emulator]},
Expand Down Expand Up @@ -99,4 +100,5 @@
{<<"^9\\.2\\.0(?:\\.[0-9]+)+$">>,[restart_new_emulator]},
{<<"^9\\.2\\.1(?:\\.[0-9]+)*$">>,[restart_new_emulator]},
{<<"^9\\.2\\.2(?:\\.[0-9]+)*$">>,[restart_new_emulator]},
{<<"^9\\.2\\.3(?:\\.[0-9]+)*$">>,[restart_new_emulator]}]}.
{<<"^9\\.2\\.3(?:\\.[0-9]+)*$">>,[restart_new_emulator]},
{<<"^9\\.2\\.4(?:\\.[0-9]+)*$">>,[restart_new_emulator]}]}.
2 changes: 1 addition & 1 deletion lib/kernel/vsn.mk
Original file line number Diff line number Diff line change
@@ -1 +1 @@
KERNEL_VSN = 9.2.4
KERNEL_VSN = 9.2.4.1
16 changes: 16 additions & 0 deletions lib/public_key/doc/src/notes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,22 @@
<file>notes.xml</file>
</header>

<section><title>Public_Key 1.15.1.1</title>

<section><title>Fixed Bugs and Malfunctions</title>
<list>
<item>
<p>
Fix bug in dnsName constraint check, could cause valid
cert to be considered bad during path validation.</p>
<p>
Own Id: OTP-19100 Aux Id: GH-8482, PR-8508 </p>
</item>
</list>
</section>

</section>

<section><title>Public_Key 1.15.1</title>

<section><title>Fixed Bugs and Malfunctions</title>
Expand Down
2 changes: 1 addition & 1 deletion lib/public_key/vsn.mk
Original file line number Diff line number Diff line change
@@ -1 +1 @@
PUBLIC_KEY_VSN = 1.15.1
PUBLIC_KEY_VSN = 1.15.1.1
24 changes: 24 additions & 0 deletions lib/ssh/doc/src/notes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,30 @@
<file>notes.xml</file>
</header>

<section><title>Ssh 5.1.4.1</title>

<section><title>Fixed Bugs and Malfunctions</title>
<list>
<item>
<p>
With this change, ssh client will automatically adjust
transfer window size for commands executed remotely over
SSH.</p>
<p>
Own Id: OTP-19057 Aux Id: PR-8345, GH-7483 </p>
</item>
<item>
<p>
With this change, race condition between connection
closing and automatic window adjustment is fixed.</p>
<p>
Own Id: OTP-19109 Aux Id: PR-8345 </p>
</item>
</list>
</section>

</section>

<section><title>Ssh 5.1.4</title>

<section><title>Fixed Bugs and Malfunctions</title>
Expand Down
2 changes: 1 addition & 1 deletion lib/ssh/vsn.mk
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#-*-makefile-*- ; force emacs to enter makefile-mode

SSH_VSN = 5.1.4
SSH_VSN = 5.1.4.1
APP_VSN = "ssh-$(SSH_VSN)"
51 changes: 51 additions & 0 deletions lib/ssl/doc/src/notes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,57 @@
</header>
<p>This document describes the changes made to the SSL application.</p>

<section><title>SSL 11.1.4.1</title>

<section><title>Fixed Bugs and Malfunctions</title>
<list>
<item>
<p>
Check for TLS-1.3 support should check minimum
requirements.</p>
<p>
Own Id: OTP-19094 Aux Id: GH-8489 </p>
</item>
<item>
<p>
If both TLS-1.3 and TLS-1.2 is supported and TLS-1.2
negotiated convert TLS-1.3 ECDSA schemes to TLS-1.2 hash
and signature pairs for increased interoperability.</p>
<p>
Own Id: OTP-19107 Aux Id: GH-8376 </p>
</item>
<item>
<p>
TLS-1.3 negotiation now uses SNI based options correctly
instead of ignoring them.</p>
<p>
Own Id: OTP-19140 </p>
</item>
</list>
</section>


<section><title>Improvements and New Features</title>
<list>
<item>
<p>
Make it easier to distinguish between a invalid signature
and unsupported signature.</p>
<p>
Own Id: OTP-19091 </p>
</item>
<item>
<p>
Enhance ALERT logs to help understand what causes the
alert.</p>
<p>
Own Id: OTP-19092 Aux Id: GH-8482 </p>
</item>
</list>
</section>

</section>

<section><title>SSL 11.1.4</title>

<section><title>Fixed Bugs and Malfunctions</title>
Expand Down
2 changes: 1 addition & 1 deletion lib/ssl/vsn.mk
Original file line number Diff line number Diff line change
@@ -1 +1 @@
SSL_VSN = 11.1.4
SSL_VSN = 11.1.4.1
24 changes: 13 additions & 11 deletions make/otp_version_tickets
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
OTP-19061
OTP-19062
OTP-19065
OTP-19067
OTP-19068
OTP-19069
OTP-19070
OTP-19071
OTP-19072
OTP-19076
OTP-19078
OTP-19057
OTP-19063
OTP-19090
OTP-19091
OTP-19092
OTP-19094
OTP-19100
OTP-19104
OTP-19107
OTP-19109
OTP-19121
OTP-19123
OTP-19140

0 comments on commit 7b67a6f

Please sign in to comment.