Skip to content

Commit

Permalink
Prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
Erlang/OTP committed Dec 5, 2024
1 parent 5905ad0 commit e793c15
Show file tree
Hide file tree
Showing 17 changed files with 197 additions and 16 deletions.
29 changes: 29 additions & 0 deletions erts/doc/src/notes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,35 @@
</header>
<p>This document describes the changes made to the ERTS application.</p>

<section><title>Erts 14.2.5.5</title>

<section><title>Fixed Bugs and Malfunctions</title>
<list>
<item>
<p>Fix lock order violation if a NIF monitor <c>down</c>
callback calls <c>enif_whereis_pid</c>. Would cause debug
emulator to crash but could potentially lead to deadlocks
in optimized emulator.</p>
<p>
Own Id: OTP-19330 Aux Id: GH-8983, PR-9008 </p>
</item>
<item>
<p>gen_udp:send on domain local can leak inet_reply
messages.</p>
<p>
Own Id: OTP-19332 Aux Id: #8989 </p>
</item>
<item>
<p>net:getifaddrs does not properly report the running
flag on windows.</p>
<p>
Own Id: OTP-19366 Aux Id: OTP-19061, ERIERL-1134 </p>
</item>
</list>
</section>

</section>

<section><title>Erts 14.2.5.4</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.4
VSN = 14.2.5.5

# Port number 4365 in 4.2
# Port number 4366 in 4.3
Expand Down
17 changes: 17 additions & 0 deletions lib/common_test/doc/src/notes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,23 @@
<file>notes.xml</file>
</header>

<section><title>Common_Test 1.26.2.3</title>

<section><title>Fixed Bugs and Malfunctions</title>
<list>
<item>
<p>With this change, cth_surefire hook module handles
group path reduction for a skipped group. This fixes a
bug manifesting with improper group path for a group
executed after a group which was skipped.</p>
<p>
Own Id: OTP-19365 Aux Id: ERIERL-1157, PR-9080 </p>
</item>
</list>
</section>

</section>

<section><title>Common_Test 1.26.2.2</title>

<section><title>Improvements and New Features</title>
Expand Down
2 changes: 1 addition & 1 deletion lib/common_test/vsn.mk
Original file line number Diff line number Diff line change
@@ -1 +1 @@
COMMON_TEST_VSN = 1.26.2.2
COMMON_TEST_VSN = 1.26.2.3
20 changes: 19 additions & 1 deletion lib/inets/doc/src/notes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,25 @@
<file>notes.xml</file>
</header>

<section><title>Inets 9.1.0.1</title>
<section><title>Inets 9.1.0.2</title>

<section><title>Fixed Bugs and Malfunctions</title>
<list>
<item>
<p>Fixed a bug where calling httpc:set_options/2 when one
of keys: <i>ipfamily</i> or <i>unix_socket</i>, was not
present, would cause the other value to get overriden by
the default value. The validation of these options was
also improved.</p>
<p>
Own Id: OTP-19379 Aux Id: PR-8878, GH-8829 </p>
</item>
</list>
</section>

</section>

<section><title>Inets 9.1.0.1</title>

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

APPLICATION = inets
INETS_VSN = 9.1.0.1
INETS_VSN = 9.1.0.2
PRE_VSN =
APP_VSN = "$(APPLICATION)-$(INETS_VSN)$(PRE_VSN)"
27 changes: 27 additions & 0 deletions lib/kernel/doc/src/notes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,33 @@
</header>
<p>This document describes the changes made to the Kernel application.</p>

<section><title>Kernel 9.2.4.4</title>

<section><title>Fixed Bugs and Malfunctions</title>
<list>
<item>
<p>gen_udp:send on domain local can leak inet_reply
messages.</p>
<p>
Own Id: OTP-19332 Aux Id: #8989 </p>
</item>
<item>
<p>Failure to create an UDP IPv6 socket when inet_backend
= socket with certain IPv6 socket options.</p>
<p>
Own Id: OTP-19357 </p>
</item>
<item>
<p>net:getifaddrs does not properly report the running
flag on windows.</p>
<p>
Own Id: OTP-19366 Aux Id: OTP-19061, ERIERL-1134 </p>
</item>
</list>
</section>

</section>

<section><title>Kernel 9.2.4.3</title>

<section><title>Fixed Bugs and Malfunctions</title>
Expand Down
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.3
KERNEL_VSN = 9.2.4.4
17 changes: 16 additions & 1 deletion lib/mnesia/doc/src/notes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,22 @@
thus constitutes one section in this document. The title of each
section is the version number of Mnesia.</p>

