From 37e14c395a0d3621d65552b3954856d1cbeaed9a Mon Sep 17 00:00:00 2001 From: Erlang/OTP Date: Tue, 20 Sep 2016 09:36:54 +0200 Subject: Prepare release --- lib/asn1/doc/src/notes.xml | 16 +++++++++ lib/asn1/vsn.mk | 2 +- lib/common_test/doc/src/notes.xml | 36 ++++++++++++++++++++ lib/common_test/vsn.mk | 2 +- lib/compiler/doc/src/notes.xml | 37 ++++++++++++++++++++ lib/compiler/vsn.mk | 2 +- lib/crypto/doc/src/notes.xml | 26 ++++++++++++++ lib/crypto/vsn.mk | 2 +- lib/debugger/doc/src/notes.xml | 16 +++++++++ lib/debugger/vsn.mk | 2 +- lib/dialyzer/doc/src/notes.xml | 23 +++++++++++++ lib/dialyzer/vsn.mk | 2 +- lib/diameter/doc/src/notes.xml | 25 ++++++++++++++ lib/edoc/doc/src/notes.xml | 15 ++++++++ lib/edoc/vsn.mk | 2 +- lib/erl_docgen/doc/src/notes.xml | 17 +++++++++- lib/erl_docgen/vsn.mk | 2 +- lib/erl_interface/doc/src/notes.xml | 17 ++++++++++ lib/erl_interface/vsn.mk | 2 +- lib/eunit/doc/src/notes.xml | 17 ++++++++++ lib/eunit/vsn.mk | 2 +- lib/gs/doc/src/notes.xml | 18 +++++++++- lib/gs/vsn.mk | 2 +- lib/hipe/doc/src/notes.xml | 40 ++++++++++++++++++++++ lib/hipe/vsn.mk | 2 +- lib/ic/doc/src/notes.xml | 24 ++++++++++++- lib/ic/vsn.mk | 2 +- lib/inets/doc/src/notes.xml | 19 ++++++++++- lib/jinterface/doc/src/notes.xml | 16 +++++++++ lib/jinterface/vsn.mk | 2 +- lib/kernel/doc/src/notes.xml | 68 +++++++++++++++++++++++++++++++++++++ lib/kernel/vsn.mk | 2 +- lib/mnesia/doc/src/notes.xml | 16 ++++++++- lib/mnesia/vsn.mk | 2 +- lib/observer/doc/src/notes.xml | 16 +++++++++ lib/observer/vsn.mk | 2 +- lib/odbc/doc/src/notes.xml | 18 +++++++++- lib/odbc/vsn.mk | 2 +- lib/parsetools/doc/src/notes.xml | 16 +++++++++ lib/parsetools/vsn.mk | 2 +- lib/reltool/doc/src/notes.xml | 33 +++++++++++++++++- lib/reltool/vsn.mk | 2 +- lib/runtime_tools/doc/src/notes.xml | 14 ++++++++ lib/runtime_tools/vsn.mk | 2 +- lib/sasl/doc/src/notes.xml | 53 +++++++++++++++++++++++++++++ lib/sasl/vsn.mk | 2 +- lib/snmp/doc/src/notes.xml | 30 +++++++++++++++- lib/snmp/vsn.mk | 2 +- lib/ssh/doc/src/notes.xml | 62 +++++++++++++++++++++++++++++++++ lib/ssl/doc/src/notes.xml | 39 +++++++++++++++++++++ lib/stdlib/doc/src/notes.xml | 60 ++++++++++++++++++++++++++++++++ lib/syntax_tools/doc/src/notes.xml | 34 +++++++++++++++++++ lib/syntax_tools/vsn.mk | 2 +- lib/tools/doc/src/notes.xml | 32 +++++++++++++++++ lib/wx/doc/src/notes.xml | 17 ++++++++++ lib/wx/vsn.mk | 2 +- lib/xmerl/doc/src/notes.xml | 15 ++++++++ 57 files changed, 902 insertions(+), 33 deletions(-) (limited to 'lib') diff --git a/lib/asn1/doc/src/notes.xml b/lib/asn1/doc/src/notes.xml index ac3d9c828e..499a7e40c3 100644 --- a/lib/asn1/doc/src/notes.xml +++ b/lib/asn1/doc/src/notes.xml @@ -32,6 +32,22 @@

This document describes the changes made to the asn1 application.

+
Asn1 4.0.4 + +
Fixed Bugs and Malfunctions + + +

+ Compiling multiple ASN.1 modules in the same directory + with parallel make (make -j) should now be safe.

+

+ Own Id: OTP-13624

+
+
+
+ +
+
Asn1 4.0.3
Improvements and New Features diff --git a/lib/asn1/vsn.mk b/lib/asn1/vsn.mk index 527af05da1..e4bf3e2236 100644 --- a/lib/asn1/vsn.mk +++ b/lib/asn1/vsn.mk @@ -1 +1 @@ -ASN1_VSN = 4.0.3 +ASN1_VSN = 4.0.4 diff --git a/lib/common_test/doc/src/notes.xml b/lib/common_test/doc/src/notes.xml index 32ae699c7a..7653670d30 100644 --- a/lib/common_test/doc/src/notes.xml +++ b/lib/common_test/doc/src/notes.xml @@ -33,6 +33,42 @@ notes.xml +
Common_Test 1.12.3 + +
Fixed Bugs and Malfunctions + + +

