From fc0427be6d482182ec70f3cd87c73027cfb17ea9 Mon Sep 17 00:00:00 2001
From: Erlang/OTP
Date: Fri, 9 Dec 2016 11:45:22 +0100
Subject: Prepare release
---
erts/doc/src/notes.xml | 160 ++++++++++++++++++++++++++++++++++++
erts/vsn.mk | 2 +-
lib/common_test/doc/src/notes.xml | 59 +++++++++++++
lib/common_test/vsn.mk | 2 +-
lib/compiler/doc/src/notes.xml | 35 ++++++++
lib/compiler/vsn.mk | 2 +-
lib/crypto/doc/src/notes.xml | 40 +++++++++
lib/crypto/vsn.mk | 2 +-
lib/dialyzer/doc/src/notes.xml | 31 +++++++
lib/dialyzer/vsn.mk | 2 +-
lib/edoc/doc/src/notes.xml | 15 ++++
lib/edoc/vsn.mk | 2 +-
lib/erl_docgen/doc/src/notes.xml | 19 ++++-
lib/erl_docgen/vsn.mk | 2 +-
lib/erl_interface/doc/src/notes.xml | 29 +++++++
lib/erl_interface/vsn.mk | 2 +-
lib/eunit/doc/src/notes.xml | 16 ++++
lib/eunit/vsn.mk | 2 +-
lib/hipe/doc/src/notes.xml | 45 ++++++++++
lib/hipe/vsn.mk | 2 +-
lib/inets/doc/src/notes.xml | 61 +++++++++++++-
lib/inets/vsn.mk | 2 +-
lib/kernel/doc/src/notes.xml | 33 ++++++++
lib/kernel/vsn.mk | 2 +-
lib/mnesia/doc/src/notes.xml | 34 +++++++-
lib/mnesia/vsn.mk | 2 +-
lib/observer/doc/src/notes.xml | 54 ++++++++++++
lib/observer/vsn.mk | 2 +-
lib/odbc/doc/src/notes.xml | 23 +++++-
lib/odbc/vsn.mk | 2 +-
lib/parsetools/doc/src/notes.xml | 20 +++++
lib/parsetools/vsn.mk | 2 +-
lib/public_key/doc/src/notes.xml | 17 ++++
lib/runtime_tools/doc/src/notes.xml | 27 ++++++
lib/runtime_tools/vsn.mk | 2 +-
lib/sasl/doc/src/notes.xml | 18 ++++
lib/sasl/vsn.mk | 2 +-
lib/ssh/doc/src/notes.xml | 44 ++++++++++
lib/ssl/doc/src/notes.xml | 36 ++++++++
lib/stdlib/doc/src/notes.xml | 42 ++++++++++
lib/stdlib/vsn.mk | 2 +-
lib/syntax_tools/doc/src/notes.xml | 16 ++++
lib/syntax_tools/vsn.mk | 2 +-
lib/tools/doc/src/notes.xml | 36 ++++++++
lib/tools/vsn.mk | 2 +-
lib/wx/doc/src/notes.xml | 29 +++++++
lib/wx/vsn.mk | 2 +-
47 files changed, 957 insertions(+), 26 deletions(-)
diff --git a/erts/doc/src/notes.xml b/erts/doc/src/notes.xml
index dd260f2d1f..da6190b685 100644
--- a/erts/doc/src/notes.xml
+++ b/erts/doc/src/notes.xml
@@ -32,6 +32,166 @@
This document describes the changes made to the ERTS application.
+Erts 8.2
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ Fixed configure failures on MacOSX. Most important
+ clock_gettime() was detected when building for
+ MacOSX - El Capitan using XCode 8 despite it is not
+ available until MacOSX - Sierra.
+
+ Own Id: OTP-13904 Aux Id: ERL-256
+
+ -
+
+ code:add_pathsa/1 and command line option
+ -pa both revert the given list of directories when
+ adding it at the beginning of the code path. This is now
+ documented.
+
+ Own Id: OTP-13920 Aux Id: ERL-267
+
+ -
+
+ Fix a compilation error of erts in OpenBSD related to the
+ usage of the __errno variable.
+
+ Own Id: OTP-13927
+
+ -
+
+ Fixed so that when enabling tracing on a process that had
+ an invalid tracer associated with it, the new tracer
+ overwrites the old tracer. Before this fix, calling
+ erlang:trace/3 would behave as if the tracer was still
+ alive and not apply the new trace.
+
+ This fault was introduced in ERTS 8.0.
+
+ Own Id: OTP-13928
+
+ -
+
+ Fix parsing of -profile_boot 'true' | 'false'
+
+ Own Id: OTP-13955 Aux Id: ERL-280
+
+ -
+
+ A slight improvement of erlang:get_stacktrace/0
+ for exceptions raised in hipe compiled code. Beam
+ compiled functions in such stack trace was earlier
+ replaced by some unrelated function. They are now instead
+ omitted. This is an attempt to reduce the confusion in
+ the absence of a complete and correct stack trace for
+ mixed beam and hipe functions.
+
+ Own Id: OTP-13992
+
+ -
+
Correct type declaration of match specification head.
+
+
+ Own Id: OTP-13996
+
+ -
+
+ HiPE code loading failed for x86_64 if gcc was configured
+ with --enable-default-pie. Fixed by disabling PIE,
+ if needed for HiPE, when building the VM.
+
+ Own Id: OTP-14031 Aux Id: ERL-294, PR-1239
+
+ -
+
+ Faulty arguments could be presented on exception from a
+ NIF that had rescheduled itself using
+ enif_schedule_nif().
+
+ Own Id: OTP-14048
+
+ -
+
+ The runtime system could crash if a garbage collection on
+ a process was performed immediately after a NIF had been
+ rescheduled using enif_schedule_nif().
+
+ Own Id: OTP-14049
+
+ -
+
+ A reference to purged code could be left undetected by
+ the purge operation if a process just had rescheduled a
+ NIF call using enif_schedule_nif() when the
+ process was checked. This could cause a runtime system
+ crash.
+
+ Own Id: OTP-14050
+
+ -
+
Fixed a number of dirty scheduler related bugs:
+ Process priority was not handled correct
+ when scheduling on a dirty scheduler.
+ The runtime system could crash when an exit
+ signal with a compound exit reason was sent to a process
+ executing on a dirty scheduler.
The
+ runtime system crashed when call tracing a process
+ executing on a dirty scheduler.
A
+ code purge operation could end up hanging forever when a
+ process executed on a dirty scheduler
+
+ Own Id: OTP-14051
+
+ -
+
+ Fixed a number of bugs that caused faulty stack-traces to
+ be created on exception when a process was traced.
+
+ Own Id: OTP-14055
+
+
+
+
+
+ Improvements and New Features
+
+ -
+
+ Fix minor soft purge race bug that could incorrectly
+ trigger code_server to load new code for the module if
+ the soft purge failed and no current version of the
+ module existed.
+
+ Own Id: OTP-13925
+
+ -
+
+ To ease troubleshooting, erlang:load_nif/2 now
+ includes the return value from a failed call to
+ load/reload/upgrade in the text part of the error tuple.
+ The crypto NIF makes use of this feature by
+ returning the source line where/if the initialization
+ fails.
+
+ Own Id: OTP-13951
+
+ -
+
+ New environment variable ERL_CRASH_DUMP_BYTES can
+ be used to limit the size of crash dumps. If the limit is
+ reached, crash dump generation is aborted and the
+ generated file will be truncated.
+
+ Own Id: OTP-14046
+
+
+
+
+
+
Erts 8.1.1
Fixed Bugs and Malfunctions
diff --git a/erts/vsn.mk b/erts/vsn.mk
index 317d731cd7..af0be85062 100644
--- a/erts/vsn.mk
+++ b/erts/vsn.mk
@@ -18,7 +18,7 @@
# %CopyrightEnd%
#
-VSN = 8.1.1
+VSN = 8.2
# Port number 4365 in 4.2
# Port number 4366 in 4.3
diff --git a/lib/common_test/doc/src/notes.xml b/lib/common_test/doc/src/notes.xml
index 7653670d30..83e6511c04 100644
--- a/lib/common_test/doc/src/notes.xml
+++ b/lib/common_test/doc/src/notes.xml
@@ -33,6 +33,65 @@
notes.xml
+Common_Test 1.13
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ Some types of printouts to screen during test runs
+ (including ct:print/1,2,3,4) used the local
+ user process as IO device and these printouts
+ would not be visible when e.g. running tests via a shell
+ on a remote node. A default Common Test group leader
+ process has been introduced to solve the problem. This
+ process routes printouts to the group leader of the
+ starting process, if available, otherwise to user.
+
+ Own Id: OTP-13973 Aux Id: ERL-279
+
+ -
+
+ Some Common Test processes, that act as I/O group leaders
+ for test cases, would not terminate as expected at the
+ end of test runs. This error has been corrected.
+
+ Own Id: OTP-14026 Aux Id: ERL-287
+
+ -
+
+ The logging verbosity feature was incorrectly documented.
+ The default verbosity levels for test runs is e.g. not 50
+ (?STD_VERBOSITY), but 100 (?MAX_VERBOSITY).
+ Also, some of the examples had errors and flaws. The
+ corresponding chapter (5.18) in the User's Guide has been
+ updated.
+
+ Own Id: OTP-14044 Aux Id: seq13223
+
+
+
+
+
+ Improvements and New Features
+
+ -
+
+ A feature to let the user specify headings to log
+ printouts has been added. The heading is specified as
+ {heading,string()} in the Opts list
+ argument to ct:pal/3,4,5, ct:print/3,4,5,
+ or ct:log/3,4,5. If the heading option is omitted,
+ the category name, or "User", is used as the
+ heading instead.
+
+ Own Id: OTP-14043 Aux Id: seq13226
+
+
+
+
+
+
Common_Test 1.12.3
Fixed Bugs and Malfunctions
diff --git a/lib/common_test/vsn.mk b/lib/common_test/vsn.mk
index ab5cfd7a80..2fab4d3883 100644
--- a/lib/common_test/vsn.mk
+++ b/lib/common_test/vsn.mk
@@ -1 +1 @@
-COMMON_TEST_VSN = 1.12.3
+COMMON_TEST_VSN = 1.13
diff --git a/lib/compiler/doc/src/notes.xml b/lib/compiler/doc/src/notes.xml
index 6aaf16e9a5..2e58b68bf0 100644
--- a/lib/compiler/doc/src/notes.xml
+++ b/lib/compiler/doc/src/notes.xml
@@ -32,6 +32,41 @@
This document describes the changes made to the Compiler
application.
+Compiler 7.0.3
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ Fixed a compiler crash when maps were matched.
+
+ Own Id: OTP-13931 Aux Id: ERL-266
+
+ -
+
+ Fixed a compiler crash having to with the delayed
+ sub-creation optimization. (Thanks to Jose Valim for
+ reporting this bug.)
+
+ Own Id: OTP-13947 Aux Id: ERL-268
+
+ -
+
The compiler option inline_list_funcs
+ accidentally turned off some other optimizations.
+
+ Own Id: OTP-13985
+
+ -
+
The compiler could sometimes generate spurious
+ warnings when inlining was enabled.
+
+ Own Id: OTP-14040 Aux Id: ERL-301
+
+
+
+
+
+
Compiler 7.0.2
Fixed Bugs and Malfunctions
diff --git a/lib/compiler/vsn.mk b/lib/compiler/vsn.mk
index 87fde38f2b..9c3cf1f34b 100644
--- a/lib/compiler/vsn.mk
+++ b/lib/compiler/vsn.mk
@@ -1 +1 @@
-COMPILER_VSN = 7.0.2
+COMPILER_VSN = 7.0.3
diff --git a/lib/crypto/doc/src/notes.xml b/lib/crypto/doc/src/notes.xml
index 4ae64e059e..53ea6bb58b 100644
--- a/lib/crypto/doc/src/notes.xml
+++ b/lib/crypto/doc/src/notes.xml
@@ -31,6 +31,46 @@
This document describes the changes made to the Crypto application.
+Crypto 3.7.2
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ The crypto application has been fixed to not use RC2
+ against OpenSSL built with RC2 disabled.
+
+ Own Id: OTP-13895 Aux Id: PR-1163
+
+ -
+
+ The crypto application has been fixed to not use RC4
+ against OpenSSL built with RC4 disabled.
+
+ Own Id: OTP-13896 Aux Id: PR-1169
+
+
+
+
+
+ Improvements and New Features
+
+ -
+
+ To ease troubleshooting, erlang:load_nif/2 now
+ includes the return value from a failed call to
+ load/reload/upgrade in the text part of the error tuple.
+ The crypto NIF makes use of this feature by
+ returning the source line where/if the initialization
+ fails.
+
+ Own Id: OTP-13951
+
+
+
+
+
+
Crypto 3.7.1
Fixed Bugs and Malfunctions
diff --git a/lib/crypto/vsn.mk b/lib/crypto/vsn.mk
index bbee24554a..38e2db9033 100644
--- a/lib/crypto/vsn.mk
+++ b/lib/crypto/vsn.mk
@@ -1 +1 @@
-CRYPTO_VSN = 3.7.1
+CRYPTO_VSN = 3.7.2
diff --git a/lib/dialyzer/doc/src/notes.xml b/lib/dialyzer/doc/src/notes.xml
index d86deba48d..54abd09504 100644
--- a/lib/dialyzer/doc/src/notes.xml
+++ b/lib/dialyzer/doc/src/notes.xml
@@ -32,6 +32,37 @@
This document describes the changes made to the Dialyzer
application.
+Dialyzer 3.0.3
+
+ Fixed Bugs and Malfunctions
+
+ -
+
Fix bugs regarding opaque types.
+
+ Own Id: OTP-13693
+
+ -
+
Fix error handling of bad -dialyzer()
+ attributes.
+
+ Own Id: OTP-13979 Aux Id: ERL-283
+
+
+
+
+
+ Improvements and New Features
+
+ -
+
A few warning messages have been improved.
+
+ Own Id: OTP-11403
+
+
+
+
+
+
Dialyzer 3.0.2
Improvements and New Features
diff --git a/lib/dialyzer/vsn.mk b/lib/dialyzer/vsn.mk
index 6723876208..9830a36e60 100644
--- a/lib/dialyzer/vsn.mk
+++ b/lib/dialyzer/vsn.mk
@@ -1 +1 @@
-DIALYZER_VSN = 3.0.2
+DIALYZER_VSN = 3.0.3
diff --git a/lib/edoc/doc/src/notes.xml b/lib/edoc/doc/src/notes.xml
index e6ad2c683f..4982488335 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.1
+
+ Improvements and New Features
+
+ -
+
Document the function tags @param and
+ @returns.
+
+ Own Id: OTP-13930 Aux Id: PR-1175
+
+
+
+
+
+
Edoc 0.8
Improvements and New Features
diff --git a/lib/edoc/vsn.mk b/lib/edoc/vsn.mk
index d3cc732e9c..d66802fdac 100644
--- a/lib/edoc/vsn.mk
+++ b/lib/edoc/vsn.mk
@@ -1 +1 @@
-EDOC_VSN = 0.8
+EDOC_VSN = 0.8.1
diff --git a/lib/erl_docgen/doc/src/notes.xml b/lib/erl_docgen/doc/src/notes.xml
index cf24161d43..4824a755d9 100644
--- a/lib/erl_docgen/doc/src/notes.xml
+++ b/lib/erl_docgen/doc/src/notes.xml
@@ -31,7 +31,24 @@
This document describes the changes made to the erl_docgen application.
- Erl_Docgen 0.6
+ Erl_Docgen 0.6.1
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ Docgen would previously emit "utf8" as the default
+ encoding in xml. This has now been remedied by emitting
+ the correct string "UTF-8" instead.
+
+ Own Id: OTP-13971
+
+
+
+
+
+
+Erl_Docgen 0.6
Improvements and New Features
diff --git a/lib/erl_docgen/vsn.mk b/lib/erl_docgen/vsn.mk
index 6489d26327..d6106a2823 100644
--- a/lib/erl_docgen/vsn.mk
+++ b/lib/erl_docgen/vsn.mk
@@ -1 +1 @@
-ERL_DOCGEN_VSN = 0.6
+ERL_DOCGEN_VSN = 0.6.1
diff --git a/lib/erl_interface/doc/src/notes.xml b/lib/erl_interface/doc/src/notes.xml
index 4ef5454f44..69ba3cddb8 100644
--- a/lib/erl_interface/doc/src/notes.xml
+++ b/lib/erl_interface/doc/src/notes.xml
@@ -31,6 +31,35 @@
This document describes the changes made to the Erl_interface application.
+Erl_Interface 3.9.2
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ Fix ei_connect_init and ei_connect_xinit to
+ adjust the creation argument to be compatible with
+ nodes older than OTP-19.
+
+ Own Id: OTP-13981
+
+
+
+
+
+ Improvements and New Features
+
+ -
+
+ Editorial documentation changes
+
+ Own Id: OTP-13980
+
+
+
+
+
+
Erl_Interface 3.9.1
Fixed Bugs and Malfunctions
diff --git a/lib/erl_interface/vsn.mk b/lib/erl_interface/vsn.mk
index 82be43b7df..c7981ed3a5 100644
--- a/lib/erl_interface/vsn.mk
+++ b/lib/erl_interface/vsn.mk
@@ -1,2 +1,2 @@
-EI_VSN = 3.9.1
+EI_VSN = 3.9.2
ERL_INTERFACE_VSN = $(EI_VSN)
diff --git a/lib/eunit/doc/src/notes.xml b/lib/eunit/doc/src/notes.xml
index 6ae3c04bc8..8509f44ffc 100644
--- a/lib/eunit/doc/src/notes.xml
+++ b/lib/eunit/doc/src/notes.xml
@@ -33,6 +33,22 @@
This document describes the changes made to the EUnit application.
+Eunit 2.3.2
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ The address to the FSF in the license header has been
+ updated.
+
+ Own Id: OTP-14084
+
+
+
+
+
+
Eunit 2.3.1
Fixed Bugs and Malfunctions
diff --git a/lib/eunit/vsn.mk b/lib/eunit/vsn.mk
index 83d826f8b6..7eee75ee10 100644
--- a/lib/eunit/vsn.mk
+++ b/lib/eunit/vsn.mk
@@ -1 +1 @@
-EUNIT_VSN = 2.3.1
+EUNIT_VSN = 2.3.2
diff --git a/lib/hipe/doc/src/notes.xml b/lib/hipe/doc/src/notes.xml
index fc529fba61..0bdd60adfd 100644
--- a/lib/hipe/doc/src/notes.xml
+++ b/lib/hipe/doc/src/notes.xml
@@ -31,6 +31,51 @@
This document describes the changes made to HiPE.
+Hipe 3.15.3
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ Fix flow control bug in hipe compiler that may cause
+ compile time crash.
+
+ Own Id: OTP-13965 Aux Id: PR-1253
+
+ -
+
+ Fix bug in native compilation of bitstring pattern
+ matching causing erroneous runtime matching result. The
+ bug only affects code containing constant-valued segments
+ whose size is expressed in bits; it is triggered when the
+ pattern matching against these segments fails (i.e., when
+ the next clause needs to be tried).
+
+ Own Id: OTP-14005
+
+ -
+
+ Workaround in HiPE LLVM backend for a bug in LLVM 3.9.
+ The bug could cause LLVM-compiled modules to be rejected
+ during loading with a badarg exception in
+ hipe_bifs:enter_sdecs/1, but also cause corruption or
+ segmentation faults i runtime.
+
+ Own Id: OTP-14027 Aux Id: ERL-292, PR-1237
+
+ -
+
+ Fix a bug in HiPE LLVM backend involving incorrect type
+ tests of atoms sometimes causing incorrect behaviour or
+ even segfaults.
+
+ Own Id: OTP-14028 Aux Id: PR-1237
+
+
+
+
+
+
Hipe 3.15.2
Fixed Bugs and Malfunctions
diff --git a/lib/hipe/vsn.mk b/lib/hipe/vsn.mk
index f00ff0cf2e..cb4174381a 100644
--- a/lib/hipe/vsn.mk
+++ b/lib/hipe/vsn.mk
@@ -1 +1 @@
-HIPE_VSN = 3.15.2
+HIPE_VSN = 3.15.3
diff --git a/lib/inets/doc/src/notes.xml b/lib/inets/doc/src/notes.xml
index 0c7604ef65..398fc7e5b6 100644
--- a/lib/inets/doc/src/notes.xml
+++ b/lib/inets/doc/src/notes.xml
@@ -33,7 +33,66 @@
notes.xml
- Inets 6.3.3
+ Inets 6.3.4
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ Fixes a bug that makes the ftp client end up in bad state
+ if there is a multi line response from the server and the
+ response number is in the message being sent.
+
+ Own Id: OTP-13960 Aux Id: PR1196
+
+ -
+
+ The ftp client could stop consuming messages when the
+ multiline response handling was corrected.
+
+ Own Id: OTP-13967
+
+ -
+
+ Fix keep-alive https through proxy connections so that
+ all requests, following the first one, will run as
+ expected instead of failing.
+
+ Own Id: OTP-14041
+
+ -
+
+ Fix bug from commit
+ fdfda2fab0921d409789174556582db28141448e that could make
+ listing of group members in mod_auth callbacks fail.
+
+ Own Id: OTP-14082
+
+
+
+
+
+ Improvements and New Features
+
+ -
+
+ Update behavior of httpc:request to match RFC-7231
+
+ Own Id: OTP-13902
+
+ -
+
+ Fixed dialyzer warnings as well as some white-space
+ issues. Thanks to Kostis.
+
+ Own Id: OTP-13982 Aux Id: PR-1207
+
+
+
+
+
+
+Inets 6.3.3
Fixed Bugs and Malfunctions
diff --git a/lib/inets/vsn.mk b/lib/inets/vsn.mk
index f668ef106c..eef5abd610 100644
--- a/lib/inets/vsn.mk
+++ b/lib/inets/vsn.mk
@@ -19,6 +19,6 @@
# %CopyrightEnd%
APPLICATION = inets
-INETS_VSN = 6.3.3
+INETS_VSN = 6.3.4
PRE_VSN =
APP_VSN = "$(APPLICATION)-$(INETS_VSN)$(PRE_VSN)"
diff --git a/lib/kernel/doc/src/notes.xml b/lib/kernel/doc/src/notes.xml
index 5bcc0b7c09..9277c2d353 100644
--- a/lib/kernel/doc/src/notes.xml
+++ b/lib/kernel/doc/src/notes.xml
@@ -31,6 +31,39 @@
This document describes the changes made to the Kernel application.
+Kernel 5.1.1
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ code:add_pathsa/1 and command line option
+ -pa both revert the given list of directories when
+ adding it at the beginning of the code path. This is now
+ documented.
+
+ Own Id: OTP-13920 Aux Id: ERL-267
+
+ -
+
+ Add lost runtime dependency to erts-8.1. This should have
+ been done in kernel-5.1 (OTP-19.1) as it cannot run
+ without at least erts-8.1 (OTP-19.1).
+
+ Own Id: OTP-14003
+
+ -
+
+ Type and doc for gen_{tcp,udp,sctp}:controlling_process/2
+ has been improved.
+
+ Own Id: OTP-14022 Aux Id: PR-1208
+
+
+
+
+
+
Kernel 5.1
Fixed Bugs and Malfunctions
diff --git a/lib/kernel/vsn.mk b/lib/kernel/vsn.mk
index d3b2d18ae5..8d2517e680 100644
--- a/lib/kernel/vsn.mk
+++ b/lib/kernel/vsn.mk
@@ -1 +1 @@
-KERNEL_VSN = 5.1
+KERNEL_VSN = 5.1.1
diff --git a/lib/mnesia/doc/src/notes.xml b/lib/mnesia/doc/src/notes.xml
index e621bd593c..51c98d0d3e 100644
--- a/lib/mnesia/doc/src/notes.xml
+++ b/lib/mnesia/doc/src/notes.xml
@@ -39,7 +39,39 @@
thus constitutes one section in this document. The title of each
section is the version number of Mnesia.
- Mnesia 4.14.1
+ Mnesia 4.14.2
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ A continuation returned by mnesia:select/[14] should be
+ reusable in different, non-transactional activities.
+
+ Own Id: OTP-13944 Aux Id: PR-1184
+
+ -
+
+ Fixed crash when calling block_table multiple times.
+ Could happen when having locks for a long time and
+ restarting mnesia.
+
+ Own Id: OTP-13970 Aux Id: Seq-13198
+
+ -
+
+ Change mnesia_tm process to have off-heap messages since
+ mnesia_tm can be the receiver of many non-synchronized
+ message from other nodes.
+
+ Own Id: OTP-14074
+
+
+
+
+
+
+Mnesia 4.14.1
Improvements and New Features
diff --git a/lib/mnesia/vsn.mk b/lib/mnesia/vsn.mk
index f08e364276..439b21e58c 100644
--- a/lib/mnesia/vsn.mk
+++ b/lib/mnesia/vsn.mk
@@ -1 +1 @@
-MNESIA_VSN = 4.14.1
+MNESIA_VSN = 4.14.2
diff --git a/lib/observer/doc/src/notes.xml b/lib/observer/doc/src/notes.xml
index 659eb28292..8f3ebcb4de 100644
--- a/lib/observer/doc/src/notes.xml
+++ b/lib/observer/doc/src/notes.xml
@@ -32,6 +32,60 @@
This document describes the changes made to the Observer
application.
+Observer 2.3
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ The shell script (priv/bin/cdv) and bat file
+ (priv/bin/cdv.bat) which can be used for starting
+ crashdump_viewer both started a distributed erlang node.
+ This would cause any attempt at starting a second
+ instance of the crashdump_viewer to fail. To solve this
+ problem, cdv and cdv.bat now use non-distributed nodes
+ when starting the crashdump_viewer.
+
+ Own Id: OTP-14010
+
+ -
+
+ A bug caused the number of buckets to be shown in the
+ 'Objects' column, and the number of objects to be shown
+ in the 'Memory' column for ets table in crashdump_viewer.
+ This is now corrected.
+
+ Own Id: OTP-14064
+
+
+
+
+
+ Improvements and New Features
+
+ -
+
+ Add option queue_size to ttb:tracer/2. This sets
+ the maximum queue size for the IP trace driver which is
+ used when tracing to shell and/or {local,File}.
+
+ The default value for queue_size is specified by
+ dbg, and it is now changed from 50 to 200.
+
+ Own Id: OTP-13829 Aux Id: seq13171
+
+ -
+
+ The port information page is updated to show more
+ information per port.
+
+ Own Id: OTP-13948 Aux Id: ERL-272
+
+
+
+
+
+
Observer 2.2.2
Fixed Bugs and Malfunctions
diff --git a/lib/observer/vsn.mk b/lib/observer/vsn.mk
index 444089151e..dd23b08484 100644
--- a/lib/observer/vsn.mk
+++ b/lib/observer/vsn.mk
@@ -1 +1 @@
-OBSERVER_VSN = 2.2.2
+OBSERVER_VSN = 2.3
diff --git a/lib/odbc/doc/src/notes.xml b/lib/odbc/doc/src/notes.xml
index 7fb19a072e..cc25a21c74 100644
--- a/lib/odbc/doc/src/notes.xml
+++ b/lib/odbc/doc/src/notes.xml
@@ -32,7 +32,28 @@
This document describes the changes made to the odbc application.
- ODBC 2.11.3
+ ODBC 2.12
+
+ Improvements and New Features
+
+ -
+
+ Change configure to skip odbc for old MACs, the change in
+ PR-1227 is not backwards compatible with old MACs, and we
+ do not see a need to continue support for such old
+ versions. However it is still possible to make it work on
+ such machines using the --with-odbc configure option.
+
+ *** POTENTIAL INCOMPATIBILITY ***
+
+ Own Id: OTP-14083
+
+
+
+
+
+
+ODBC 2.11.3
Fixed Bugs and Malfunctions
diff --git a/lib/odbc/vsn.mk b/lib/odbc/vsn.mk
index a7c8f8079b..2e313570e1 100644
--- a/lib/odbc/vsn.mk
+++ b/lib/odbc/vsn.mk
@@ -1 +1 @@
-ODBC_VSN = 2.11.3
+ODBC_VSN = 2.12
diff --git a/lib/parsetools/doc/src/notes.xml b/lib/parsetools/doc/src/notes.xml
index 30a9374e81..5a16445577 100644
--- a/lib/parsetools/doc/src/notes.xml
+++ b/lib/parsetools/doc/src/notes.xml
@@ -31,6 +31,26 @@
This document describes the changes made to the Parsetools application.
+Parsetools 2.1.4
+
+ Fixed Bugs and Malfunctions
+
+ -
+
Correct counting of newlines when rules with newlines
+ are used in Leex.
+
+ Own Id: OTP-13916 Aux Id: ERL-263
+
+ -
+
Correct handling of Unicode in Leex.
+
+ Own Id: OTP-13919
+
+
+
+
+
+
Parsetools 2.1.3
Fixed Bugs and Malfunctions
diff --git a/lib/parsetools/vsn.mk b/lib/parsetools/vsn.mk
index 07cd959c98..d102c63730 100644
--- a/lib/parsetools/vsn.mk
+++ b/lib/parsetools/vsn.mk
@@ -1 +1 @@
-PARSETOOLS_VSN = 2.1.3
+PARSETOOLS_VSN = 2.1.4
diff --git a/lib/public_key/doc/src/notes.xml b/lib/public_key/doc/src/notes.xml
index c4d930c01f..74d1a57936 100644
--- a/lib/public_key/doc/src/notes.xml
+++ b/lib/public_key/doc/src/notes.xml
@@ -35,6 +35,23 @@
notes.xml
+Public_Key 1.3
+
+ Improvements and New Features
+
+ -
+
+ New function
+ public_key:ssh_hostkey_fingerprint/1,2 to
+ calculate the SSH host key fingerprint string.
+
+ Own Id: OTP-13888 Aux Id: OTP-13887
+
+
+
+
+
+
Public_Key 1.2
Fixed Bugs and Malfunctions
diff --git a/lib/runtime_tools/doc/src/notes.xml b/lib/runtime_tools/doc/src/notes.xml
index 0b830593b4..4c79a560ec 100644
--- a/lib/runtime_tools/doc/src/notes.xml
+++ b/lib/runtime_tools/doc/src/notes.xml
@@ -32,6 +32,33 @@
This document describes the changes made to the Runtime_Tools
application.
+Runtime_Tools 1.11
+
+ Improvements and New Features
+
+ -
+
+ Add option queue_size to ttb:tracer/2. This sets
+ the maximum queue size for the IP trace driver which is
+ used when tracing to shell and/or {local,File}.
+
+ The default value for queue_size is specified by
+ dbg, and it is now changed from 50 to 200.
+
+ Own Id: OTP-13829 Aux Id: seq13171
+
+ -
+
+ The port information page is updated to show more
+ information per port.
+
+ Own Id: OTP-13948 Aux Id: ERL-272
+
+
+
+
+
+
Runtime_Tools 1.10.1
Improvements and New Features
diff --git a/lib/runtime_tools/vsn.mk b/lib/runtime_tools/vsn.mk
index 0fc86e42f7..53fc51c198 100644
--- a/lib/runtime_tools/vsn.mk
+++ b/lib/runtime_tools/vsn.mk
@@ -1 +1 @@
-RUNTIME_TOOLS_VSN = 1.10.1
+RUNTIME_TOOLS_VSN = 1.11
diff --git a/lib/sasl/doc/src/notes.xml b/lib/sasl/doc/src/notes.xml
index 055d433524..190b937f03 100644
--- a/lib/sasl/doc/src/notes.xml
+++ b/lib/sasl/doc/src/notes.xml
@@ -31,6 +31,24 @@
This document describes the changes made to the SASL application.
+SASL 3.0.2
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ code:add_pathsa/1 and command line option
+ -pa both revert the given list of directories when
+ adding it at the beginning of the code path. This is now
+ documented.
+
+ Own Id: OTP-13920 Aux Id: ERL-267
+
+
+
+
+
+
SASL 3.0.1
Improvements and New Features
diff --git a/lib/sasl/vsn.mk b/lib/sasl/vsn.mk
index a7d7c09cde..e35a0c2977 100644
--- a/lib/sasl/vsn.mk
+++ b/lib/sasl/vsn.mk
@@ -1 +1 @@
-SASL_VSN = 3.0.1
+SASL_VSN = 3.0.2
diff --git a/lib/ssh/doc/src/notes.xml b/lib/ssh/doc/src/notes.xml
index f5a67bc00e..1837350284 100644
--- a/lib/ssh/doc/src/notes.xml
+++ b/lib/ssh/doc/src/notes.xml
@@ -30,6 +30,50 @@
notes.xml
+Ssh 4.4
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ A file read with an sftp client could loose data if the
+ packet_size is set to larger than 64k. This is corrected
+ now in such a way that the packet_size is silently
+ lowered if there is a risk for data loss.
+
+ Own Id: OTP-13857 Aux Id: ERL-238, OTP-13858
+
+ -
+
+ When user defined SSH shell REPL process exits with
+ reason normal, the SSH channel callback module should
+ report successful exit status to the SSH client. This
+ provides simple way for SSH clients to check for
+ successful completion of executed commands. (Thanks to
+ isvilen)
+
+ Own Id: OTP-13905 Aux Id: PR-1173
+
+
+
+
+
+ Improvements and New Features
+
+ -
+
+ Extended the option silently_accept_hosts for
+ ssh:connect to make it possible for the client to
+ check the SSH host key fingerprint string. Se the
+ reference manual for SSH.
+
+ Own Id: OTP-13887 Aux Id: OTP-13888
+
+
+
+
+
+
Ssh 4.3.6
Fixed Bugs and Malfunctions
diff --git a/lib/ssl/doc/src/notes.xml b/lib/ssl/doc/src/notes.xml
index c7f50777a8..29b8e8ff67 100644
--- a/lib/ssl/doc/src/notes.xml
+++ b/lib/ssl/doc/src/notes.xml
@@ -28,6 +28,42 @@
This document describes the changes made to the SSL application.
+SSL 8.1
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ List of possible anonymous suites, never supported by
+ default, where incorrect for some TLS versions.
+
+ Own Id: OTP-13926
+
+
+
+
+
+ Improvements and New Features
+
+ -
+
+ Experimental version of DTLS. It is runnable but not
+ complete and cannot be considered reliable for production
+ usage.
+
+ Own Id: OTP-12982
+
+ -
+
+ Add API options to handle ECC curve selection.
+
+ Own Id: OTP-13959
+
+
+
+
+
+
SSL 8.0.3
Fixed Bugs and Malfunctions
diff --git a/lib/stdlib/doc/src/notes.xml b/lib/stdlib/doc/src/notes.xml
index 554150380f..0143686bb2 100644
--- a/lib/stdlib/doc/src/notes.xml
+++ b/lib/stdlib/doc/src/notes.xml
@@ -31,6 +31,48 @@
This document describes the changes made to the STDLIB application.
+STDLIB 3.2
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ When a simple_one_for_one supervisor is shutting down,
+ and a child exits with an exit reason of the form
+ {shutdown, Term}, an error report was earlier printed.
+ This is now corrected.
+
+ Own Id: OTP-13907 Aux Id: PR-1158, ERL-163
+
+ -
+
Allow empty list as parameter of the fun used with
+ dbg:fun2ms/1.
+
+ Own Id: OTP-13974
+
+
+
+
+
+ Improvements and New Features
+
+ -
+
+ The new behaviour gen_statem has been improved with 3 new
+ features: the possibility to use old style non-proxy
+ timeouts for gen_statem:call/2,3, state entry code, and
+ state timeouts. These are backwards compatible. Minor
+ code and documentation improvements has been performed
+ including a borderline semantics correction of timeout
+ zero handling.
+
+ Own Id: OTP-13929 Aux Id: PR-1170, ERL-284
+
+
+
+
+
+
STDLIB 3.1
Fixed Bugs and Malfunctions
diff --git a/lib/stdlib/vsn.mk b/lib/stdlib/vsn.mk
index c74343d9ca..e67cb9b08d 100644
--- a/lib/stdlib/vsn.mk
+++ b/lib/stdlib/vsn.mk
@@ -1 +1 @@
-STDLIB_VSN = 3.1
+STDLIB_VSN = 3.2
diff --git a/lib/syntax_tools/doc/src/notes.xml b/lib/syntax_tools/doc/src/notes.xml
index 82c4484d96..e8de0ffce2 100644
--- a/lib/syntax_tools/doc/src/notes.xml
+++ b/lib/syntax_tools/doc/src/notes.xml
@@ -32,6 +32,22 @@
This document describes the changes made to the Syntax_Tools
application.
+Syntax_Tools 2.1.1
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ The address to the FSF in the license header has been
+ updated.
+
+ Own Id: OTP-14084
+
+
+
+
+
+
Syntax_Tools 2.1
Fixed Bugs and Malfunctions
diff --git a/lib/syntax_tools/vsn.mk b/lib/syntax_tools/vsn.mk
index c0ca083c38..c5e363112b 100644
--- a/lib/syntax_tools/vsn.mk
+++ b/lib/syntax_tools/vsn.mk
@@ -1 +1 @@
-SYNTAX_TOOLS_VSN = 2.1
+SYNTAX_TOOLS_VSN = 2.1.1
diff --git a/lib/tools/doc/src/notes.xml b/lib/tools/doc/src/notes.xml
index 2d9bee0dd1..415f1b8516 100644
--- a/lib/tools/doc/src/notes.xml
+++ b/lib/tools/doc/src/notes.xml
@@ -31,6 +31,42 @@
This document describes the changes made to the Tools application.
+Tools 2.9
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ Fix unhandled trace event send_to_non_existing_process in
+ fprof.
+
+ Own Id: OTP-13998
+
+
+
+
+
+ Improvements and New Features
+
+ -
+
+ Improved edoc support in emacs erlang-mode.
+
+ Own Id: OTP-13945 Aux Id: PR-1157
+
+ -
+
+ Added erldoc to emacs mode which opens html documentation
+ in browser from emacs. For example M-x erldoc-browse
+ RET lists:foreach/2.
+
+ Own Id: OTP-14018 Aux Id: PR-1197
+
+
+
+
+
+
Tools 2.8.6
Fixed Bugs and Malfunctions
diff --git a/lib/tools/vsn.mk b/lib/tools/vsn.mk
index e066dbf5e9..07bc39f76e 100644
--- a/lib/tools/vsn.mk
+++ b/lib/tools/vsn.mk
@@ -1 +1 @@
-TOOLS_VSN = 2.8.6
+TOOLS_VSN = 2.9
diff --git a/lib/wx/doc/src/notes.xml b/lib/wx/doc/src/notes.xml
index 70ff0a92b7..9086117c81 100644
--- a/lib/wx/doc/src/notes.xml
+++ b/lib/wx/doc/src/notes.xml
@@ -32,6 +32,35 @@
This document describes the changes made to the wxErlang
application.
+Wx 1.8
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ Allow string arguments to be binaries as specified, i.e.
+ unicode:chardata().
+
+ Own Id: OTP-13934 Aux Id: ERL-270
+
+
+
+
+
+ Improvements and New Features
+
+ -
+
+ Add wxWindow:dragAcceptFiles/2 and wxDropFilesEvent to
+ support simple drag and drop from file browser.
+
+ Own Id: OTP-13933
+
+
+
+
+
+
Wx 1.7.1
Fixed Bugs and Malfunctions
diff --git a/lib/wx/vsn.mk b/lib/wx/vsn.mk
index 0ce63d9f71..cfa256fb12 100644
--- a/lib/wx/vsn.mk
+++ b/lib/wx/vsn.mk
@@ -1 +1 @@
-WX_VSN = 1.7.1
+WX_VSN = 1.8
--
cgit v1.2.3