aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2019-11-07 16:42:10 +0100
committerLoïc Hoguin <[email protected]>2019-11-07 16:42:10 +0100
commit5db7256c1a398d9f8c17736e100e07638b76aee1 (patch)
treeb3c0c03767b0547b944beb8833169c4fc06bf989
parent7c457d7705928afef476290c2fcec7399c2cf68b (diff)
downloadci.erlang.mk-5db7256c1a398d9f8c17736e100e07638b76aee1.tar.gz
ci.erlang.mk-5db7256c1a398d9f8c17736e100e07638b76aee1.tar.bz2
ci.erlang.mk-5db7256c1a398d9f8c17736e100e07638b76aee1.zip
OTP-22.1.6
-rw-r--r--early-plugins.mk4
-rw-r--r--release-notes/OTP-22.1.6.README.txt123
2 files changed, 125 insertions, 2 deletions
diff --git a/early-plugins.mk b/early-plugins.mk
index e5ecc54..4dc3027 100644
--- a/early-plugins.mk
+++ b/early-plugins.mk
@@ -27,7 +27,7 @@ OTP-18 := OTP-18.0.3 OTP-18.1.5 OTP-18.2.4 OTP-18.3.4.11
OTP-19 := OTP-19.0.7 OTP-19.1.6 OTP-19.2.3 OTP-19.3.6.13
OTP-20 := OTP-20.0.5 OTP-20.1.7 OTP-20.2.4 OTP-20.3.8.23
OTP-21 := OTP-21.0.9 OTP-21.1.4 OTP-21.2.7 OTP-21.3.8.10
-OTP-22 := OTP-22.0.7 OTP-22.1.5
+OTP-22 := OTP-22.0.7 OTP-22.1.6
OTP-18+ := $(OTP-18) $(OTP-19) $(OTP-20) $(OTP-21) $(OTP-22)
OTP-19+ := $(OTP-19) $(OTP-20) $(OTP-21) $(OTP-22)
@@ -73,7 +73,7 @@ OTP-21-DROPPED := OTP-21.0-rc1 OTP-21.0-rc2 OTP-21.0 OTP-21.0.1 OTP-21.0.2 \
OTP-21.3.8.5 OTP-21.3.8.6 OTP-21.3.8.7 OTP-21.3.8.8
OTP-22-DROPPED := OTP-22.0-rc1 OTP-22.0-rc2 OTP-22.0-rc3 OTP-22.0 \
OTP-22.0.1 OTP-22.0.2 OTP-22.0.3 OTP-22.0.4 OTP-22.0.5 OTP-22.0.6 \
- OTP-22.1 OTP-22.1.1 OTP-22.1.2 OTP-22.1.3 OTP-22.1.4
+ OTP-22.1 OTP-22.1.1 OTP-22.1.2 OTP-22.1.3 OTP-22.1.4 OTP-22.1.5
OTP-DROPPED := $(OTP-18-DROPPED) $(OTP-19-DROPPED) $(OTP-20-DROPPED) \
$(OTP-21-DROPPED) $(OTP-22-DROPPED)
diff --git a/release-notes/OTP-22.1.6.README.txt b/release-notes/OTP-22.1.6.README.txt
new file mode 100644
index 0000000..d1ba5fc
--- /dev/null
+++ b/release-notes/OTP-22.1.6.README.txt
@@ -0,0 +1,123 @@
+Patch Package: OTP 22.1.6
+Git Tag: OTP-22.1.6
+Date: 2019-11-06
+Trouble Report Id: OTP-16219, OTP-16228, OTP-16241, OTP-16242
+Seq num: ERIERL-427, ERL-1076, ERL-1078
+System: OTP
+Release: 22
+Application: compiler-7.4.8, crypto-4.6.2, erts-10.5.4,
+ snmp-5.4.3
+Predecessor: OTP 22.1.5
+
+ Check out the git tag OTP-22.1.6, 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.
+
+ ---------------------------------------------------------------------
+ --- compiler-7.4.8 --------------------------------------------------
+ ---------------------------------------------------------------------
+
+ The compiler-7.4.8 application can be applied independently of other
+ applications on a full OTP 22 installation.
+
+ --- Fixed Bugs and Malfunctions ---
+
+ OTP-16219 Application(s): compiler, erts
+ Related Id(s): ERL-1076
+
+ The compiler could do an unsafe optimization of
+ receives, which would cause a receive to only scan part
+ of the message queue.
+
+ This bug fix in the compiler fixes a bug in the socket
+ module.
+
+
+ Full runtime dependencies of compiler-7.4.8: crypto-3.6, erts-9.0,
+ hipe-3.12, kernel-4.0, stdlib-2.5
+
+
+ ---------------------------------------------------------------------
+ --- crypto-4.6.2 ----------------------------------------------------
+ ---------------------------------------------------------------------
+
+ The crypto-4.6.2 application can be applied independently of other
+ applications on a full OTP 22 installation.
+
+ --- Fixed Bugs and Malfunctions ---
+
+ OTP-16242 Application(s): crypto
+ Related Id(s): ERL-1078
+
+ The AEAD tag was not previously checked on decrypt with
+ chacha20_poly1305
+
+
+ Full runtime dependencies of crypto-4.6.2: erts-9.0, kernel-5.3,
+ stdlib-3.4
+
+
+ ---------------------------------------------------------------------
+ --- erts-10.5.4 -----------------------------------------------------
+ ---------------------------------------------------------------------
+
+ The erts-10.5.4 application can be applied independently of other
+ applications on a full OTP 22 installation.
+
+ --- Fixed Bugs and Malfunctions ---
+
+ OTP-16219 Application(s): compiler, erts
+ Related Id(s): ERL-1076
+
+ The compiler could do an unsafe optimization of
+ receives, which would cause a receive to only scan part
+ of the message queue.
+
+ This bug fix in the compiler fixes a bug in the socket
+ module.
+
+
+ OTP-16241 Application(s): erts
+ Related Id(s): ERL-1076, OTP-16219
+
+ Fix bug where the receive marker used by the runtime to
+ do the receive queue optimization could be incorrectly
+ set. The symptom of this would be that a message that
+ should match in a receive never matches.
+
+ The bug requires the OTP-22 compiler and multiple
+ selective receives to trigger. See OTP-16219 for
+ details about the bug fix in the compiler.
+
+
+ Full runtime dependencies of erts-10.5.4: kernel-6.1, sasl-3.3,
+ stdlib-3.5
+
+
+ ---------------------------------------------------------------------
+ --- snmp-5.4.3 ------------------------------------------------------
+ ---------------------------------------------------------------------
+
+ The snmp-5.4.3 application can be applied independently of other
+ applications on a full OTP 22 installation.
+
+ --- Fixed Bugs and Malfunctions ---
+
+ OTP-16228 Application(s): snmp
+ Related Id(s): ERIERL-427
+
+ Agent discovery cleanup. If there is no receiver of
+ INFORM then #state.reqs in snmpa_net_if keeps on
+ growing for DISCOVERY.
+
+
+ Full runtime dependencies of snmp-5.4.3: crypto-3.3, erts-6.0,
+ kernel-3.0, mnesia-4.12, runtime_tools-1.8.14, stdlib-2.5
+
+
+ ---------------------------------------------------------------------
+ ---------------------------------------------------------------------
+ ---------------------------------------------------------------------
+