+ If the telnet server would pause during transmission of a + line of text before terminating the line, the + ct_telnet:expect/3 function would print the line + twice in the test case HTML log. This problem has been + fixed.

+

+ Own Id: OTP-13730 Aux Id: seq13135

+
+ +

+ The functions ct:set_verbosity/2 and + ct:get_verbosity/1 have been added in order to + make it possible for test cases, CT Hooks, or test + framework functions, to modify and read verbosity levels + for logging.

+

+ Own Id: OTP-13841

+
+ +

make (tools) and ct_make (common_test) + would crash if an Erlang source file contained a + -warning() directive.

+

+ Own Id: OTP-13855

+
+
+
+ +
+
Common_Test 1.12.2
Fixed Bugs and Malfunctions diff --git a/lib/common_test/vsn.mk b/lib/common_test/vsn.mk index c68750886a..ab5cfd7a80 100644 --- a/lib/common_test/vsn.mk +++ b/lib/common_test/vsn.mk @@ -1 +1 @@ -COMMON_TEST_VSN = 1.12.2 +COMMON_TEST_VSN = 1.12.3 diff --git a/lib/compiler/doc/src/notes.xml b/lib/compiler/doc/src/notes.xml index dd6b132a92..6aaf16e9a5 100644 --- a/lib/compiler/doc/src/notes.xml +++ b/lib/compiler/doc/src/notes.xml @@ -32,6 +32,43 @@

This document describes the changes made to the Compiler application.

+
Compiler 7.0.2 + +
Fixed Bugs and Malfunctions + + +

+ If the compiler fails to write the BEAM file, it will now + report the reason of the error for the write operation.

+

+ Own Id: OTP-13701

+
+ +

+ Fixed an internal compiler error. (Thanks to Svilen + Ivanov for reporting this bug.)

+

+ Own Id: OTP-13780 Aux Id: ERL-202

+
+ +

+ The compiler could crash when trying to compile a + complicated expression with multiple catches all on one + line . (Thanks to Thomas Arts for reporting this bug.)

+

+ Own Id: OTP-13804 Aux Id: ERL-209

+
+ +

+ Eliminated a few internal compiler failures.

+

+ Own Id: OTP-13863

+
+
+
+ +
+
Compiler 7.0.1
Fixed Bugs and Malfunctions diff --git a/lib/compiler/vsn.mk b/lib/compiler/vsn.mk index 334784657e..87fde38f2b 100644 --- a/lib/compiler/vsn.mk +++ b/lib/compiler/vsn.mk @@ -1 +1 @@ -COMPILER_VSN = 7.0.1 +COMPILER_VSN = 7.0.2 diff --git a/lib/crypto/doc/src/notes.xml b/lib/crypto/doc/src/notes.xml index 56e165a1d1..4ae64e059e 100644 --- a/lib/crypto/doc/src/notes.xml +++ b/lib/crypto/doc/src/notes.xml @@ -31,6 +31,32 @@

This document describes the changes made to the Crypto application.

+
Crypto 3.7.1 + +
Fixed Bugs and Malfunctions + + +

+ Crypto has been fixed to work against OpenSSL versions + with disabled DES ciphers. Correct spelling of cipher + algorithm 'des3_cfb' has been introduced; the previous + misspeling still works.

+

+ Own Id: OTP-13783 Aux Id: ERL-203

+
+ +

+ The size of an internal array in crypto has been fixed to + not segfault when having all possible ciphers. Bug fix by + Duncan Overbruck.

+

+ Own Id: OTP-13789 Aux Id: PR-1140

+
+
+
+ +
+
Crypto 3.7
Improvements and New Features diff --git a/lib/crypto/vsn.mk b/lib/crypto/vsn.mk index 96466869d1..bbee24554a 100644 --- a/lib/crypto/vsn.mk +++ b/lib/crypto/vsn.mk @@ -1 +1 @@ -CRYPTO_VSN = 3.7 +CRYPTO_VSN = 3.7.1 diff --git a/lib/debugger/doc/src/notes.xml b/lib/debugger/doc/src/notes.xml index 2e0d834269..93bc46ddbe 100644 --- a/lib/debugger/doc/src/notes.xml +++ b/lib/debugger/doc/src/notes.xml @@ -33,6 +33,22 @@

This document describes the changes made to the Debugger application.

+
Debugger 4.2.1 + +
Fixed Bugs and Malfunctions + + +

+ Update build scripts to not make assumtions about where + env, cp and perl are located.

+

+ Own Id: OTP-13800

+
+
+
+ +
+
Debugger 4.2
Improvements and New Features diff --git a/lib/debugger/vsn.mk b/lib/debugger/vsn.mk index dd496013cd..f5440865ef 100644 --- a/lib/debugger/vsn.mk +++ b/lib/debugger/vsn.mk @@ -1 +1 @@ -DEBUGGER_VSN = 4.2 +DEBUGGER_VSN = 4.2.1 diff --git a/lib/dialyzer/doc/src/notes.xml b/lib/dialyzer/doc/src/notes.xml index 6400072b1f..b0f0a9aef0 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.0.2 + +
Improvements and New Features + + +

