diff options
author | Loïc Hoguin <[email protected]> | 2024-11-06 13:22:17 +0100 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2024-11-06 13:22:17 +0100 |
commit | ac40751e1754346c89e4f32c8768e805521940c7 (patch) | |
tree | cf01ab02163f134ee74bbc0a1be858480b22cf33 | |
parent | ac0179889216fc3670cfbf41ce26256cb8d88621 (diff) | |
download | ci.erlang.mk-ac40751e1754346c89e4f32c8768e805521940c7.tar.gz ci.erlang.mk-ac40751e1754346c89e4f32c8768e805521940c7.tar.bz2 ci.erlang.mk-ac40751e1754346c89e4f32c8768e805521940c7.zip |
OTP-26.2.5
-rw-r--r-- | early-plugins.mk | 4 | ||||
-rw-r--r-- | release-notes/OTP-26.2.5.README.txt | 209 |
2 files changed, 211 insertions, 2 deletions
diff --git a/early-plugins.mk b/early-plugins.mk index 0298ba5..e4ff955 100644 --- a/early-plugins.mk +++ b/early-plugins.mk @@ -20,7 +20,7 @@ OTP-22 := OTP-22.0.7 OTP-22.1.8 OTP-22.2.8 OTP-22.3.4.27 OTP-23 := OTP-23.0.4 OTP-23.1.5 OTP-23.2.7.3 OTP-23.3.4.20 OTP-24 := OTP-24.0.6 OTP-24.1.7 OTP-24.2.2 OTP-24.3.4.16 OTP-25 := OTP-25.0.4 OTP-25.1.2.1 OTP-25.2.3 OTP-25.3.2.10 -OTP-26 := OTP-26.0.2 OTP-26.1.2 OTP-26.2.4 +OTP-26 := OTP-26.0.2 OTP-26.1.2 OTP-26.2.5 OTP-27 := OTP-27.0.1 OTP-27.1.2 OTP-18+ := $(OTP-18) $(OTP-19) $(OTP-20) $(OTP-21) $(OTP-22) $(OTP-23) $(OTP-24) $(OTP-25) $(OTP-26) $(OTP-27) @@ -119,7 +119,7 @@ OTP-25-DROPPED := OTP-25.0-rc1 OTP-25.0-rc2 OTP-25.0-rc3 OTP-25.0 \ OTP-25.2.1 OTP-25.2.2 OTP-25.3 OTP-25.3.1 OTP-25.3.2 OTP-25.3.2.1 OTP-25.3.2.2 \ OTP-25.3.2.3 OTP-25.3.2.4 OTP-25.3.2.5 OTP-25.3.2.6 OTP-25.3.2.7 OTP-25.3.2.8 OTP-25.3.2.9 OTP-26-DROPPED := OTP-26.0-rc3 \ - OTP-26.0 OTP-26.0.1 OTP-26.1 OTP-26.1.1 OTP-26.2 OTP-26.2.1 OTP-26.2.2 OTP-26.2.3 + OTP-26.0 OTP-26.0.1 OTP-26.1 OTP-26.1.1 OTP-26.2 OTP-26.2.1 OTP-26.2.2 OTP-26.2.3 OTP-26.2.4 OTP-27-DROPPED := OTP-27.0-rc1 OTP-27.0-rc2 OTP-DROPPED := $(OTP-18-DROPPED) $(OTP-19-DROPPED) $(OTP-20-DROPPED) \ diff --git a/release-notes/OTP-26.2.5.README.txt b/release-notes/OTP-26.2.5.README.txt new file mode 100644 index 0000000..5f3ce63 --- /dev/null +++ b/release-notes/OTP-26.2.5.README.txt @@ -0,0 +1,209 @@ +Patch Package: OTP 26.2.5 +Git Tag: OTP-26.2.5 +Date: 2024-05-02 +Trouble Report Id: OTP-19061, OTP-19062, OTP-19065, OTP-19067, + OTP-19068, OTP-19069, OTP-19070, OTP-19071, + OTP-19072, OTP-19076, OTP-19078 +Seq num: ERIERL-1073, GH-8356, GH-8383, GH-8385, + OTP-18999, PR-8367, PR-8379, PR-8380, + PR-8391, PR-8422 +System: OTP +Release: 26 +Application: dialyzer-5.1.3, erts-14.2.5, kernel-9.2.4, + mnesia-4.23.1, ssl-11.1.4, stdlib-5.2.3 +Predecessor: OTP 26.2.4 + + Check out the git tag OTP-26.2.5, and build a full OTP system + including documentation. Apply one or more applications from this + build as patches to your installation using the 'otp_patch_apply' + tool. For information on install requirements, see descriptions for + each application version below. + + --------------------------------------------------------------------- + --- HIGHLIGHTS ------------------------------------------------------ + --------------------------------------------------------------------- + + OTP-19069 Application(s): erts + + Added a warning to open_port/2 regarding the BadBatBut + attack affecting Windows. + + + --------------------------------------------------------------------- + --- dialyzer-5.1.3 -------------------------------------------------- + --------------------------------------------------------------------- + + The dialyzer-5.1.3 application can be applied independently of other + applications on a full OTP 26 installation. + + --- Fixed Bugs and Malfunctions --- + + OTP-19068 Application(s): dialyzer + Related Id(s): GH-8383 + + Fixed an issue with bitstring type inference on + segments following UTF-8/16/32 segments. + + + Full runtime dependencies of dialyzer-5.1.3: compiler-8.0, erts-12.0, + kernel-8.0, stdlib-5.0, syntax_tools-2.0, wx-2.0 + + + --------------------------------------------------------------------- + --- erts-14.2.5 ----------------------------------------------------- + --------------------------------------------------------------------- + + The erts-14.2.5 application can be applied independently of other + applications on a full OTP 26 installation. + + --- Fixed Bugs and Malfunctions --- + + OTP-19061 Application(s): erts + + gen_sctp:send/3,4 now waits for the send to complete + instead of returning an OS result such as + {error, ewouldblock}. + + + OTP-19070 Application(s): erts + Related Id(s): GH-8385 + + ETS functions did not properly handle keys containing + maps, sometimes matching too many or too few objects. + + + OTP-19071 Application(s): erts + Related Id(s): PR-8380, OTP-18999 + + Fix CPU quota determination for cgroups. + + The bug was introduced through OTP-18999. + + + --- Improvements and New Features --- + + OTP-19069 Application(s): erts + + *** HIGHLIGHT *** + + Added a warning to open_port/2 regarding the BadBatBut + attack affecting Windows. + + + Full runtime dependencies of erts-14.2.5: kernel-9.0, sasl-3.3, + stdlib-4.1 + + + --------------------------------------------------------------------- + --- kernel-9.2.4 ---------------------------------------------------- + --------------------------------------------------------------------- + + The kernel-9.2.4 application can be applied independently of other + applications on a full OTP 26 installation. + + --- Fixed Bugs and Malfunctions --- + + OTP-19072 Application(s): kernel, stdlib + Related Id(s): PR-8391 + + Fix the shell Job Control Mode to not crash when typing + TAB or CTRL+R. + + + OTP-19078 Application(s): kernel + Related Id(s): PR-8422 + + Fix calls to blocking application APIs to throw an + exception with reason terminating if called when the + system is terminating. + + This is done in order to avoid deadlocks during + shutdown or restart. + + + Full runtime dependencies of kernel-9.2.4: crypto-5.0, erts-14.0, + sasl-3.0, stdlib-5.0 + + + --------------------------------------------------------------------- + --- mnesia-4.23.1 --------------------------------------------------- + --------------------------------------------------------------------- + + The mnesia-4.23.1 application can be applied independently of other + applications on a full OTP 26 installation. + + --- Fixed Bugs and Malfunctions --- + + OTP-19076 Application(s): mnesia + Related Id(s): ERIERL-1073 + + Mnesia could crash during startup if del_table_copy/2 + and add_table_copy/3 was invoked when the table was + loading. + + + Full runtime dependencies of mnesia-4.23.1: erts-9.0, kernel-5.3, + stdlib-5.0 + + + --------------------------------------------------------------------- + --- ssl-11.1.4 ------------------------------------------------------ + --------------------------------------------------------------------- + + The ssl-11.1.4 application can be applied independently of other + applications on a full OTP 26 installation. + + --- Fixed Bugs and Malfunctions --- + + OTP-19065 Application(s): ssl + Related Id(s): GH-8356, PR-8367 + + Fix certificate authorities check so that CA closest to + peer is not lost. It could manifest itself in a failed + connection as the client failed to realize it had a + valid certificate chain to send to the server. + + + OTP-19067 Application(s): ssl + Related Id(s): PR-8379 + + ssl:signature_algs/2 did not list some legacy algorithm + schemes correctly when listing all algorithms + available. + + + Full runtime dependencies of ssl-11.1.4: crypto-5.0, erts-14.0, + inets-5.10.7, kernel-9.0, public_key-1.11.3, runtime_tools-1.15.1, + stdlib-4.1 + + + --------------------------------------------------------------------- + --- stdlib-5.2.3 ---------------------------------------------------- + --------------------------------------------------------------------- + + The stdlib-5.2.3 application can be applied independently of other + applications on a full OTP 26 installation. + + --- Fixed Bugs and Malfunctions --- + + OTP-19062 Application(s): stdlib + + Fix shell expansion of -type a() :: $a. in the erlang + shell. + + + OTP-19072 Application(s): kernel, stdlib + Related Id(s): PR-8391 + + Fix the shell Job Control Mode to not crash when typing + TAB or CTRL+R. + + + Full runtime dependencies of stdlib-5.2.3: compiler-5.0, crypto-4.5, + erts-13.1, kernel-9.0, sasl-3.0 + + + --------------------------------------------------------------------- + --------------------------------------------------------------------- + --------------------------------------------------------------------- + |