aboutsummaryrefslogtreecommitdiffstats
path: root/release-notes
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2020-05-24 09:43:34 +0200
committerLoïc Hoguin <[email protected]>2020-05-24 09:43:34 +0200
commit64921d9c6441b501b07187c42460ceaea9f87c03 (patch)
tree043bbde1b0a91ac573f81757701791697fb37d37 /release-notes
parent81c74ac328118d6168c2946008617286ca750b3b (diff)
downloadci.erlang.mk-64921d9c6441b501b07187c42460ceaea9f87c03.tar.gz
ci.erlang.mk-64921d9c6441b501b07187c42460ceaea9f87c03.tar.bz2
ci.erlang.mk-64921d9c6441b501b07187c42460ceaea9f87c03.zip
OTP-23.0.1 and OTP-22.3.4.1 and OTP-21.3.8.16
Diffstat (limited to 'release-notes')
-rw-r--r--release-notes/OTP-21.3.8.16.README.txt86
-rw-r--r--release-notes/OTP-22.3.4.1.README.txt119
-rw-r--r--release-notes/OTP-23.0.1.README.txt98
3 files changed, 303 insertions, 0 deletions
diff --git a/release-notes/OTP-21.3.8.16.README.txt b/release-notes/OTP-21.3.8.16.README.txt
new file mode 100644
index 0000000..524b961
--- /dev/null
+++ b/release-notes/OTP-21.3.8.16.README.txt
@@ -0,0 +1,86 @@
+Patch Package: OTP 21.3.8.16
+Git Tag: OTP-21.3.8.16
+Date: 2020-05-20
+Trouble Report Id: OTP-16639, OTP-16640, OTP-16641, OTP-16642
+Seq num: ERL-1236
+System: OTP
+Release: 21
+Application: erts-10.3.5.12
+Predecessor: OTP 21.3.8.15
+
+ Check out the git tag OTP-21.3.8.16, 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.
+
+ ---------------------------------------------------------------------
+ --- erts-10.3.5.12 --------------------------------------------------
+ ---------------------------------------------------------------------
+
+ Note! The erts-10.3.5.12 application *cannot* be applied
+ independently of other applications on an arbitrary OTP 21
+ installation.
+
+ On a full OTP 21 installation, also the following runtime
+ dependencies have to be satisfied:
+ -- kernel-6.1 (first satisfied in OTP 21.1)
+ -- sasl-3.3 (first satisfied in OTP 21.2)
+
+
+ --- Fixed Bugs and Malfunctions ---
+
+ OTP-16639 Application(s): erts
+ Related Id(s): ERL-1236
+
+ The functionality utilized by BIFs for temporary
+ disabling of garbage collection while yielding could
+ cause system task queues to become inconsistent on a
+ process executing such a BIF. Process system tasks are
+ for example utilized when purging code, garbage
+ collecting literal data, and when issuing an ordinary
+ garbage collection from another process.
+
+ The bug does not trigger frequently. Multiple code
+ purges in direct sequence makes it more likely that
+ this bug is triggered. In the cases observed, this has
+ resulted in a hanging code purge operation.
+
+
+ OTP-16640 Application(s): erts
+ Related Id(s): OTP-16193
+
+ A literal area could prematurely be released before all
+ uses of it had been removed. This occurred either when
+ a terminating process had a complex exit reason
+ referring to a literal that concurrently was removed,
+ or when a terminating process continued executing a
+ dirty NIF accessing a literal (via the heap) that
+ concurrently was removed.
+
+
+ OTP-16641 Application(s): erts
+
+ The VM could potentially crash when checking process
+ code of a process that terminated while executing a
+ dirty NIF. The checking of process code is part of a
+ code purge operation.
+
+
+ OTP-16642 Application(s): erts
+
+ System tasks of low priority were not interleaved with
+ normal priority system tasks as they should. This could
+ potentially delay garbage collection of another process
+ longer than intended if the garbage collection was
+ requested from a low priority process.
+
+
+ Full runtime dependencies of erts-10.3.5.12: kernel-6.1, sasl-3.3,
+ stdlib-3.5
+
+
+ ---------------------------------------------------------------------
+ ---------------------------------------------------------------------
+ ---------------------------------------------------------------------
+
diff --git a/release-notes/OTP-22.3.4.1.README.txt b/release-notes/OTP-22.3.4.1.README.txt
new file mode 100644
index 0000000..fa485b6
--- /dev/null
+++ b/release-notes/OTP-22.3.4.1.README.txt
@@ -0,0 +1,119 @@
+Patch Package: OTP 22.3.4.1
+Git Tag: OTP-22.3.4.1
+Date: 2020-05-20
+Trouble Report Id: OTP-16596, OTP-16627, OTP-16631, OTP-16639,
+ OTP-16654
+Seq num: ERIERL-491, ERL-1105, ERL-1236, ERL-1242
+System: OTP
+Release: 22
+Application: erts-10.7.2.1, kernel-6.5.2.1,
+ megaco-3.18.8.1
+Predecessor: OTP 22.3.4
+
+ Check out the git tag OTP-22.3.4.1, 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.
+
+ ---------------------------------------------------------------------
+ --- erts-10.7.2.1 ---------------------------------------------------
+ ---------------------------------------------------------------------
+
+ Note! The erts-10.7.2.1 application *cannot* be applied independently
+ of other applications on an arbitrary OTP 22 installation.
+
+ On a full OTP 22 installation, also the following runtime
+ dependency has to be satisfied:
+ -- kernel-6.5.1 (first satisfied in OTP 22.2)
+
+
+ --- Fixed Bugs and Malfunctions ---
+
+ OTP-16596 Application(s): erts
+ Related Id(s): ERL-1105, PR-2606
+
+ Fixed bug in erl_crash.dump generation that could cause
+ a SEGV core dump if a recently cancelled timer was
+ found.
+
+
+ OTP-16639 Application(s): erts
+ Related Id(s): ERL-1236
+
+ The functionality utilized by BIFs for temporary
+ disabling of garbage collection while yielding could
+ cause system task queues to become inconsistent on a
+ process executing such a BIF. Process system tasks are
+ for example utilized when purging code, garbage
+ collecting literal data, and when issuing an ordinary
+ garbage collection from another process.
+
+ The bug does not trigger frequently. Multiple code
+ purges in direct sequence makes it more likely that
+ this bug is triggered. In the cases observed, this has
+ resulted in a hanging code purge operation.
+
+
+ OTP-16654 Application(s): erts
+ Related Id(s): ERL-1242
+
+ SCTP and UDP recv/2,3 hangs indefinitely if socket is
+ closed while recv is called (socket in passive mode).
+
+
+ Full runtime dependencies of erts-10.7.2.1: kernel-6.5.1, sasl-3.3,
+ stdlib-3.5
+
+
+ ---------------------------------------------------------------------
+ --- kernel-6.5.2.1 --------------------------------------------------
+ ---------------------------------------------------------------------
+
+ Note! The kernel-6.5.2.1 application *cannot* be applied
+ independently of other applications on an arbitrary OTP 22
+ installation.
+
+ On a full OTP 22 installation, also the following runtime
+ dependency has to be satisfied:
+ -- erts-10.6 (first satisfied in OTP 22.2)
+
+
+ --- Fixed Bugs and Malfunctions ---
+
+ OTP-16627 Application(s): kernel
+ Related Id(s): PR-2601
+
+ Fix bug in application:loaded_applications/0 that could
+ cause it to fail with badarg if for example a
+ concurrent upgrade/downgrade is running.
+
+
+ Full runtime dependencies of kernel-6.5.2.1: erts-10.6, sasl-3.0,
+ stdlib-3.5
+
+
+ ---------------------------------------------------------------------
+ --- megaco-3.18.8.1 -------------------------------------------------
+ ---------------------------------------------------------------------
+
+ The megaco-3.18.8.1 application can be applied independently of other
+ applications on a full OTP 22 installation.
+
+ --- Fixed Bugs and Malfunctions ---
+
+ OTP-16631 Application(s): megaco
+ Related Id(s): ERIERL-491
+
+ The mini parser could not properly decode some IPv6
+ addresses.
+
+
+ Full runtime dependencies of megaco-3.18.8.1: asn1-3.0, debugger-4.0,
+ erts-7.0, et-1.5, kernel-3.0, runtime_tools-1.8.14, stdlib-2.5
+
+
+ ---------------------------------------------------------------------
+ ---------------------------------------------------------------------
+ ---------------------------------------------------------------------
+
diff --git a/release-notes/OTP-23.0.1.README.txt b/release-notes/OTP-23.0.1.README.txt
new file mode 100644
index 0000000..a026bbe
--- /dev/null
+++ b/release-notes/OTP-23.0.1.README.txt
@@ -0,0 +1,98 @@
+Patch Package: OTP 23.0.1
+Git Tag: OTP-23.0.1
+Date: 2020-05-20
+Trouble Report Id: OTP-16582, OTP-16639, OTP-16652, OTP-16654,
+ OTP-16657
+Seq num: ERL-1236, ERL-1242, ERL-1246, ERL-1253,
+ ERL-984
+System: OTP
+Release: 23
+Application: compiler-7.6.1, erts-11.0.1
+Predecessor: OTP 23.0
+
+ Check out the git tag OTP-23.0.1, 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.
+
+ ---------------------------------------------------------------------
+ --- OTP-23.0.1 ------------------------------------------------------
+ ---------------------------------------------------------------------
+
+ --- Improvements and New Features ---
+
+ OTP-16582 Application(s): otp
+ Related Id(s): ERL-984
+
+ Windows installer now contains full version.
+
+
+ ---------------------------------------------------------------------
+ --- compiler-7.6.1 --------------------------------------------------
+ ---------------------------------------------------------------------
+
+ The compiler-7.6.1 application can be applied independently of other
+ applications on a full OTP 23 installation.
+
+ --- Fixed Bugs and Malfunctions ---
+
+ OTP-16652 Application(s): compiler
+ Related Id(s): ERL-1246
+
+ In rare circumstances, a guard using 'not' could
+ evaluate to the wrong boolean value.
+
+
+ OTP-16657 Application(s): compiler
+ Related Id(s): ERL-1253
+
+ A guard expression that referenced a variable bound to
+ a boolean expression could evaluate to the wrong value.
+
+
+ Full runtime dependencies of compiler-7.6.1: crypto-3.6, erts-11.0,
+ hipe-3.12, kernel-7.0, stdlib-3.13
+
+
+ ---------------------------------------------------------------------
+ --- erts-11.0.1 -----------------------------------------------------
+ ---------------------------------------------------------------------
+
+ The erts-11.0.1 application can be applied independently of other
+ applications on a full OTP 23 installation.
+
+ --- Fixed Bugs and Malfunctions ---
+
+ OTP-16639 Application(s): erts
+ Related Id(s): ERL-1236
+
+ The functionality utilized by BIFs for temporary
+ disabling of garbage collection while yielding could
+ cause system task queues to become inconsistent on a
+ process executing such a BIF. Process system tasks are
+ for example utilized when purging code, garbage
+ collecting literal data, and when issuing an ordinary
+ garbage collection from another process.
+
+ The bug does not trigger frequently. Multiple code
+ purges in direct sequence makes it more likely that
+ this bug is triggered. In the cases observed, this has
+ resulted in a hanging code purge operation.
+
+
+ OTP-16654 Application(s): erts
+ Related Id(s): ERL-1242
+
+ SCTP and UDP recv/2,3 hangs indefinitely if socket is
+ closed while recv is called (socket in passive mode).
+
+
+ Full runtime dependencies of erts-11.0.1: kernel-7.0, sasl-3.3,
+ stdlib-3.13
+
+
+ ---------------------------------------------------------------------
+ ---------------------------------------------------------------------
+ ---------------------------------------------------------------------
+