The translation of forms to types is improved for + opaque types in a few cases.

+

+ Own Id: OTP-13682

+
+ +

Add warning suppression to compiler-generated case + statements. Warnings about clauses that cannot match and + are also compiler generated are suppressed unless none of + the clauses return.

+

+ Own Id: OTP-13723 Aux Id: ERL-159, PR-1121

+
+
+
+ +
+
Dialyzer 3.0.1
Fixed Bugs and Malfunctions diff --git a/lib/dialyzer/vsn.mk b/lib/dialyzer/vsn.mk index b9a28afdd9..6723876208 100644 --- a/lib/dialyzer/vsn.mk +++ b/lib/dialyzer/vsn.mk @@ -1 +1 @@ -DIALYZER_VSN = 3.0.1 +DIALYZER_VSN = 3.0.2 diff --git a/lib/diameter/doc/src/notes.xml b/lib/diameter/doc/src/notes.xml index b1be7bdcf7..c2bbed2e5a 100644 --- a/lib/diameter/doc/src/notes.xml +++ b/lib/diameter/doc/src/notes.xml @@ -43,6 +43,31 @@ first.

+
diameter 1.12.1 + +
Fixed Bugs and Malfunctions + + +

+ Close diameter_tcp/sctp listening sockets at + diameter:stop_service/1.

+

+ Broken by OTP-13611.

+

+ Own Id: OTP-13787 Aux Id: OTP-13611

+
+ +

+ Update build scripts to not make assumtions about where + env, cp and perl are located.

+

+ Own Id: OTP-13800

+
+
+
+ +
+
diameter 1.12
Fixed Bugs and Malfunctions diff --git a/lib/edoc/doc/src/notes.xml b/lib/edoc/doc/src/notes.xml index ae8147c564..e6ad2c683f 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.8 + +
Improvements and New Features + + +

Improve types and specs in OTP documentation generated + from Erlang source files.

+

+ Own Id: OTP-13720 Aux Id: ERL-120

+
+
+
+ +
+
Edoc 0.7.19
Improvements and New Features diff --git a/lib/edoc/vsn.mk b/lib/edoc/vsn.mk index f38800b3e0..d3cc732e9c 100644 --- a/lib/edoc/vsn.mk +++ b/lib/edoc/vsn.mk @@ -1 +1 @@ -EDOC_VSN = 0.7.19 +EDOC_VSN = 0.8 diff --git a/lib/erl_docgen/doc/src/notes.xml b/lib/erl_docgen/doc/src/notes.xml index 21dc617d55..cf24161d43 100644 --- a/lib/erl_docgen/doc/src/notes.xml +++ b/lib/erl_docgen/doc/src/notes.xml @@ -31,7 +31,22 @@

This document describes the changes made to the erl_docgen application.

-
Erl_Docgen 0.5 +
Erl_Docgen 0.6 + +
Improvements and New Features + + +

Improve types and specs in OTP documentation generated + from Erlang source files.

+

+ Own Id: OTP-13720 Aux Id: ERL-120

+
+
+
+ +
+ +
Erl_Docgen 0.5
Fixed Bugs and Malfunctions diff --git a/lib/erl_docgen/vsn.mk b/lib/erl_docgen/vsn.mk index 98d1c3f7be..6489d26327 100644 --- a/lib/erl_docgen/vsn.mk +++ b/lib/erl_docgen/vsn.mk @@ -1 +1 @@ -ERL_DOCGEN_VSN = 0.5 +ERL_DOCGEN_VSN = 0.6 diff --git a/lib/erl_interface/doc/src/notes.xml b/lib/erl_interface/doc/src/notes.xml index a69c5aac11..4ef5454f44 100644 --- a/lib/erl_interface/doc/src/notes.xml +++ b/lib/erl_interface/doc/src/notes.xml @@ -31,6 +31,23 @@

This document describes the changes made to the Erl_interface application.

+
Erl_Interface 3.9.1 + +
Fixed Bugs and Malfunctions + + +

+ Look for .erlang.cookie in windows system directory if + HOMEDRIVE and HOMEPATH is not set. The same behaviour as + the VM.

+

+ Own Id: OTP-13849

+
+
+
+ +
+
Erl_Interface 3.9
Fixed Bugs and Malfunctions diff --git a/lib/erl_interface/vsn.mk b/lib/erl_interface/vsn.mk index 33705d1e8b..82be43b7df 100644 --- a/lib/erl_interface/vsn.mk +++ b/lib/erl_interface/vsn.mk @@ -1,2 +1,2 @@ -EI_VSN = 3.9 +EI_VSN = 3.9.1 ERL_INTERFACE_VSN = $(EI_VSN) diff --git a/lib/eunit/doc/src/notes.xml b/lib/eunit/doc/src/notes.xml index 88602e8222..6ae3c04bc8 100644 --- a/lib/eunit/doc/src/notes.xml +++ b/lib/eunit/doc/src/notes.xml @@ -33,6 +33,23 @@

This document describes the changes made to the EUnit application.

+
Eunit 2.3.1 + +
Fixed Bugs and Malfunctions + + +

+ When asserts were moved out to a separate header file, + the automatic enabling of asserts when testing is enabled + stopped working.

+

+ Own Id: OTP-13892