<section><title>Mnesia 4.23.1</title>
<section><title>Mnesia 4.23.1.1</title>

<section><title>Fixed Bugs and Malfunctions</title>
<list>
<item>
<p>Mnesia could crash if table was deleted during
checkpoint initialization.</p>
<p>
Own Id: OTP-19368 Aux Id: ERIERL-1154, PR-9093 </p>
</item>
</list>
</section>

</section>

<section><title>Mnesia 4.23.1</title>

<section><title>Fixed Bugs and Malfunctions</title>
<list>
Expand Down
2 changes: 1 addition & 1 deletion lib/mnesia/vsn.mk
Original file line number Diff line number Diff line change
@@ -1 +1 @@
MNESIA_VSN = 4.23.1
MNESIA_VSN = 4.23.1.1
27 changes: 27 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,33 @@
<file>notes.xml</file>
</header>

<section><title>Public_Key 1.15.1.4</title>

<section><title>Fixed Bugs and Malfunctions</title>
<list>
<item>
<p>If both <c>ext-key-usage</c> and <c>key-usage</c> are
defined for a certificate it should be checked that these
usages are consistent with each other. This will have the
affect that such certificates where the
<c>ext-key-usages</c> is marked as critical and the
usages is consistent with the <c>key-use</c> it can be
considered valid without mandatory application specific
checks for the <c>ext-key-useage</c> extension. </p>
<p>
Own Id: OTP-19240 Aux Id: PR-8840, OTP-19532 </p>
</item>
<item>
<p>Handle decoding of EDDSA key properly, when decoding a
PEM file that contains only the public EDDSA key. </p>
<p>
Own Id: OTP-19350 Aux Id: GH-9009, PR-9053 </p>
</item>
</list>
</section>

</section>

<section><title>Public_Key 1.15.1.3</title>

<section><title>Improvements and New Features</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.3
PUBLIC_KEY_VSN = 1.15.1.4
29 changes: 29 additions & 0 deletions lib/ssl/doc/src/notes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,35 @@
</header>
<p>This document describes the changes made to the SSL application.</p>

<section><title>SSL 11.1.4.6</title>

<section><title>Fixed Bugs and Malfunctions</title>
<list>
<item>
<p>If present, extended key-usage TLS (SSL) role check
(<c>pk-clientAuth</c>, <c>pk-serverAuth</c>) should
always be performed for peer-cert. An intermediate CA
cert may relax the requirement if
<c>AnyExtendedKeyUsage</c> purpose is present.</p>
<p>In OTP-25.3.2.8, OTP-26.2 and OTP-27.0 these
requirements became too relaxed. There where two
problems, firstly the peer cert extension was only
checked if it was marked critical, and secondly the CA
cert check did not assert the relaxed
<c>AnyExtendedKeyUsage</c> purpose.</p>
<p>This could result in that certificates might be
misused for purposes not intended by the certificate
authority.</p>
<p>Thanks to Bryan Paxton for reporting the issue.</p>
<p>
Own Id: OTP-19352 Aux Id: PR-9130, CVE-2024-53846,
OTP-19240 </p>
</item>
</list>
</section>

</section>

<section><title>SSL 11.1.4.5</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.5
SSL_VSN = 11.1.4.6
14 changes: 14 additions & 0 deletions lib/stdlib/doc/src/notes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,20 @@
</header>
<p>This document describes the changes made to the STDLIB application.</p>

<section><title>STDLIB 5.2.3.3</title>

<section><title>Fixed Bugs and Malfunctions</title>
<list>
<item>
<p>Fixed an error in uri_string:percent_decode spec</p>
<p>
Own Id: OTP-19380 Aux Id: GH-8755 </p>
</item>
</list>
</section>

</section>

<section><title>STDLIB 5.2.3.2</title>

<section><title>Fixed Bugs and Malfunctions</title>
Expand Down
2 changes: 1 addition & 1 deletion lib/stdlib/vsn.mk
Original file line number Diff line number Diff line change
@@ -1 +1 @@
STDLIB_VSN = 5.2.3.2
STDLIB_VSN = 5.2.3.3
17 changes: 11 additions & 6 deletions make/otp_version_tickets
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
OTP-19293
OTP-19311
OTP-19316
OTP-19325
OTP-19326
OTP-19329
OTP-19240
OTP-19330
OTP-19332
OTP-19350
OTP-19352
OTP-19357
OTP-19365
OTP-19366
OTP-19368
OTP-19379
OTP-19380

0 comments on commit e793c15

Please sign in to comment.