From 47198f179ab14cf8cfcdab0d976650cd1519b236 Mon Sep 17 00:00:00 2001
From: Erlang/OTP
Date: Fri, 8 Dec 2017 10:57:50 +0100
Subject: Update release notes
---
erts/doc/src/notes.xml | 137 ++++++++++++++++++++++++++++++++++
lib/asn1/doc/src/notes.xml | 25 +++++++
lib/common_test/doc/src/notes.xml | 27 +++++++
lib/compiler/doc/src/notes.xml | 16 ++++
lib/cosEvent/doc/src/notes.xml | 17 ++++-
lib/cosEventDomain/doc/src/notes.xml | 17 ++++-
lib/cosFileTransfer/doc/src/notes.xml | 17 ++++-
lib/cosNotification/doc/src/notes.xml | 17 ++++-
lib/cosProperty/doc/src/notes.xml | 17 ++++-
lib/cosTime/doc/src/notes.xml | 17 ++++-
lib/cosTransactions/doc/src/notes.xml | 17 ++++-
lib/crypto/doc/src/notes.xml | 70 +++++++++++++++++
lib/debugger/doc/src/notes.xml | 15 ++++
lib/dialyzer/doc/src/notes.xml | 23 ++++++
lib/diameter/doc/src/notes.xml | 16 ++++
lib/edoc/doc/src/notes.xml | 15 ++++
lib/eldap/doc/src/notes.xml | 15 ++++
lib/erl_docgen/doc/src/notes.xml | 21 +++++-
lib/erl_interface/doc/src/notes.xml | 15 ++++
lib/eunit/doc/src/notes.xml | 15 ++++
lib/hipe/doc/src/notes.xml | 33 ++++++++
lib/ic/doc/src/notes.xml | 17 ++++-
lib/inets/doc/src/notes.xml | 32 +++++++-
lib/jinterface/doc/src/notes.xml | 15 ++++
lib/kernel/doc/src/notes.xml | 15 ++++
lib/megaco/doc/src/notes.xml | 17 ++++-
lib/mnesia/doc/src/notes.xml | 18 ++++-
lib/observer/doc/src/notes.xml | 67 +++++++++++++++++
lib/odbc/doc/src/notes.xml | 17 ++++-
lib/orber/doc/src/notes.xml | 23 +++++-
lib/os_mon/doc/src/notes.xml | 15 ++++
lib/otp_mibs/doc/src/notes.xml | 15 ++++
lib/parsetools/doc/src/notes.xml | 15 ++++
lib/public_key/doc/src/notes.xml | 25 +++++++
lib/runtime_tools/doc/src/notes.xml | 15 ++++
lib/sasl/doc/src/notes.xml | 20 +++++
lib/snmp/doc/src/notes.xml | 17 ++++-
lib/ssh/doc/src/notes.xml | 42 +++++++++++
lib/ssl/doc/src/notes.xml | 55 ++++++++++++++
lib/stdlib/doc/src/notes.xml | 43 +++++++++++
lib/syntax_tools/doc/src/notes.xml | 15 ++++
lib/tools/doc/src/notes.xml | 15 ++++
lib/wx/doc/src/notes.xml | 16 ++++
lib/xmerl/doc/src/notes.xml | 15 ++++
44 files changed, 1091 insertions(+), 15 deletions(-)
diff --git a/erts/doc/src/notes.xml b/erts/doc/src/notes.xml
index 91eabb5607..39dd90b8a0 100644
--- a/erts/doc/src/notes.xml
+++ b/erts/doc/src/notes.xml
@@ -31,6 +31,143 @@
This document describes the changes made to the ERTS application.
+Erts 9.2
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ Fix a bug in tracing where the {caller} match spec
+ function would be set to undefined incorrectly when used
+ in conjunction with return_to or return_trace on some
+ functions.
+
+ The functions effected are: erlang:put/2, erlang:erase/1,
+ erlang:process_info/1,2, erlang:nif_load/2,
+ erts_internal:garbage_collection/1 and
+ erts_internal:check_process_code/1.
+
+ Because of this bug, the analysis done by fprof could
+ become incorrect when the functions above are the
+ tail-call in a function.
+
+ Own Id: OTP-14677
+
+ -
+
+ Fix emulator deadlock that would happen if
+ trap_exit was set to true and a process sends an
+ exit signal to itself using exit(self(), Reason)
+ while receive tracing was enabled for that process.
+
+ Own Id: OTP-14678 Aux Id: ERL-495
+
+ -
+
Writing of crash dumps is significantly faster.
+ Maps are now included in crash dumps.
+ Constants terms would only be shown in one process,
+ while other processes referencing the same constant term
+ would show a marker for incomplete heap.
+
+ Own Id: OTP-14685 Aux Id: OTP-14611, OTP-14603, OTP-14595
+
+ -
+
+ The fallback home directory for windows has been changed
+ to be the PROFILE directory instead of the WINDOWS
+ directory. The fallback is used when the environment
+ variables HOMEDRIVE and HOMEPATH have not been set.
+
+ Own Id: OTP-14691
+
+ -
+
+ Fix bug for hipe compiled code using
+ <<X/utf32>> binary construction that
+ could cause faulty result or even VM crash.
+
+ On architectures other than x86_64, code need to be
+ recompiled to benefit from this fix.
+
+ Own Id: OTP-14740
+
+ -
+
+ Fixed bug in erlang:garbage_collect/2 and
+ erlang:check_process_code/3, when called with
+ option {async,ReqestId}. Could cause VM crash or
+ heap corruption if RequestId was an immediate term
+ (like a pid, atom or small integer). Bug exists since
+ OTP-17.0.
+
+ Own Id: OTP-14752
+
+ -
+
ERL_NIF_MINOR_VERSION wasn't bumped with the addition
+ of enif_ioq_*.
+
+ Own Id: OTP-14779
+
+ -
+
Purging of loaded code that contained "fake literals"
+ (for example the magic reference obtained from
+ 'ets:new/2') would crash the runtime system.
+ Corrected.
+
+ Own Id: OTP-14791
+
+ -
+
Setting the size of the atom table to a number near
+ 2147483647 (using the '+t' option) would cause the
+ emulator to exit with a failure to allocate a huge amount
+ of memory. This has been corrected. Also the usage
+ message for the '+t' option has been corrected to
+ show the correct upper limit 2147483647 instead of 0.
+
+ Own Id: OTP-14796
+
+ -
+
Fixed a bug that prevented registered process names
+ from being resolved in lcnt results.
+
+ Own Id: OTP-14803
+
+ -
+
Formatting bugs were fixed in several HiPE debug
+ BIFs.
+
+ Own Id: OTP-14804
+
+
+
+
+
+ Improvements and New Features
+
+ -
+
Binaries and some other data in crash dumps are now
+ encoded in base64 (instead of in hex), which will reduce
+ the size of crash dumps.
+ A few bugs in the handling of sub binaries in
+ crashdump_viewer have been fixed.
+
+ Own Id: OTP-14686
+
+ -
+
+ Micro optimization for send operations of messages to
+ other nodes. The local ack-message, which is otherwise
+ sent back from TPC/IP port driver to sending client
+ process, is now ignored earlier for distributed send
+ operations.
+
+ Own Id: OTP-14689
+
+
+
+
+
+
Erts 9.1.5
Fixed Bugs and Malfunctions
diff --git a/lib/asn1/doc/src/notes.xml b/lib/asn1/doc/src/notes.xml
index ae6660c143..1abe983221 100644
--- a/lib/asn1/doc/src/notes.xml
+++ b/lib/asn1/doc/src/notes.xml
@@ -32,6 +32,31 @@
This document describes the changes made to the asn1 application.
+Asn1 5.0.4
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ There was a issue with BER encoding and the
+ undec_rest option in generated decoders. An
+ exception could be thrown instead of returning an error
+ tuple.
+
+ Own Id: OTP-14786 Aux Id: ERL-518
+
+ -
+
+ The asn1ct:test functions crashed on decoders generated
+ with options no_ok_wrapper, undec_rest.
+
+ Own Id: OTP-14787 Aux Id: ERL-518
+
+
+
+
+
+
Asn1 5.0.3
Fixed Bugs and Malfunctions
diff --git a/lib/common_test/doc/src/notes.xml b/lib/common_test/doc/src/notes.xml
index b039023e0f..c6b928bb5d 100644
--- a/lib/common_test/doc/src/notes.xml
+++ b/lib/common_test/doc/src/notes.xml
@@ -33,6 +33,33 @@
notes.xml
+Common_Test 1.15.3
+
+ Improvements and New Features
+
+ -
+
+ A new function, ct:remaining_test_procs/0, returns
+ the identity of test- and group leader processes that are
+ still running at the time of the call.
+
+ Own Id: OTP-13832
+
+ -
+
+ A "latest test result" link is now displayed in the
+ footer of each test index page, which performs a jump to
+ the most recently generated test index. This is useful
+ for making quick comparisons of results between test runs
+ without having to traverse the log file tree.
+
+ Own Id: OTP-14281
+
+
+
+
+
+
Common_Test 1.15.2
Improvements and New Features
diff --git a/lib/compiler/doc/src/notes.xml b/lib/compiler/doc/src/notes.xml
index 2aec75a2aa..f4a3f9875b 100644
--- a/lib/compiler/doc/src/notes.xml
+++ b/lib/compiler/doc/src/notes.xml
@@ -32,6 +32,22 @@
This document describes the changes made to the Compiler
application.
+Compiler 7.1.4
+
+ Fixed Bugs and Malfunctions
+
+ -
+
The 'deterministic' option was not recognized
+ when given in a -compile() attribute in the source
+ code.
+
+ Own Id: OTP-14773 Aux Id: ERL-498
+
+
+
+
+
+
Compiler 7.1.3
Fixed Bugs and Malfunctions
diff --git a/lib/cosEvent/doc/src/notes.xml b/lib/cosEvent/doc/src/notes.xml
index fe94cb64d3..ba0b0d88db 100644
--- a/lib/cosEvent/doc/src/notes.xml
+++ b/lib/cosEvent/doc/src/notes.xml
@@ -33,7 +33,22 @@
notes.xml
- cosEvent 2.2.1
+ cosEvent 2.2.2
+
+ Fixed Bugs and Malfunctions
+
+ -
+
Removed all old unused files in the documentation.
+
+
+ Own Id: OTP-14475 Aux Id: ERL-409, PR-1493
+
+
+
+
+
+
+cosEvent 2.2.1
Improvements and New Features
diff --git a/lib/cosEventDomain/doc/src/notes.xml b/lib/cosEventDomain/doc/src/notes.xml
index 5e5bb2c33e..bd0a119ad2 100644
--- a/lib/cosEventDomain/doc/src/notes.xml
+++ b/lib/cosEventDomain/doc/src/notes.xml
@@ -32,7 +32,22 @@
notes.xml
- cosEventDomain 1.2.1
+ cosEventDomain 1.2.2
+
+ Fixed Bugs and Malfunctions
+
+ -
+
Removed all old unused files in the documentation.
+
+
+ Own Id: OTP-14475 Aux Id: ERL-409, PR-1493
+
+
+
+
+
+
+cosEventDomain 1.2.1
Improvements and New Features
diff --git a/lib/cosFileTransfer/doc/src/notes.xml b/lib/cosFileTransfer/doc/src/notes.xml
index 58ab087014..e0b4bdf64b 100644
--- a/lib/cosFileTransfer/doc/src/notes.xml
+++ b/lib/cosFileTransfer/doc/src/notes.xml
@@ -31,7 +31,22 @@
notes.xml
- cosFileTransfer 1.2.1
+ cosFileTransfer 1.2.2
+
+ Fixed Bugs and Malfunctions
+
+ -
+
Removed all old unused files in the documentation.
+
+
+ Own Id: OTP-14475 Aux Id: ERL-409, PR-1493
+
+
+
+
+
+
+cosFileTransfer 1.2.1
Improvements and New Features
diff --git a/lib/cosNotification/doc/src/notes.xml b/lib/cosNotification/doc/src/notes.xml
index 1237000153..bf0fc73548 100644
--- a/lib/cosNotification/doc/src/notes.xml
+++ b/lib/cosNotification/doc/src/notes.xml
@@ -32,7 +32,22 @@
notes.xml
- cosNotification 1.2.2
+ cosNotification 1.2.3
+
+ Fixed Bugs and Malfunctions
+
+ -
+
Removed all old unused files in the documentation.
+
+
+ Own Id: OTP-14475 Aux Id: ERL-409, PR-1493
+
+
+
+
+
+
+cosNotification 1.2.2
Improvements and New Features
diff --git a/lib/cosProperty/doc/src/notes.xml b/lib/cosProperty/doc/src/notes.xml
index e5d22982c5..4de246de67 100644
--- a/lib/cosProperty/doc/src/notes.xml
+++ b/lib/cosProperty/doc/src/notes.xml
@@ -33,7 +33,22 @@
- cosProperty 1.2.2
+ cosProperty 1.2.3
+
+ Fixed Bugs and Malfunctions
+
+ -
+
Removed all old unused files in the documentation.
+
+
+ Own Id: OTP-14475 Aux Id: ERL-409, PR-1493
+
+
+
+
+
+
+cosProperty 1.2.2
Improvements and New Features
diff --git a/lib/cosTime/doc/src/notes.xml b/lib/cosTime/doc/src/notes.xml
index 686d9e6add..16e02f8b1f 100644
--- a/lib/cosTime/doc/src/notes.xml
+++ b/lib/cosTime/doc/src/notes.xml
@@ -33,7 +33,22 @@
notes.xml
- cosTime 1.2.2
+ cosTime 1.2.3
+
+ Fixed Bugs and Malfunctions
+
+ -
+
Removed all old unused files in the documentation.
+
+
+ Own Id: OTP-14475 Aux Id: ERL-409, PR-1493
+
+
+
+
+
+
+cosTime 1.2.2
Improvements and New Features
diff --git a/lib/cosTransactions/doc/src/notes.xml b/lib/cosTransactions/doc/src/notes.xml
index 85ace1208b..2401c04c3f 100644
--- a/lib/cosTransactions/doc/src/notes.xml
+++ b/lib/cosTransactions/doc/src/notes.xml
@@ -33,7 +33,22 @@
notes.xml
- cosTransactions 1.3.2
+ cosTransactions 1.3.3
+
+ Fixed Bugs and Malfunctions
+
+ -
+
Removed all old unused files in the documentation.
+
+
+ Own Id: OTP-14475 Aux Id: ERL-409, PR-1493
+
+
+
+
+
+
+cosTransactions 1.3.2
Improvements and New Features
diff --git a/lib/crypto/doc/src/notes.xml b/lib/crypto/doc/src/notes.xml
index 9376e6f649..dbeb886d7b 100644
--- a/lib/crypto/doc/src/notes.xml
+++ b/lib/crypto/doc/src/notes.xml
@@ -31,6 +31,76 @@
This document describes the changes made to the Crypto application.
+Crypto 4.2
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ The compatibility function void HMAC_CTX_free in
+ crypto.c erroneously tried to return a value.
+
+ Own Id: OTP-14720
+
+
+
+
+
+ Improvements and New Features
+
+ -
+
+ Rewrite public and private key encode/decode with EVP
+ api. New RSA padding options added. This is a modified
+ half of PR-838.
+
+ Own Id: OTP-14446
+
+ -
+
+ The crypto API is extended to use private/public keys
+ stored in an Engine for sign/verify or encrypt/decrypt
+ operations.
+
+ The ssl application provides an API to use this new
+ engine concept in TLS.
+
+ Own Id: OTP-14448
+
+ -
+
Add support to plug in alternative implementations
+ for some or all of the cryptographic operations supported
+ by the OpenSSL Engine API. When configured appropriately,
+ OpenSSL calls the engine's implementation of these
+ operations instead of its own.
+
+ Own Id: OTP-14567
+
+ -
+
+ Replaced a call of the OpenSSL deprecated function
+ DH_generate_parameters in crypto.c.
+
+ Own Id: OTP-14639
+
+ -
+
+ Documentation added about how to use keys stored in an
+ Engine.
+
+ Own Id: OTP-14735 Aux Id: OTP-14448
+
+ -
+
Add engine_ ctrl_cmd_string/3,4 the OpenSSL Engine
+ support in crypto.
+
+ Own Id: OTP-14801
+
+
+
+
+
+
Crypto 4.1
Fixed Bugs and Malfunctions
diff --git a/lib/debugger/doc/src/notes.xml b/lib/debugger/doc/src/notes.xml
index 21fe7d449d..e71746e30d 100644
--- a/lib/debugger/doc/src/notes.xml
+++ b/lib/debugger/doc/src/notes.xml
@@ -33,6 +33,21 @@
This document describes the changes made to the Debugger
application.
+Debugger 4.2.4
+
+ Fixed Bugs and Malfunctions
+
+ -
+
Do not quote variables and button names in Debugger
+ windows. The bug was introduced in Erlang/OTP 20.1.
+
+ Own Id: OTP-14802
+
+
+
+
+
+
Debugger 4.2.3
Improvements and New Features
diff --git a/lib/dialyzer/doc/src/notes.xml b/lib/dialyzer/doc/src/notes.xml
index 6a6e65cb94..a1eecfb3fe 100644
--- a/lib/dialyzer/doc/src/notes.xml
+++ b/lib/dialyzer/doc/src/notes.xml
@@ -32,6 +32,29 @@
This document describes the changes made to the Dialyzer
application.
+Dialyzer 3.2.3
+
+ Fixed Bugs and Malfunctions
+
+ -
+
The error message returned from Dialyzer when, for
+ example, a modified record field type is not a subtype of
+ the declared type, no longer includes a call stack. The
+ bug was introduced in Erlang/OTP 19.3.
+
+ Own Id: OTP-14742
+
+ -
+
A bug relating to maps and never returning functions
+ has been fixed.
+
+ Own Id: OTP-14743
+
+
+
+
+
+
Dialyzer 3.2.2
Fixed Bugs and Malfunctions
diff --git a/lib/diameter/doc/src/notes.xml b/lib/diameter/doc/src/notes.xml
index eded788419..ba4525fd20 100644
--- a/lib/diameter/doc/src/notes.xml
+++ b/lib/diameter/doc/src/notes.xml
@@ -43,6 +43,22 @@ first.
+diameter 2.1.3
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ Fix documentation typo: peer_down/3 was written where
+ peer_down/3 was intended.
+
+ Own Id: OTP-14805
+
+
+
+
+
+
diameter 2.1.2
Fixed Bugs and Malfunctions
diff --git a/lib/edoc/doc/src/notes.xml b/lib/edoc/doc/src/notes.xml
index 96d7597d83..240789e876 100644
--- a/lib/edoc/doc/src/notes.xml
+++ b/lib/edoc/doc/src/notes.xml
@@ -32,6 +32,21 @@
This document describes the changes made to the EDoc
application.
+Edoc 0.9.2
+
+ Fixed Bugs and Malfunctions
+
+ -
+
The map type is correctly denoted as map() in
+ function specifications and types.
+
+ Own Id: OTP-14777
+
+
+
+
+
+
Edoc 0.9.1
Improvements and New Features
diff --git a/lib/eldap/doc/src/notes.xml b/lib/eldap/doc/src/notes.xml
index 7aad745f67..8b066671ee 100644
--- a/lib/eldap/doc/src/notes.xml
+++ b/lib/eldap/doc/src/notes.xml
@@ -31,6 +31,21 @@
This document describes the changes made to the Eldap application.
+Eldap 1.2.3
+
+ Fixed Bugs and Malfunctions
+
+ -
+
Removed all old unused files in the documentation.
+
+
+ Own Id: OTP-14475 Aux Id: ERL-409, PR-1493
+
+
+
+
+
+
Eldap 1.2.2
Fixed Bugs and Malfunctions
diff --git a/lib/erl_docgen/doc/src/notes.xml b/lib/erl_docgen/doc/src/notes.xml
index 59c65665d4..2652b4b0c8 100644
--- a/lib/erl_docgen/doc/src/notes.xml
+++ b/lib/erl_docgen/doc/src/notes.xml
@@ -31,7 +31,26 @@
This document describes the changes made to the erl_docgen application.
- Erl_Docgen 0.7.1
+ Erl_Docgen 0.7.2
+
+ Fixed Bugs and Malfunctions
+
+ -
+
The style for code, warning and note tags in the pdf
+ have been changed so they look like the html version.
+
The spacing around code blocks have been changed
+ for both html and pdf so it's the same regardless if the
+ user have a newline after the start tag (or before the
+ end tag) or not.
+
+ Own Id: OTP-14674
+
+
+
+
+
+
+Erl_Docgen 0.7.1
Improvements and New Features
diff --git a/lib/erl_interface/doc/src/notes.xml b/lib/erl_interface/doc/src/notes.xml
index ec20f3c67f..641a3de13f 100644
--- a/lib/erl_interface/doc/src/notes.xml
+++ b/lib/erl_interface/doc/src/notes.xml
@@ -31,6 +31,21 @@
This document describes the changes made to the Erl_interface application.
+Erl_Interface 3.10.1
+
+ Fixed Bugs and Malfunctions
+
+ -
+
Removed all old unused files in the documentation.
+
+
+ Own Id: OTP-14475 Aux Id: ERL-409, PR-1493
+
+
+
+
+
+
Erl_Interface 3.10
Fixed Bugs and Malfunctions
diff --git a/lib/eunit/doc/src/notes.xml b/lib/eunit/doc/src/notes.xml
index 7133befe37..b38cb2e70e 100644
--- a/lib/eunit/doc/src/notes.xml
+++ b/lib/eunit/doc/src/notes.xml
@@ -33,6 +33,21 @@
This document describes the changes made to the EUnit application.
+Eunit 2.3.5
+
+ Fixed Bugs and Malfunctions
+
+ -
+
Removed all old unused files in the documentation.
+
+
+ Own Id: OTP-14475 Aux Id: ERL-409, PR-1493
+
+
+
+
+
+
Eunit 2.3.4
Improvements and New Features
diff --git a/lib/hipe/doc/src/notes.xml b/lib/hipe/doc/src/notes.xml
index eadaee50e2..bad0c254ce 100644
--- a/lib/hipe/doc/src/notes.xml
+++ b/lib/hipe/doc/src/notes.xml
@@ -31,6 +31,39 @@
This document describes the changes made to HiPE.
+Hipe 3.17
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ Fix bug for hipe compiled code using
+ <<X/utf32>> binary construction that
+ could cause faulty result or even VM crash.
+
+ On architectures other than x86_64, code need to be
+ recompiled to benefit from this fix.
+
+ Own Id: OTP-14740
+
+
+
+
+
+ Improvements and New Features
+
+ -
+
+ Added documentation about limitations of hipe compared to
+ beam compiled code.
+
+ Own Id: OTP-14767
+
+
+
+
+
+
Hipe 3.16.1
Fixed Bugs and Malfunctions
diff --git a/lib/ic/doc/src/notes.xml b/lib/ic/doc/src/notes.xml
index ea8bf758cf..fc68ec386c 100644
--- a/lib/ic/doc/src/notes.xml
+++ b/lib/ic/doc/src/notes.xml
@@ -31,7 +31,22 @@
notes.xml
- IC 4.4.2
+ IC 4.4.3
+
+ Fixed Bugs and Malfunctions
+
+ -
+
Removed all old unused files in the documentation.
+
+
+ Own Id: OTP-14475 Aux Id: ERL-409, PR-1493
+
+
+
+
+
+
+IC 4.4.2
Fixed Bugs and Malfunctions
diff --git a/lib/inets/doc/src/notes.xml b/lib/inets/doc/src/notes.xml
index 07e29b5542..70b2811c0e 100644
--- a/lib/inets/doc/src/notes.xml
+++ b/lib/inets/doc/src/notes.xml
@@ -33,7 +33,37 @@
notes.xml
- Inets 6.4.4
+ Inets 6.4.5
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ CGI environment variable CONTENT_LENGTH shall be a string
+
+ Own Id: OTP-14679
+
+ -
+
+ In relaxed mode disregard Content-Length header if there
+ is also a Transfer-Encoding header.
+
+ Own Id: OTP-14727
+
+ -
+
+ Eliminated race condition, that could cause http request
+ to sporadically fail to complete successfully, when
+ keep-alive connections are used.
+
+ Own Id: OTP-14783
+
+
+
+
+
+
+Inets 6.4.4
Fixed Bugs and Malfunctions
diff --git a/lib/jinterface/doc/src/notes.xml b/lib/jinterface/doc/src/notes.xml
index b44a04d7cd..346d467c2d 100644
--- a/lib/jinterface/doc/src/notes.xml
+++ b/lib/jinterface/doc/src/notes.xml
@@ -31,6 +31,21 @@
This document describes the changes made to the Jinterface application.
+Jinterface 1.8.1
+
+ Fixed Bugs and Malfunctions
+
+ -
+
Removed all old unused files in the documentation.
+
+
+ Own Id: OTP-14475 Aux Id: ERL-409, PR-1493
+
+
+
+
+
+
Jinterface 1.8
Improvements and New Features
diff --git a/lib/kernel/doc/src/notes.xml b/lib/kernel/doc/src/notes.xml
index a5316dd476..d7f224c38e 100644
--- a/lib/kernel/doc/src/notes.xml
+++ b/lib/kernel/doc/src/notes.xml
@@ -31,6 +31,21 @@
This document describes the changes made to the Kernel application.
+Kernel 5.4.1
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ Refactored an internal API.
+
+ Own Id: OTP-14784
+
+
+
+
+
+
Kernel 5.4
Fixed Bugs and Malfunctions
diff --git a/lib/megaco/doc/src/notes.xml b/lib/megaco/doc/src/notes.xml
index deb2bfcff3..54e048a172 100644
--- a/lib/megaco/doc/src/notes.xml
+++ b/lib/megaco/doc/src/notes.xml
@@ -37,7 +37,22 @@
section is the version number of Megaco.
- Megaco 3.18.2
+ Megaco 3.18.3
+
+ Fixed Bugs and Malfunctions
+
+ -
+
Removed all old unused files in the documentation.
+
+
+ Own Id: OTP-14475 Aux Id: ERL-409, PR-1493
+
+
+
+
+
+
+Megaco 3.18.2
Improvements and New Features
diff --git a/lib/mnesia/doc/src/notes.xml b/lib/mnesia/doc/src/notes.xml
index 026c6a89d7..ebab612b58 100644
--- a/lib/mnesia/doc/src/notes.xml
+++ b/lib/mnesia/doc/src/notes.xml
@@ -39,7 +39,23 @@
thus constitutes one section in this document. The title of each
section is the version number of Mnesia.
- Mnesia 4.15.1
+ Mnesia 4.15.2
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ Fix backup error handling, the real failure reason was
+ not returned.
+
+ Own Id: OTP-14776 Aux Id: ERIERL-103
+
+
+
+
+
+
+Mnesia 4.15.1
Improvements and New Features
diff --git a/lib/observer/doc/src/notes.xml b/lib/observer/doc/src/notes.xml
index 05ea550964..96cd89b375 100644
--- a/lib/observer/doc/src/notes.xml
+++ b/lib/observer/doc/src/notes.xml
@@ -32,6 +32,73 @@
This document describes the changes made to the Observer
application.
+Observer 2.6
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ A bug introduced in OTP-20 would make Crashdump Viewer
+ crash when trying to expand an empty binary. This is now
+ corrected.
+
+ Own Id: OTP-14642
+
+ -
+
+ If a match spec in the config file contained more than
+ one clause, observer would earlier crash when trying to
+ display it in the GUI. This is now corrected.
+
+ Own Id: OTP-14643 Aux Id: ERL-489
+
+ -
+
Writing of crash dumps is significantly faster.
+ Maps are now included in crash dumps.
+ Constants terms would only be shown in one process,
+ while other processes referencing the same constant term
+ would show a marker for incomplete heap.
+
+ Own Id: OTP-14685 Aux Id: OTP-14611, OTP-14603, OTP-14595
+
+
+
+
+
+ Improvements and New Features
+
+ -
+
Binaries and some other data in crash dumps are now
+ encoded in base64 (instead of in hex), which will reduce
+ the size of crash dumps.
+ A few bugs in the handling of sub binaries in
+ crashdump_viewer have been fixed.
+
+ Own Id: OTP-14686
+
+ -
+
+ In order to allow future improvements, Crashdump Viewer
+ now checks the version tag of the crashdump to see that
+ it is a known format. If the crashdump version is newer
+ than Crashdump Viewer is prepared to read, then an
+ information dialog is displayed before Crashdump Viewer
+ terminates.
+
+ If an incomplete process heap is discovered in a
+ crashdump, Crashdump Viewer will now display a warning
+ for this, similar to the warning displayed when a
+ crashdump is truncated. Incomplete heaps can occur if for
+ instance the literals are not included, which is the case
+ for all dumps prior to OTP-20.2.
+
+ Own Id: OTP-14755
+
+
+
+
+
+
Observer 2.5
Improvements and New Features
diff --git a/lib/odbc/doc/src/notes.xml b/lib/odbc/doc/src/notes.xml
index 6a8b0485eb..2aa55ca99c 100644
--- a/lib/odbc/doc/src/notes.xml
+++ b/lib/odbc/doc/src/notes.xml
@@ -32,7 +32,22 @@
This document describes the changes made to the odbc application.
- ODBC 2.12
+ ODBC 2.12.1
+
+ Fixed Bugs and Malfunctions
+
+ -
+
Removed all old unused files in the documentation.
+
+
+ Own Id: OTP-14475 Aux Id: ERL-409, PR-1493
+
+
+
+
+
+
+ODBC 2.12
Improvements and New Features
diff --git a/lib/orber/doc/src/notes.xml b/lib/orber/doc/src/notes.xml
index 5a82270b28..35da4f73da 100644
--- a/lib/orber/doc/src/notes.xml
+++ b/lib/orber/doc/src/notes.xml
@@ -33,7 +33,28 @@
notes.xml
- Orber 3.8.3
+ Orber 3.8.4
+
+ Fixed Bugs and Malfunctions
+
+ -
+
Removed all old unused files in the documentation.
+
+
+ Own Id: OTP-14475 Aux Id: ERL-409, PR-1493
+
+ -
+
Removed the man warnings by using the code tag
+ instead of c tag.
+
+ Own Id: OTP-14673
+
+
+
+
+
+
+Orber 3.8.3
Improvements and New Features
diff --git a/lib/os_mon/doc/src/notes.xml b/lib/os_mon/doc/src/notes.xml
index b29a64155e..cec0856a8b 100644
--- a/lib/os_mon/doc/src/notes.xml
+++ b/lib/os_mon/doc/src/notes.xml
@@ -31,6 +31,21 @@
This document describes the changes made to the OS_Mon application.
+Os_Mon 2.4.4
+
+ Fixed Bugs and Malfunctions
+
+ -
+
Removed all old unused files in the documentation.
+
+
+ Own Id: OTP-14475 Aux Id: ERL-409, PR-1493
+
+
+
+
+
+
Os_Mon 2.4.3
Fixed Bugs and Malfunctions
diff --git a/lib/otp_mibs/doc/src/notes.xml b/lib/otp_mibs/doc/src/notes.xml
index dbd2f47ffb..c99148a904 100644
--- a/lib/otp_mibs/doc/src/notes.xml
+++ b/lib/otp_mibs/doc/src/notes.xml
@@ -32,6 +32,21 @@
This document describes the changes made to the OTP_Mibs
application.
+Otp_Mibs 1.1.2
+
+ Fixed Bugs and Malfunctions
+
+ -
+
Removed all old unused files in the documentation.
+
+
+ Own Id: OTP-14475 Aux Id: ERL-409, PR-1493
+
+
+
+
+
+
Otp_Mibs 1.1.1
Improvements and New Features
diff --git a/lib/parsetools/doc/src/notes.xml b/lib/parsetools/doc/src/notes.xml
index 3fa7169f50..b3370a06ab 100644
--- a/lib/parsetools/doc/src/notes.xml
+++ b/lib/parsetools/doc/src/notes.xml
@@ -31,6 +31,21 @@
This document describes the changes made to the Parsetools application.
+Parsetools 2.1.6
+
+ Fixed Bugs and Malfunctions
+
+ -
+
Warnings about unused functions in leexinc.hrl
+ are suppressed.
+
+ Own Id: OTP-14697
+
+
+
+
+
+
Parsetools 2.1.5
Fixed Bugs and Malfunctions
diff --git a/lib/public_key/doc/src/notes.xml b/lib/public_key/doc/src/notes.xml
index a4c0194328..11012ee9e5 100644
--- a/lib/public_key/doc/src/notes.xml
+++ b/lib/public_key/doc/src/notes.xml
@@ -35,6 +35,31 @@
notes.xml
+Public_Key 1.5.2
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ Fixed a bug in public_key:ssh_encode/2 that made
+ it possible to erroneously encode e.g. an RSA key with
+ another type e.g. ECDSA in the resulting binary.
+
+ Own Id: OTP-14570 Aux Id: ERIERL-52, OTP-14676
+
+ -
+
+ Corrected handling of parameterized EC keys in
+ public_key:generate_key/1 so that it will work as
+ expected instead of causing a runtime error in crypto.
+
+ Own Id: OTP-14620
+
+
+
+
+
+
Public_Key 1.5.1
Improvements and New Features
diff --git a/lib/runtime_tools/doc/src/notes.xml b/lib/runtime_tools/doc/src/notes.xml
index 8b4d437c26..93e3e26fda 100644
--- a/lib/runtime_tools/doc/src/notes.xml
+++ b/lib/runtime_tools/doc/src/notes.xml
@@ -32,6 +32,21 @@
This document describes the changes made to the Runtime_Tools
application.
+Runtime_Tools 1.12.3
+
+ Fixed Bugs and Malfunctions
+
+ -
+
Removed all old unused files in the documentation.
+
+
+ Own Id: OTP-14475 Aux Id: ERL-409, PR-1493
+
+
+
+
+
+
Runtime_Tools 1.12.2
Improvements and New Features
diff --git a/lib/sasl/doc/src/notes.xml b/lib/sasl/doc/src/notes.xml
index b144122c4b..e532c3cd6f 100644
--- a/lib/sasl/doc/src/notes.xml
+++ b/lib/sasl/doc/src/notes.xml
@@ -31,6 +31,26 @@
This document describes the changes made to the SASL application.
+SASL 3.1.1
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ The Report Browser, rb, could earlier not handle reports
+ that were not lists, for example generated by
+ error_logger:info_report({some, tuple}). This term
+ is allowed as input to error_logger, but rb would state
+ that "A report on bad form was encountered". This is now
+ corrected.
+
+ Own Id: OTP-13906 Aux Id: ERL-261
+
+
+
+
+
+
SASL 3.1
Improvements and New Features
diff --git a/lib/snmp/doc/src/notes.xml b/lib/snmp/doc/src/notes.xml
index 6bdcae5dd7..1b5f94ed07 100644
--- a/lib/snmp/doc/src/notes.xml
+++ b/lib/snmp/doc/src/notes.xml
@@ -34,7 +34,22 @@
- SNMP 5.2.8
+ SNMP 5.2.9
+
+ Fixed Bugs and Malfunctions
+
+ -
+
Removed all old unused files in the documentation.
+
+
+ Own Id: OTP-14475 Aux Id: ERL-409, PR-1493
+
+
+
+
+
+
+SNMP 5.2.8
Fixed Bugs and Malfunctions
diff --git a/lib/ssh/doc/src/notes.xml b/lib/ssh/doc/src/notes.xml
index c9e153f30c..4c8cbab858 100644
--- a/lib/ssh/doc/src/notes.xml
+++ b/lib/ssh/doc/src/notes.xml
@@ -30,6 +30,48 @@
notes.xml
+Ssh 4.6.3
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ Passphrase option for ecdsa public keys was missing.
+
+ Own Id: OTP-14602
+
+
+
+
+
+ Improvements and New Features
+
+ -
+
+ The host and user public key handling is hardened so that
+ a faulty plugin can't deliver a key of wrong type.
+
+ Better checks in the server of the available hostkey's
+ types at start and at each accept.
+
+ Better checks in the client of the available user public
+ key types at connect.
+
+ Own Id: OTP-14676 Aux Id: ERIERL-52, OTP-14570
+
+ -
+
+ SSH can now fetch the host key from the private keys
+ stored in an Engine. See the crypto application for
+ details about Engines.
+
+ Own Id: OTP-14757
+
+
+
+
+
+
Ssh 4.6.2
Fixed Bugs and Malfunctions
diff --git a/lib/ssl/doc/src/notes.xml b/lib/ssl/doc/src/notes.xml
index 37c916e585..79176f5edf 100644
--- a/lib/ssl/doc/src/notes.xml
+++ b/lib/ssl/doc/src/notes.xml
@@ -27,6 +27,61 @@
This document describes the changes made to the SSL application.
+SSL 8.2.3
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ Packet options cannot be supported for unreliable
+ transports, that is, packet option for DTLS over udp will
+ not be supported.
+
+ Own Id: OTP-14664
+
+ -
+
+ Ensure data delivery before close if possible. This fix
+ is related to fix in PR-1479.
+
+ Own Id: OTP-14794
+
+
+
+
+
+ Improvements and New Features
+
+ -
+
+ The crypto API is extended to use private/public keys
+ stored in an Engine for sign/verify or encrypt/decrypt
+ operations.
+
+ The ssl application provides an API to use this new
+ engine concept in TLS.
+
+ Own Id: OTP-14448
+
+ -
+
+ Implemented renegotiation for DTLS
+
+ Own Id: OTP-14563
+
+ -
+
+ A new command line option -ssl_dist_optfile has
+ been added to facilitate specifying the many options
+ needed when using SSL as the distribution protocol.
+
+ Own Id: OTP-14657
+
+
+
+
+
+
SSL 8.2.2
Fixed Bugs and Malfunctions
diff --git a/lib/stdlib/doc/src/notes.xml b/lib/stdlib/doc/src/notes.xml
index d396f1de8f..b61e5b9b9e 100644
--- a/lib/stdlib/doc/src/notes.xml
+++ b/lib/stdlib/doc/src/notes.xml
@@ -31,6 +31,49 @@
This document describes the changes made to the STDLIB application.
+STDLIB 3.4.3
+
+ Fixed Bugs and Malfunctions
+
+ -
+
Make ets:i/1 exit cleaner when ^D is input
+ while browsing a table. Only the old Erlang shell is
+ affected (erl(1) flag -oldshell).
+
+ Own Id: OTP-14663
+
+ -
+
+ Fixed handling of windows UNC paths in module
+ filename.
+
+ Own Id: OTP-14693
+
+
+
+
+
+ Improvements and New Features
+
+ -
+
+ Improve performance of the new string functionality when
+ handling ASCII characters.
+
+ Own Id: OTP-14670
+
+ -
+
+ Added a clarification to the documentation of
+ unicode:characters_to_list/2.
+
+ Own Id: OTP-14798
+
+
+
+
+
+
STDLIB 3.4.2
Fixed Bugs and Malfunctions
diff --git a/lib/syntax_tools/doc/src/notes.xml b/lib/syntax_tools/doc/src/notes.xml
index 8c91f01e3b..bd2bcde2c2 100644
--- a/lib/syntax_tools/doc/src/notes.xml
+++ b/lib/syntax_tools/doc/src/notes.xml
@@ -32,6 +32,21 @@
This document describes the changes made to the Syntax_Tools
application.
+Syntax_Tools 2.1.4
+
+ Fixed Bugs and Malfunctions
+
+ -
+
Removed all old unused files in the documentation.
+
+
+ Own Id: OTP-14475 Aux Id: ERL-409, PR-1493
+
+
+
+
+
+
Syntax_Tools 2.1.3
Improvements and New Features
diff --git a/lib/tools/doc/src/notes.xml b/lib/tools/doc/src/notes.xml
index 3eaa2058a0..1edc08c9cd 100644
--- a/lib/tools/doc/src/notes.xml
+++ b/lib/tools/doc/src/notes.xml
@@ -31,6 +31,21 @@
This document describes the changes made to the Tools application.
+Tools 2.11.1
+
+ Fixed Bugs and Malfunctions
+
+ -
+
Removed all old unused files in the documentation.
+
+
+ Own Id: OTP-14475 Aux Id: ERL-409, PR-1493
+
+
+
+
+
+
Tools 2.11
Fixed Bugs and Malfunctions
diff --git a/lib/wx/doc/src/notes.xml b/lib/wx/doc/src/notes.xml
index 599b5b64fd..69ea906ec0 100644
--- a/lib/wx/doc/src/notes.xml
+++ b/lib/wx/doc/src/notes.xml
@@ -32,6 +32,22 @@
This document describes the changes made to the wxErlang
application.
+Wx 1.8.3
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ wx crashes in otp 20.1 if empty binaries was sent down as
+ arguments.
+
+ Own Id: OTP-14688
+
+
+
+
+
+
Wx 1.8.2
Fixed Bugs and Malfunctions
diff --git a/lib/xmerl/doc/src/notes.xml b/lib/xmerl/doc/src/notes.xml
index 1162561225..f62a8dc53d 100644
--- a/lib/xmerl/doc/src/notes.xml
+++ b/lib/xmerl/doc/src/notes.xml
@@ -32,6 +32,21 @@
This document describes the changes made to the Xmerl application.
+Xmerl 1.3.16
+
+ Fixed Bugs and Malfunctions
+
+ -
+
Removed all old unused files in the documentation.
+
+
+ Own Id: OTP-14475 Aux Id: ERL-409, PR-1493
+
+
+
+
+
+
Xmerl 1.3.15
Fixed Bugs and Malfunctions
--
cgit v1.2.3