+
+
+
+ +
+
Eunit 2.3
Improvements and New Features diff --git a/lib/eunit/vsn.mk b/lib/eunit/vsn.mk index b551ee6eb6..83d826f8b6 100644 --- a/lib/eunit/vsn.mk +++ b/lib/eunit/vsn.mk @@ -1 +1 @@ -EUNIT_VSN = 2.3 +EUNIT_VSN = 2.3.1 diff --git a/lib/gs/doc/src/notes.xml b/lib/gs/doc/src/notes.xml index 20188c75e2..4f3f0645a5 100644 --- a/lib/gs/doc/src/notes.xml +++ b/lib/gs/doc/src/notes.xml @@ -31,7 +31,23 @@

This document describes the changes made to the GS application.

-
GS 1.6.1 +
GS 1.6.2 + +
Fixed Bugs and Malfunctions + + +

+ Update build scripts to not make assumtions about where + env, cp and perl are located.

+

+ Own Id: OTP-13800

+
+
+
+ +
+ +
GS 1.6.1
Improvements and New Features diff --git a/lib/gs/vsn.mk b/lib/gs/vsn.mk index c762507bab..d2c5d15a96 100644 --- a/lib/gs/vsn.mk +++ b/lib/gs/vsn.mk @@ -1,2 +1,2 @@ -GS_VSN = 1.6.1 +GS_VSN = 1.6.2 diff --git a/lib/hipe/doc/src/notes.xml b/lib/hipe/doc/src/notes.xml index e2a1524be6..fc529fba61 100644 --- a/lib/hipe/doc/src/notes.xml +++ b/lib/hipe/doc/src/notes.xml @@ -31,6 +31,46 @@

This document describes the changes made to HiPE.

+
Hipe 3.15.2 + +
Fixed Bugs and Malfunctions + + +

+ Fixed various hipe compiler backend bugs affecting mostly + ARM and SPARC.

+

+ Own Id: OTP-13846 Aux Id: PR-1146

+
+ +

+ Fixed some Dialyzer warnings and code cleanup for the + Sparc compiler backend.

+

+ Own Id: OTP-13861 Aux Id: PR-1148

+
+ +

Fix erl_bif_types opaque bug.

+

+ Own Id: OTP-13878 Aux Id: PR-1161, ERL-249

+
+
+
+ + +
Improvements and New Features + + +

+ Fix erl_types opaque match order

+

+ Own Id: OTP-13876

+
+
+
+ +
+
Hipe 3.15.1
Fixed Bugs and Malfunctions diff --git a/lib/hipe/vsn.mk b/lib/hipe/vsn.mk index e61c1a042c..f00ff0cf2e 100644 --- a/lib/hipe/vsn.mk +++ b/lib/hipe/vsn.mk @@ -1 +1 @@ -HIPE_VSN = 3.15.1 +HIPE_VSN = 3.15.2 diff --git a/lib/ic/doc/src/notes.xml b/lib/ic/doc/src/notes.xml index 08b02bc4a4..ea8bf758cf 100644 --- a/lib/ic/doc/src/notes.xml +++ b/lib/ic/doc/src/notes.xml @@ -31,7 +31,29 @@ notes.xml -
IC 4.4.1 +
IC 4.4.2 + +
Fixed Bugs and Malfunctions + + +

Correct bugs when path to mib or idl spec files + contains UTF-8 characters.

+

+ Own Id: OTP-13718 Aux Id: ERL-179

+
+ +

+ Update build scripts to not make assumtions about where + env, cp and perl are located.

+

+ Own Id: OTP-13800

+
+
+
+ +
+ +
IC 4.4.1
Improvements and New Features diff --git a/lib/ic/vsn.mk b/lib/ic/vsn.mk index 7d00ae0170..f0e5e7c266 100644 --- a/lib/ic/vsn.mk +++ b/lib/ic/vsn.mk @@ -1 +1 @@ -IC_VSN = 4.4.1 +IC_VSN = 4.4.2 diff --git a/lib/inets/doc/src/notes.xml b/lib/inets/doc/src/notes.xml index caa5a083a3..0c7604ef65 100644 --- a/lib/inets/doc/src/notes.xml +++ b/lib/inets/doc/src/notes.xml @@ -33,7 +33,24 @@ notes.xml -
Inets 6.3.2 +
Inets 6.3.3 + +
Fixed Bugs and Malfunctions + + +

+ The legacy option 'inet6fb4' for inets had stopped + working. This bug has now been corrected. Fix by Edwin + Fine in bugs.erlang.org ERL-200 and Github PR#1132.

+

+ Own Id: OTP-13776 Aux Id: ERL-200 PR-1132

+
+
+
+ +
+ +
Inets 6.3.2
Improvements and New Features diff --git a/lib/jinterface/doc/src/notes.xml b/lib/jinterface/doc/src/notes.xml index 3151fc4b5e..30f607c357 100644 --- a/lib/jinterface/doc/src/notes.xml +++ b/lib/jinterface/doc/src/notes.xml @@ -31,6 +31,22 @@

This document describes the changes made to the Jinterface application.

+
Jinterface 1.7.1 + +
Fixed Bugs and Malfunctions + + +

+ Update build scripts to not make assumtions about where + env, cp and perl are located.

+

+ Own Id: OTP-13800

