summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErlang/OTP <otp@erlang.org>2019-11-08 12:19:35 +0100
committerErlang/OTP <otp@erlang.org>2019-11-08 12:19:35 +0100
commitc2895c13481a44fba5d6c1a195d028681ce0f25b (patch)
tree5041957c8572b6a171e9c4dd548c7462645fc4ce
parente0499dcdb8e064fbf204254cbe7321a589afb1f2 (diff)
downloaderlang-c2895c13481a44fba5d6c1a195d028681ce0f25b.tar.gz
Prepare release
-rw-r--r--erts/doc/src/notes.xml42
-rw-r--r--erts/vsn.mk2
-rw-r--r--lib/compiler/doc/src/notes.xml15
-rw-r--r--lib/compiler/vsn.mk2
-rw-r--r--make/otp_version_tickets8
5 files changed, 63 insertions, 6 deletions
diff --git a/erts/doc/src/notes.xml b/erts/doc/src/notes.xml
index 3c640f886b..e4c2b87964 100644
--- a/erts/doc/src/notes.xml
+++ b/erts/doc/src/notes.xml
@@ -31,6 +31,48 @@
</header>
<p>This document describes the changes made to the ERTS application.</p>
+<section><title>Erts 10.5.5</title>
+
+ <section><title>Fixed Bugs and Malfunctions</title>
+ <list>
+ <item>
+ <p>
+ 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.</p>
+ <p>
+ Own Id: OTP-16193</p>
+ </item>
+ <item>
+ <p>
+ Fix bug causing VM crash due to memory corruption of
+ distribution entry. Probability of crash increases if
+ Erlang distribution is frequently disconnected and
+ reestablished towards same node names. Bug exists since
+ OTP-21.0.</p>
+ <p>
+ Own Id: OTP-16224 Aux Id: ERL-1044 </p>
+ </item>
+ <item>
+ <p>
+ Fixed bug causing crash of VM built with configuration
+ <c>--enable--sharing-preserving</c>. Provoked when a sent
+ message contains both a bit string and the heap binary
+ (&lt; 65 bytes) which the bit string was matched from.
+ Bug exists since OTP-19.0 but has seen to be easier to
+ provoke since OTP-22.1.</p>
+ <p>
+ Own Id: OTP-16265 Aux Id: ERL-1064 </p>
+ </item>
+ </list>
+ </section>
+
+</section>
+
<section><title>Erts 10.5.4</title>
<section><title>Fixed Bugs and Malfunctions</title>
diff --git a/erts/vsn.mk b/erts/vsn.mk
index d920c337fc..5da1afa2bc 100644
--- a/erts/vsn.mk
+++ b/erts/vsn.mk
@@ -18,7 +18,7 @@
# %CopyrightEnd%
#
-VSN = 10.5.4
+VSN = 10.5.5
# Port number 4365 in 4.2
# Port number 4366 in 4.3
diff --git a/lib/compiler/doc/src/notes.xml b/lib/compiler/doc/src/notes.xml
index 7cd5d13e52..cb4f77e0b5 100644
--- a/lib/compiler/doc/src/notes.xml
+++ b/lib/compiler/doc/src/notes.xml
@@ -32,6 +32,21 @@
<p>This document describes the changes made to the Compiler
application.</p>
+<section><title>Compiler 7.4.9</title>
+
+ <section><title>Fixed Bugs and Malfunctions</title>
+ <list>
+ <item>
+ <p>Fixed a performance bug that caused repeated matches
+ of large records to take a very long time to compile.</p>
+ <p>
+ Own Id: OTP-16259 Aux Id: ERIERL-436 </p>
+ </item>
+ </list>
+ </section>
+
+</section>
+
<section><title>Compiler 7.4.8</title>
<section><title>Fixed Bugs and Malfunctions</title>
diff --git a/lib/compiler/vsn.mk b/lib/compiler/vsn.mk
index 3c3e847e14..a19cee1ae2 100644
--- a/lib/compiler/vsn.mk
+++ b/lib/compiler/vsn.mk
@@ -1 +1 @@
-COMPILER_VSN = 7.4.8
+COMPILER_VSN = 7.4.9
diff --git a/make/otp_version_tickets b/make/otp_version_tickets
index 47b4679641..c18339803e 100644
--- a/make/otp_version_tickets
+++ b/make/otp_version_tickets
@@ -1,4 +1,4 @@
-OTP-16219
-OTP-16228
-OTP-16241
-OTP-16242
+OTP-16193
+OTP-16224
+OTP-16259
+OTP-16265