From e793c156752707556aab8970cbce210d55ca599b Mon Sep 17 00:00:00 2001
From: Erlang/OTP
Date: Thu, 5 Dec 2024 12:40:55 +0100
Subject: [PATCH] Prepare release
---
erts/doc/src/notes.xml | 29 +++++++++++++++++++++++++++++
erts/vsn.mk | 2 +-
lib/common_test/doc/src/notes.xml | 17 +++++++++++++++++
lib/common_test/vsn.mk | 2 +-
lib/inets/doc/src/notes.xml | 20 +++++++++++++++++++-
lib/inets/vsn.mk | 2 +-
lib/kernel/doc/src/notes.xml | 27 +++++++++++++++++++++++++++
lib/kernel/vsn.mk | 2 +-
lib/mnesia/doc/src/notes.xml | 17 ++++++++++++++++-
lib/mnesia/vsn.mk | 2 +-
lib/public_key/doc/src/notes.xml | 27 +++++++++++++++++++++++++++
lib/public_key/vsn.mk | 2 +-
lib/ssl/doc/src/notes.xml | 29 +++++++++++++++++++++++++++++
lib/ssl/vsn.mk | 2 +-
lib/stdlib/doc/src/notes.xml | 14 ++++++++++++++
lib/stdlib/vsn.mk | 2 +-
make/otp_version_tickets | 17 +++++++++++------
17 files changed, 197 insertions(+), 16 deletions(-)
diff --git a/erts/doc/src/notes.xml b/erts/doc/src/notes.xml
index 82112b0cf3d2..f3b1ee08ae9f 100644
--- a/erts/doc/src/notes.xml
+++ b/erts/doc/src/notes.xml
@@ -31,6 +31,35 @@
This document describes the changes made to the ERTS application.
+Erts 14.2.5.5
+
+ Fixed Bugs and Malfunctions
+
+ -
+
Fix lock order violation if a NIF monitor down
+ callback calls enif_whereis_pid. Would cause debug
+ emulator to crash but could potentially lead to deadlocks
+ in optimized emulator.
+
+ Own Id: OTP-19330 Aux Id: GH-8983, PR-9008
+
+ -
+
gen_udp:send on domain local can leak inet_reply
+ messages.
+
+ Own Id: OTP-19332 Aux Id: #8989
+
+ -
+
net:getifaddrs does not properly report the running
+ flag on windows.
+
+ Own Id: OTP-19366 Aux Id: OTP-19061, ERIERL-1134
+
+
+
+
+
+
Erts 14.2.5.4
Fixed Bugs and Malfunctions
diff --git a/erts/vsn.mk b/erts/vsn.mk
index a90639e4d0e2..6356ddeb8e92 100644
--- a/erts/vsn.mk
+++ b/erts/vsn.mk
@@ -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
diff --git a/lib/common_test/doc/src/notes.xml b/lib/common_test/doc/src/notes.xml
index 81d844ff4688..130567ae6801 100644
--- a/lib/common_test/doc/src/notes.xml
+++ b/lib/common_test/doc/src/notes.xml
@@ -33,6 +33,23 @@
notes.xml
+Common_Test 1.26.2.3
+
+ Fixed Bugs and Malfunctions
+
+ -
+
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.
+
+ Own Id: OTP-19365 Aux Id: ERIERL-1157, PR-9080
+
+
+
+
+
+
Common_Test 1.26.2.2
Improvements and New Features
diff --git a/lib/common_test/vsn.mk b/lib/common_test/vsn.mk
index 43f5ec5ed8c8..8e30d92ffe3a 100644
--- a/lib/common_test/vsn.mk
+++ b/lib/common_test/vsn.mk
@@ -1 +1 @@
-COMMON_TEST_VSN = 1.26.2.2
+COMMON_TEST_VSN = 1.26.2.3
diff --git a/lib/inets/doc/src/notes.xml b/lib/inets/doc/src/notes.xml
index c20fb36bd5e7..42208235ecbc 100644
--- a/lib/inets/doc/src/notes.xml
+++ b/lib/inets/doc/src/notes.xml
@@ -33,7 +33,25 @@
notes.xml
- Inets 9.1.0.1
+ Inets 9.1.0.2
+
+ Fixed Bugs and Malfunctions
+
+ -
+
Fixed a bug where calling httpc:set_options/2 when one
+ of keys: ipfamily or unix_socket, was not
+ present, would cause the other value to get overriden by
+ the default value. The validation of these options was
+ also improved.
+
+ Own Id: OTP-19379 Aux Id: PR-8878, GH-8829
+
+
+
+
+
+
+Inets 9.1.0.1
Fixed Bugs and Malfunctions
diff --git a/lib/inets/vsn.mk b/lib/inets/vsn.mk
index 318bc22f6496..36488c13cd36 100644
--- a/lib/inets/vsn.mk
+++ b/lib/inets/vsn.mk
@@ -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)"
diff --git a/lib/kernel/doc/src/notes.xml b/lib/kernel/doc/src/notes.xml
index cb22223bf1d3..256840b83241 100644
--- a/lib/kernel/doc/src/notes.xml
+++ b/lib/kernel/doc/src/notes.xml
@@ -31,6 +31,33 @@
This document describes the changes made to the Kernel application.
+Kernel 9.2.4.4
+
+ Fixed Bugs and Malfunctions
+
+ -
+
gen_udp:send on domain local can leak inet_reply
+ messages.
+
+ Own Id: OTP-19332 Aux Id: #8989
+
+ -
+
Failure to create an UDP IPv6 socket when inet_backend
+ = socket with certain IPv6 socket options.
+
+ Own Id: OTP-19357
+
+ -
+
net:getifaddrs does not properly report the running
+ flag on windows.
+
+ Own Id: OTP-19366 Aux Id: OTP-19061, ERIERL-1134
+
+
+
+
+
+
Kernel 9.2.4.3
Fixed Bugs and Malfunctions
diff --git a/lib/kernel/vsn.mk b/lib/kernel/vsn.mk
index 3967b02e15f8..a702dc018edf 100644
--- a/lib/kernel/vsn.mk
+++ b/lib/kernel/vsn.mk
@@ -1 +1 @@
-KERNEL_VSN = 9.2.4.3
+KERNEL_VSN = 9.2.4.4
diff --git a/lib/mnesia/doc/src/notes.xml b/lib/mnesia/doc/src/notes.xml
index a63c6504fd60..5f5c8ece8a01 100644
--- a/lib/mnesia/doc/src/notes.xml
+++ b/lib/mnesia/doc/src/notes.xml
@@ -39,7 +39,22 @@
thus constitutes one section in this document. The title of each
section is the version number of Mnesia.
- Mnesia 4.23.1
+ Mnesia 4.23.1.1
+
+ Fixed Bugs and Malfunctions
+
+ -
+
Mnesia could crash if table was deleted during
+ checkpoint initialization.
+
+ Own Id: OTP-19368 Aux Id: ERIERL-1154, PR-9093
+
+
+
+
+
+
+Mnesia 4.23.1
Fixed Bugs and Malfunctions
diff --git a/lib/mnesia/vsn.mk b/lib/mnesia/vsn.mk
index da763a5264d0..3d8cb1dd31da 100644
--- a/lib/mnesia/vsn.mk
+++ b/lib/mnesia/vsn.mk
@@ -1 +1 @@
-MNESIA_VSN = 4.23.1
+MNESIA_VSN = 4.23.1.1
diff --git a/lib/public_key/doc/src/notes.xml b/lib/public_key/doc/src/notes.xml
index 6e130d88df3a..0c0f05b61540 100644
--- a/lib/public_key/doc/src/notes.xml
+++ b/lib/public_key/doc/src/notes.xml
@@ -35,6 +35,33 @@
notes.xml
+Public_Key 1.15.1.4
+
+ Fixed Bugs and Malfunctions
+
+ -
+
If both ext-key-usage and key-usage 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
+ ext-key-usages is marked as critical and the
+ usages is consistent with the key-use it can be
+ considered valid without mandatory application specific
+ checks for the ext-key-useage extension.
+
+ Own Id: OTP-19240 Aux Id: PR-8840, OTP-19532
+
+ -
+
Handle decoding of EDDSA key properly, when decoding a
+ PEM file that contains only the public EDDSA key.
+
+ Own Id: OTP-19350 Aux Id: GH-9009, PR-9053
+
+
+
+
+
+
Public_Key 1.15.1.3
Improvements and New Features
diff --git a/lib/public_key/vsn.mk b/lib/public_key/vsn.mk
index d2afff909e4c..352250e4edee 100644
--- a/lib/public_key/vsn.mk
+++ b/lib/public_key/vsn.mk
@@ -1 +1 @@
-PUBLIC_KEY_VSN = 1.15.1.3
+PUBLIC_KEY_VSN = 1.15.1.4
diff --git a/lib/ssl/doc/src/notes.xml b/lib/ssl/doc/src/notes.xml
index 492bfa1d73fd..4406b6a9a601 100644
--- a/lib/ssl/doc/src/notes.xml
+++ b/lib/ssl/doc/src/notes.xml
@@ -27,6 +27,35 @@
This document describes the changes made to the SSL application.
+SSL 11.1.4.6
+
+ Fixed Bugs and Malfunctions
+
+ -
+
If present, extended key-usage TLS (SSL) role check
+ (pk-clientAuth, pk-serverAuth) should
+ always be performed for peer-cert. An intermediate CA
+ cert may relax the requirement if
+ AnyExtendedKeyUsage purpose is present.
+ 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
+ AnyExtendedKeyUsage purpose.
+ This could result in that certificates might be
+ misused for purposes not intended by the certificate
+ authority.
+ Thanks to Bryan Paxton for reporting the issue.
+
+ Own Id: OTP-19352 Aux Id: PR-9130, CVE-2024-53846,
+ OTP-19240
+
+
+
+
+
+
SSL 11.1.4.5
Fixed Bugs and Malfunctions
diff --git a/lib/ssl/vsn.mk b/lib/ssl/vsn.mk
index 84b19b002713..e061700f5372 100644
--- a/lib/ssl/vsn.mk
+++ b/lib/ssl/vsn.mk
@@ -1 +1 @@
-SSL_VSN = 11.1.4.5
+SSL_VSN = 11.1.4.6
diff --git a/lib/stdlib/doc/src/notes.xml b/lib/stdlib/doc/src/notes.xml
index 78db9b37c0df..d0f52795fe29 100644
--- a/lib/stdlib/doc/src/notes.xml
+++ b/lib/stdlib/doc/src/notes.xml
@@ -31,6 +31,20 @@
This document describes the changes made to the STDLIB application.
+STDLIB 5.2.3.3
+
+ Fixed Bugs and Malfunctions
+
+ -
+
Fixed an error in uri_string:percent_decode spec
+
+ Own Id: OTP-19380 Aux Id: GH-8755
+
+
+
+
+
+
STDLIB 5.2.3.2
Fixed Bugs and Malfunctions
diff --git a/lib/stdlib/vsn.mk b/lib/stdlib/vsn.mk
index a482e1745a97..7a8cbe4928eb 100644
--- a/lib/stdlib/vsn.mk
+++ b/lib/stdlib/vsn.mk
@@ -1 +1 @@
-STDLIB_VSN = 5.2.3.2
+STDLIB_VSN = 5.2.3.3
diff --git a/make/otp_version_tickets b/make/otp_version_tickets
index 99549ffc0672..d0e316e29e35 100644
--- a/make/otp_version_tickets
+++ b/make/otp_version_tickets
@@ -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