+
+
+
+ +
+
Jinterface 1.7
Fixed Bugs and Malfunctions diff --git a/lib/jinterface/vsn.mk b/lib/jinterface/vsn.mk index 752b34e78c..c29d9df3d7 100644 --- a/lib/jinterface/vsn.mk +++ b/lib/jinterface/vsn.mk @@ -1 +1 @@ -JINTERFACE_VSN = 1.7 +JINTERFACE_VSN = 1.7.1 diff --git a/lib/kernel/doc/src/notes.xml b/lib/kernel/doc/src/notes.xml index 9e9be3f661..5bcc0b7c09 100644 --- a/lib/kernel/doc/src/notes.xml +++ b/lib/kernel/doc/src/notes.xml @@ -31,6 +31,74 @@

This document describes the changes made to the Kernel application.

+
Kernel 5.1 + +
Fixed Bugs and Malfunctions + + +

+ Fix a memory leak when calling + seq_trace:get_system_tracer().

+

+ Own Id: OTP-13742

+
+ +

+ Fix for the problem that when adding the ebin directory + of an application to the code path, the + code:priv_dir/1 function returns an incorrect path + to the priv directory of the same application.

+

+ Own Id: OTP-13758 Aux Id: ERL-195

+
+ +

+ Fix code_server crash when adding code paths of two + levels.

+

+ Own Id: OTP-13765 Aux Id: ERL-194

+
+ +

+ Respect -proto_dist switch while connection to EPMD

+

+ Own Id: OTP-13770 Aux Id: PR-1129

+
+ +

+ Fixed a bug where init:stop could deadlock if a process + with infinite shutdown timeout (e.g. a supervisor) + attempted to load code while terminating.

+

+ Own Id: OTP-13802

+
+ +

+ Close stdin of commands run in os:cmd. This is a + backwards compatiblity fix that restores the behaviour of + pre 19.0 os:cmd.

+

+ Own Id: OTP-13867 Aux Id: seq13178

+
+
+
+ + +
Improvements and New Features + + +

+ Add net_kernel:setopts/2 and + net_kernel:getopts/2 to control options for + distribution sockets in runtime.

+

+ Own Id: OTP-13564

+
+
+
+ +
+
Kernel 5.0.2
Fixed Bugs and Malfunctions diff --git a/lib/kernel/vsn.mk b/lib/kernel/vsn.mk index cdd200a234..d3b2d18ae5 100644 --- a/lib/kernel/vsn.mk +++ b/lib/kernel/vsn.mk @@ -1 +1 @@ -KERNEL_VSN = 5.0.2 +KERNEL_VSN = 5.1 diff --git a/lib/mnesia/doc/src/notes.xml b/lib/mnesia/doc/src/notes.xml index 7d8e8d0c44..e621bd593c 100644 --- a/lib/mnesia/doc/src/notes.xml +++ b/lib/mnesia/doc/src/notes.xml @@ -39,7 +39,21 @@ thus constitutes one section in this document. The title of each section is the version number of Mnesia.

-
Mnesia 4.14 +
Mnesia 4.14.1 + +
Improvements and New Features + + +

Correct some minor documentation issues.

+

+ Own Id: OTP-13891

+
+
+
+ +
+ +
Mnesia 4.14
Improvements and New Features diff --git a/lib/mnesia/vsn.mk b/lib/mnesia/vsn.mk index fb4200f62d..f08e364276 100644 --- a/lib/mnesia/vsn.mk +++ b/lib/mnesia/vsn.mk @@ -1 +1 @@ -MNESIA_VSN = 4.14 +MNESIA_VSN = 4.14.1 diff --git a/lib/observer/doc/src/notes.xml b/lib/observer/doc/src/notes.xml index f79f75fead..659eb28292 100644 --- a/lib/observer/doc/src/notes.xml +++ b/lib/observer/doc/src/notes.xml @@ -32,6 +32,22 @@

This document describes the changes made to the Observer application.

+
Observer 2.2.2 + +
Fixed Bugs and Malfunctions + + +

+ Fixed error handling in observer when mnesia tables was + requested and not available.

+

+ Own Id: OTP-13845 Aux Id: ERL-237

+
+
+
+ +
+
Observer 2.2.1
Fixed Bugs and Malfunctions diff --git a/lib/observer/vsn.mk b/lib/observer/vsn.mk index 9a7c6a546f..444089151e 100644 --- a/lib/observer/vsn.mk +++ b/lib/observer/vsn.mk @@ -1 +1 @@ -OBSERVER_VSN = 2.2.1 +OBSERVER_VSN = 2.2.2 diff --git a/lib/odbc/doc/src/notes.xml b/lib/odbc/doc/src/notes.xml index 40f9339028..7fb19a072e 100644 --- a/lib/odbc/doc/src/notes.xml +++ b/lib/odbc/doc/src/notes.xml @@ -32,7 +32,23 @@

This document describes the changes made to the odbc application.

-
ODBC 2.11.2 +
ODBC 2.11.3 + +
Fixed Bugs and Malfunctions + + +

+ ODBC build configure has been updated to accept Mac OS X + El Capitan. Fixed by Lee Bannard.

+

+ Own Id: OTP-13781

+
+
+
+ +
+ +
ODBC 2.11.2
Improvements and New Features diff --git a/lib/odbc/vsn.mk b/lib/odbc/vsn.mk index 957c6b42eb..a7c8f8079b 100644 --- a/lib/odbc/vsn.mk +++ b/lib/odbc/vsn.mk @@ -1 +1 @@ -ODBC_VSN = 2.11.2 +ODBC_VSN = 2.11.3 diff --git a/lib/parsetools/doc/src/notes.xml b/lib/parsetools/doc/src/notes.xml index b826b4d03a..30a9374e81 100644 --- a/lib/parsetools/doc/src/notes.xml +++ b/lib/parsetools/doc/src/notes.xml @@ -31,6 +31,22 @@

This document describes the changes made to the Parsetools application.

+
Parsetools 2.1.3 + +
Fixed Bugs and Malfunctions + + +

Yecc generates Dialyzer suppressions to avoid + warnings when operator precedence declarations are used. +

+

+ Own Id: OTP-13681

+
+
+
+ +
+
Parsetools 2.1.2
Improvements and New Features diff --git a/lib/parsetools/vsn.mk b/lib/parsetools/vsn.mk index befdd82d6e..07cd959c98 100644 --- a/lib/parsetools/vsn.mk +++ b/lib/parsetools/vsn.mk @@ -1 +1 @@ -PARSETOOLS_VSN = 2.1.2 +PARSETOOLS_VSN = 2.1.3 diff --git a/lib/reltool/doc/src/notes.xml b/lib/reltool/doc/src/notes.xml index 25d983afd3..2365a68feb 100644 --- a/lib/reltool/doc/src/notes.xml +++ b/lib/reltool/doc/src/notes.xml @@ -38,7 +38,38 @@ thus constitutes one section in this document. The title of each section is the version number of Reltool.

-
Reltool 0.7.1 +
Reltool 0.7.2 + +
Fixed Bugs and Malfunctions + + +

+ Dependencies specified in .app files would earlier only + be followed for applications that are included in a 'rel' + spec in the reltool config. For other applications, only + xref would decide the dependencies.

+

+ Some dependency chains would even be missed for + applications that are included in a 'rel' spec in the + reltool config. E.g.

+

+ Application x has y as included application, + and y in turn has z as included application. Then z is + not included. Application x has y in its + 'applications' tag in the .app file, and y in turn has z + as included application. Then z is not included. +

+

+ These bugs are now corrected.

+

+ Own Id: OTP-11993

+
+
+
+ +
+ +
Reltool 0.7.1
Improvements and New Features diff --git a/lib/reltool/vsn.mk b/lib/reltool/vsn.mk index 76f69fd294..2b23ff6f20 100644 --- a/lib/reltool/vsn.mk +++ b/lib/reltool/vsn.mk @@ -1 +1 @@ -RELTOOL_VSN = 0.7.1 +RELTOOL_VSN = 0.7.2 diff --git a/lib/runtime_tools/doc/src/notes.xml b/lib/runtime_tools/doc/src/notes.xml index b6dfb2dd28..0b830593b4 100644 --- a/lib/runtime_tools/doc/src/notes.xml +++ b/lib/runtime_tools/doc/src/notes.xml @@ -32,6 +32,20 @@

This document describes the changes made to the Runtime_Tools application.

+
Runtime_Tools 1.10.1 + +
Improvements and New Features + + +

Correct some minor documentation issues.

+

+ Own Id: OTP-13891

+
+
+
+ +
+
Runtime_Tools 1.10
Fixed Bugs and Malfunctions diff --git a/lib/runtime_tools/vsn.mk b/lib/runtime_tools/vsn.mk index b33f6f4721..0fc86e42f7 100644 --- a/lib/runtime_tools/vsn.mk +++ b/lib/runtime_tools/vsn.mk @@ -1 +1 @@ -RUNTIME_TOOLS_VSN = 1.10 +RUNTIME_TOOLS_VSN = 1.10.1 diff --git a/lib/sasl/doc/src/notes.xml b/lib/sasl/doc/src/notes.xml index bd713af932..055d433524 100644 --- a/lib/sasl/doc/src/notes.xml +++ b/lib/sasl/doc/src/notes.xml @@ -31,6 +31,59 @@

This document describes the changes made to the SASL application.

+
SASL 3.0.1 + +
Improvements and New Features + + +

+ Improved dirty scheduler support. A purge of a module can + now be performed without having to wait for completion of + all ongoing dirty NIF calls.

+

+ Note that when enabling support for dirty schedulers, a + new purge strategy will as of ERTS version 8.1 be + enabled. This new strategy is not fully backwards + compatible with the strategy used by default. For more + information see the documentation of erlang:check_process_code/3.

+

+ Own Id: OTP-13808 Aux Id: OTP-13833

+
+ +

+ A new purge strategy has been introduced. The new + strategy will by default be disabled during the OTP 19 + release, but will be the only strategy available as of + the OTP 20 release.

+

+ The new strategy is slightly incompatible with the + strategy being used by default in OTP 19. Using the + default strategy, processes holding funs that + refer to the module being purged either fail a soft + purge, or will be killed during a hard purge. The new + strategy completely ignores funs. If funs + referring to the code being purged exist, and are used + after a purge, an exception will be raised upon usage. + That is, the behavior will be exactly the same as the + case when a fun is received by a process after the + purge.

+

+ The new strategy can optionally be enabled when building + OTP during OTP 19, and will automatically be enabled if + the runtime system is built with support for dirty + schedulers.

+

+ For more information see the documentation of erlang:check_process_code/3.

+

+ Own Id: OTP-13833

+
+
+
+ +
+
SASL 3.0
Improvements and New Features diff --git a/lib/sasl/vsn.mk b/lib/sasl/vsn.mk index fd0fc9b8b5..a7d7c09cde 100644 --- a/lib/sasl/vsn.mk +++ b/lib/sasl/vsn.mk @@ -1 +1 @@ -SASL_VSN = 3.0 +SASL_VSN = 3.0.1 diff --git a/lib/snmp/doc/src/notes.xml b/lib/snmp/doc/src/notes.xml index 0f5c35b300..3323d32878 100644 --- a/lib/snmp/doc/src/notes.xml +++ b/lib/snmp/doc/src/notes.xml @@ -34,7 +34,35 @@ -
SNMP 5.2.3 +
SNMP 5.2.4 + +
Fixed Bugs and Malfunctions + + +

Correct bugs when path to mib or idl spec files + contains UTF-8 characters.

+

+ Own Id: OTP-13718 Aux Id: ERL-179

+
+
+
+ + +
Improvements and New Features + + +

+ Solves snmp config string handling as reported by ERL-164 + and solved by PR-1100

+

+ Own Id: OTP-13706

+
+
+
+ +
+ +
SNMP 5.2.3
Improvements and New Features diff --git a/lib/snmp/vsn.mk b/lib/snmp/vsn.mk index f95b428290..28eba0d0d6 100644 --- a/lib/snmp/vsn.mk +++ b/lib/snmp/vsn.mk @@ -19,6 +19,6 @@ # %CopyrightEnd% APPLICATION = snmp -SNMP_VSN = 5.2.3 +SNMP_VSN = 5.2.4 PRE_VSN = APP_VSN = "$(APPLICATION)-$(SNMP_VSN)$(PRE_VSN)" diff --git a/lib/ssh/doc/src/notes.xml b/lib/ssh/doc/src/notes.xml index f9d11b2a60..b990c18e9a 100644 --- a/lib/ssh/doc/src/notes.xml +++ b/lib/ssh/doc/src/notes.xml @@ -30,6 +30,68 @@ notes.xml +
Ssh 4.3.2 + +
Fixed Bugs and Malfunctions + + +

+ Upgrade of an established client connection could crash + because the ssh client supervisors children had wrong + type. This is fixed now.

+

+ Own Id: OTP-13782 Aux Id: seq13158

+
+ +

+ Partly checks the public key early in public key + authorization

+

+ Own Id: OTP-13847 Aux Id: + defensics-ssh3.1.0-190243,205277,219318

+
+ +

+ Corrected handling of SHA for ECDSA (Elliptic curve + public keys)

+

+ Own Id: OTP-13850 Aux Id: defensics-ssh3.1.0-214168

+
+ +

+ Problems found by test suites as well as by + Codenomicon/Defensics fixed: - reduce max random padding + to 15 bytes (Codenomicon/Defensics) - inclomplete pdu + handling (Codenomicon/Defensics) - badmatch in test suite + - non-blocking send fixes deadlock in + ssh_connection_SUITE:interrupted_send

+

+ Own Id: OTP-13854

+
+ +

+ Caller is now notified when a tcp close is received.

+

+ Own Id: OTP-13859 Aux Id: seq13177

+
+
+
+ + +
Improvements and New Features + + +

+ Use application:ensure_all_started/2 instead of + hard-coding deps

+

+ Own Id: OTP-13843 Aux Id: PR-1147

+
+
+
+ +
+
Ssh 4.3.1
Fixed Bugs and Malfunctions diff --git a/lib/ssl/doc/src/notes.xml b/lib/ssl/doc/src/notes.xml index 9d68ee0eee..d02e21a013 100644 --- a/lib/ssl/doc/src/notes.xml +++ b/lib/ssl/doc/src/notes.xml @@ -28,6 +28,45 @@

This document describes the changes made to the SSL application.

+
SSL 8.0.2 + +
Fixed Bugs and Malfunctions + + +

+ Correctly formed handshake messages received out of order + will now correctly fail the connection with unexpected + message.

+

+ Own Id: OTP-13853

+
+
+
+ + +
Improvements and New Features + + +

+ ssl application now behaves gracefully also on partially + incorrect input from peer.

+

+ Own Id: OTP-13834

+
+ +

+ Add application environment configuration + bypass_pem_cache. This can be used as a workaround for + the current implementation of the PEM-cache that has + proven to be a bottleneck.

+

+ Own Id: OTP-13883

+
+
+
+ +
+
SSL 8.0.1
Fixed Bugs and Malfunctions diff --git a/lib/stdlib/doc/src/notes.xml b/lib/stdlib/doc/src/notes.xml index f0347703e7..554150380f 100644 --- a/lib/stdlib/doc/src/notes.xml +++ b/lib/stdlib/doc/src/notes.xml @@ -31,6 +31,66 @@

This document describes the changes made to the STDLIB application.

+
STDLIB 3.1 + +
Fixed Bugs and Malfunctions + + +

+ The zip:unzip/1,2 and zip:extract/1,2 + functions have been updated to handle directory traversal + exploits. Any element in the zip file that contains a + path that points to a directory above the top level + working directory, cwd, will instead be extracted + in cwd. An error message is printed for any such + element in the zip file during the unzip operation. The + keep_old_files option determines if a file will + overwrite a previous file with the same name within the + zip file.

+

+ Own Id: OTP-13633

+
+ +

Correct the contracts for + ets:match_object/1,3.

+

+ Own Id: OTP-13721 Aux Id: PR-1113

+
+ +

+ Errors in type specification and Emacs template + generation for gen_statem:code_change/4 has been + fixed from bugs.erlang.org's Jira cases ERL-172 and + ERL-187.

+

+ Own Id: OTP-13746 Aux Id: ERL-172, ERL-187

+
+
+
+ + +
Improvements and New Features + + +

+ gen_statem has been changed to set the callback mode for + a server to what Module:callback_mode/0 returns. This + facilitates e.g code downgrade since the callback mode + now becomes a property of the currently active code, not + of the server process.

+

+ Exception handling from Module:init/1 has also been + improved.

+

+ *** POTENTIAL INCOMPATIBILITY ***

+

+ Own Id: OTP-13752

+
+
+
+ +
+
STDLIB 3.0.1
Fixed Bugs and Malfunctions diff --git a/lib/syntax_tools/doc/src/notes.xml b/lib/syntax_tools/doc/src/notes.xml index ef207f7c3d..82c4484d96 100644 --- a/lib/syntax_tools/doc/src/notes.xml +++ b/lib/syntax_tools/doc/src/notes.xml @@ -32,6 +32,40 @@

This document describes the changes made to the Syntax_Tools application.

+
Syntax_Tools 2.1 + +
Fixed Bugs and Malfunctions + + +

Fix a bug where erl_tidy crashed on the tilde + character when printing to standard output.

+

+ Own Id: OTP-13725 Aux Id: ERL-151, PR-1071

+
+ +

merl_transform could get into an infinite loop + when syntactically incorrect text was passed to a + merl:qquote/2,3 call.

+

+ Own Id: OTP-13755

+
+
+
+ + +
Improvements and New Features + + +

Improve types and specs in OTP documentation generated + from Erlang source files.

+

+ Own Id: OTP-13720 Aux Id: ERL-120

+
+
+
+ +
+
Syntax_Tools 2.0
Improvements and New Features diff --git a/lib/syntax_tools/vsn.mk b/lib/syntax_tools/vsn.mk index f09c2a01d0..c0ca083c38 100644 --- a/lib/syntax_tools/vsn.mk +++ b/lib/syntax_tools/vsn.mk @@ -1 +1 @@ -SYNTAX_TOOLS_VSN = 2.0 +SYNTAX_TOOLS_VSN = 2.1 diff --git a/lib/tools/doc/src/notes.xml b/lib/tools/doc/src/notes.xml index a0a817c0f2..2d9bee0dd1 100644 --- a/lib/tools/doc/src/notes.xml +++ b/lib/tools/doc/src/notes.xml @@ -31,6 +31,38 @@

This document describes the changes made to the Tools application.

+
Tools 2.8.6 + +
Fixed Bugs and Malfunctions + + +

+ Errors in type specification and Emacs template + generation for gen_statem:code_change/4 has been + fixed from bugs.erlang.org's Jira cases ERL-172 and + ERL-187.

+

+ Own Id: OTP-13746 Aux Id: ERL-172, ERL-187

+
+ +

+ Fix gc_start/gc_end in fprof tags when parsing old trace + logs.

+

+ Own Id: OTP-13778 Aux Id: PR-1136

+
+ +

make (tools) and ct_make (common_test) + would crash if an Erlang source file contained a + -warning() directive.

+

+ Own Id: OTP-13855

+
+
+
+ +
+
Tools 2.8.5
Fixed Bugs and Malfunctions diff --git a/lib/wx/doc/src/notes.xml b/lib/wx/doc/src/notes.xml index 4f0e166924..70ff0a92b7 100644 --- a/lib/wx/doc/src/notes.xml +++ b/lib/wx/doc/src/notes.xml @@ -32,6 +32,23 @@

This document describes the changes made to the wxErlang application.

+
Wx 1.7.1 + +
Fixed Bugs and Malfunctions + + +

+ Increased the stacksize for the wx thread. The default + stacksize on Windows is 1MB which is not enough if the + user created many nested dialogs.

+

+ Own Id: OTP-13816

+
+
+
+ +
+
Wx 1.7
Fixed Bugs and Malfunctions diff --git a/lib/wx/vsn.mk b/lib/wx/vsn.mk index de4e5e1935..0ce63d9f71 100644 --- a/lib/wx/vsn.mk +++ b/lib/wx/vsn.mk @@ -1 +1 @@ -WX_VSN = 1.7 +WX_VSN = 1.7.1 diff --git a/lib/xmerl/doc/src/notes.xml b/lib/xmerl/doc/src/notes.xml index 0abcb87998..12e64537ed 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.12 + +
Fixed Bugs and Malfunctions + + +

Fix a number of broken links in the xmerl + documentation.

+

+ Own Id: OTP-13880

+
+
+
+ +
+
Xmerl 1.3.11
Improvements and New Features -- cgit v1.2.3