From 25237481ccccd3ddfa74582dc267632ad618ba30 Mon Sep 17 00:00:00 2001
From: Erlang/OTP
Date: Mon, 9 Dec 2013 20:12:33 +0100
Subject: Prepare release
---
lib/asn1/doc/src/notes.xml | 60 ++++++++++++++++++
lib/asn1/vsn.mk | 2 +-
lib/common_test/doc/src/notes.xml | 120 ++++++++++++++++++++++++++++++++++++
lib/common_test/vsn.mk | 2 +-
lib/compiler/doc/src/notes.xml | 28 +++++++++
lib/compiler/vsn.mk | 2 +-
lib/crypto/doc/src/notes.xml | 16 +++++
lib/crypto/vsn.mk | 2 +-
lib/diameter/doc/src/notes.xml | 42 +++++++++++++
lib/eldap/doc/src/notes.xml | 34 +++++++++-
lib/eldap/vsn.mk | 2 +-
lib/erl_interface/doc/src/notes.xml | 15 +++++
lib/erl_interface/vsn.mk | 2 +-
lib/eunit/doc/src/notes.xml | 29 +++++++++
lib/eunit/vsn.mk | 2 +-
lib/hipe/doc/src/notes.xml | 17 +++++
lib/hipe/vsn.mk | 2 +-
lib/ic/doc/src/notes.xml | 24 +++++++-
lib/ic/vsn.mk | 2 +-
lib/inets/doc/src/notes.xml | 58 ++++++++++++++++-
lib/inets/vsn.mk | 2 +-
lib/kernel/doc/src/notes.xml | 63 +++++++++++++++++++
lib/mnesia/doc/src/notes.xml | 26 +++++++-
lib/mnesia/vsn.mk | 2 +-
lib/observer/doc/src/notes.xml | 25 ++++++++
lib/observer/vsn.mk | 2 +-
lib/odbc/doc/src/notes.xml | 18 +++++-
lib/odbc/vsn.mk | 2 +-
lib/os_mon/doc/src/notes.xml | 16 +++++
lib/os_mon/vsn.mk | 2 +-
lib/public_key/doc/src/notes.xml | 23 +++++++
lib/public_key/vsn.mk | 2 +-
lib/runtime_tools/doc/src/notes.xml | 16 +++++
lib/sasl/doc/src/notes.xml | 50 +++++++++++++++
lib/sasl/vsn.mk | 2 +-
lib/ssh/doc/src/notes.xml | 72 ++++++++++++++++++++++
lib/ssh/vsn.mk | 2 +-
lib/ssl/doc/src/notes.xml | 64 ++++++++++++++++++-
lib/ssl/vsn.mk | 2 +-
lib/stdlib/doc/src/notes.xml | 35 +++++++++++
lib/syntax_tools/doc/src/notes.xml | 16 +++++
lib/syntax_tools/vsn.mk | 2 +-
lib/test_server/doc/src/notes.xml | 48 +++++++++++++++
lib/test_server/vsn.mk | 2 +-
lib/tools/doc/src/notes.xml | 44 +++++++++++++
lib/tools/vsn.mk | 2 +-
lib/wx/doc/src/notes.xml | 36 +++++++++++
lib/wx/vsn.mk | 2 +-
lib/xmerl/doc/src/notes.xml | 23 +++++++
lib/xmerl/vsn.mk | 2 +-
50 files changed, 1035 insertions(+), 29 deletions(-)
(limited to 'lib')
diff --git a/lib/asn1/doc/src/notes.xml b/lib/asn1/doc/src/notes.xml
index e4d9edd709..a00fc3de36 100644
--- a/lib/asn1/doc/src/notes.xml
+++ b/lib/asn1/doc/src/notes.xml
@@ -31,6 +31,66 @@
This document describes the changes made to the asn1 application.
+Asn1 2.0.4
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ The default value for a BIT STRING would not
+ always be recognized, causing the encoding to be
+ incorrect for the DER/PER/UPER encodings.
+
+ Own Id: OTP-11319
+
+ -
+
+ The asn1 application would fail to build if the
+ .erlang file printed something to standard output.
+
+ Own Id: OTP-11360
+
+ -
+
An union of integer ranges in an INTEGER constraint
+ could sometimes be interpreted as the intersection of the
+ range.
+
+ Own Id: OTP-11411 Aux Id: seq12443
+
+ -
+
+ Extensible, multiple single value constraints (such as
+ INTEGER (1|17, ...)) would be incorrectly encoded.
+
+ Own Id: OTP-11415
+
+ -
+
+ The ASN.1 compiler would fail to compile a constraint
+ with values given for for the extension part (such as
+ INTEGER (1..10, ..., 11..20)).
+
+ Own Id: OTP-11504
+
+
+
+
+
+ Improvements and New Features
+
+ -
+
+ The new option 'no_ok_wrapper' generates
+ M:encode/2 and M:decode/2 functions that don't wrap the
+ return value in an {ok,...} tuple.
+
+ Own Id: OTP-11314
+
+
+
+
+
+
Asn1 2.0.3
Fixed Bugs and Malfunctions
diff --git a/lib/asn1/vsn.mk b/lib/asn1/vsn.mk
index 0861fc2681..153c64ebdd 100644
--- a/lib/asn1/vsn.mk
+++ b/lib/asn1/vsn.mk
@@ -1,2 +1,2 @@
#next version number to use is 2.0
-ASN1_VSN = 2.0.3
+ASN1_VSN = 2.0.4
diff --git a/lib/common_test/doc/src/notes.xml b/lib/common_test/doc/src/notes.xml
index fce5401f13..535e2b6028 100644
--- a/lib/common_test/doc/src/notes.xml
+++ b/lib/common_test/doc/src/notes.xml
@@ -32,6 +32,126 @@
notes.xml
+Common_Test 1.7.4
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ Return values from group and testcase info functions are
+ now properly checked, and associated test cases are auto
+ skipped if a return value is invalid.
+
+ Own Id: OTP-10631 Aux Id: kunagi-345 [256]
+
+ -
+
The way Common Test handles skipping of test cases has
+ been updated. In previous versions, returning
+ {skip,Reason} from a configuration function (such
+ as init_per_suite or init_per_group), resulted in all
+ affected test cases getting skipped with status
+ auto_skipped. This was inappropriate, since this
+ status is supposed to be used to inform that Common Test
+ has taken the initiative to skip something (e.g. a test
+ case group if init_per_group failed). Therefore, in this
+ version of Common Test, whenever the user skips a suite,
+ group, or individual test case (by means of a
+ configuration function or test specification term), the
+ affected test cases get the status user_skipped
+ instead.
This update has meant a few changes that
+ may affect Common Test users in various ways:
+ - The test results and statistics will be affected,
+ which is important to know when running regression tests
+ and comparing results to previous test runs.
+ - Users that read or parse the textual log file
+ suite.log will notice that an auto skipped
+ function is now reported as auto_skipped rather
+ than skipped as before.
- When
+ require fails in an info function (such as suite/0
+ or group/1), all affected configuration functions and
+ test cases are marked as auto_skipped.
+ - If Common Test detects an error in the test suite
+ (such as e.g. an invalid all/0 function), all affected
+ configuration functions and test cases are marked as
+ auto_skipped.
- If a repeated test run
+ session reaches a deadline with force_stop
+ enabled, all remaining test cases are marked as
+ auto_skipped rather than user_skipped as
+ before.
- The event messages that Common Test
+ generates during test runs have been affected by this
+ update. For details see OTP-11524.
+
+ Own Id: OTP-11305 Aux Id: OTP-11524
+
+ -
+
+ Returning {skip, Reason} from a pre_end_per_group/3 user
+ hook function would result in an exit in the Common Test
+ cth_log_redirect hook. This problem has been solved.
+
+ Own Id: OTP-11409 Aux Id: seq12446
+
+ -
+
+ When the netconf server did not respond to the
+ close-session request, the call to
+ ct_netconfc:close_session/2 would hang forever waiting
+ for the netconf client to terminate. This has been
+ corrected. The client will now always terminate (and take
+ down the connection) if the close-session request times
+ out.
+
+ Own Id: OTP-11478
+
+
+
+
+
+ Improvements and New Features
+
+ -
+
+ Fix cth_log_redirect.erl to fulfill gen_event behaviour.
+ Thanks to Roberto Aloi.
+
+ Own Id: OTP-11401
+
+ -
+
+ The first argument of the CT hook callback function
+ on_tc_skip/3 has been modified. When this function
+ is called for init_per_group or
+ end_per_group, the value of the first argument is
+ now {init_per_group,GroupName} or
+ {end_per_group,GroupName}.
+
+ Own Id: OTP-11523
+
+ -
+
The following modifications have been made to the
+ event messages that Common Test sends during test
+ execution: - For the tc_auto_skip
+ event, the value of the Func element has changed
+ from end_per_group to
+ {end_per_group,GroupName}.
- When
+ require fails in an info function, such as suite/0
+ or group/1, the init configuration function is now
+ reported as auto_skipped intead of skipped,
+ with the tc_done event.
- When
+ require fails in an info function because of a
+ configuration name already in use, the tc_done
+ event now reports the error with a tuple (of size 2)
+ tagged failed instead of skipped.
+
Please see the Event Handling chapter in the
+ Common Test User's Guide for reference.
+
+ Own Id: OTP-11524 Aux Id: OTP-11305
+
+
+
+
+
+
Common_Test 1.7.3
Fixed Bugs and Malfunctions
diff --git a/lib/common_test/vsn.mk b/lib/common_test/vsn.mk
index c810a0d98d..568405b110 100644
--- a/lib/common_test/vsn.mk
+++ b/lib/common_test/vsn.mk
@@ -1 +1 @@
-COMMON_TEST_VSN = 1.7.3
+COMMON_TEST_VSN = 1.7.4
diff --git a/lib/compiler/doc/src/notes.xml b/lib/compiler/doc/src/notes.xml
index eb5fa8b398..cb39b28d3d 100644
--- a/lib/compiler/doc/src/notes.xml
+++ b/lib/compiler/doc/src/notes.xml
@@ -31,6 +31,34 @@
This document describes the changes made to the Compiler
application.
+Compiler 4.9.4
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ Typo fix ambigous -> ambiguous. Thanks to Leo Correa.
+
+ Own Id: OTP-11455
+
+
+
+
+
+ Improvements and New Features
+
+ -
+
+ Lift 'after' blocks to zeroary functions. Thanks to
+ Anthony Ramine.
+
+ Own Id: OTP-11267
+
+
+
+
+
+
Compiler 4.9.3
Fixed Bugs and Malfunctions
diff --git a/lib/compiler/vsn.mk b/lib/compiler/vsn.mk
index 8cfd8d294e..cbdf57f177 100644
--- a/lib/compiler/vsn.mk
+++ b/lib/compiler/vsn.mk
@@ -1 +1 @@
-COMPILER_VSN = 4.9.3
+COMPILER_VSN = 4.9.4
diff --git a/lib/crypto/doc/src/notes.xml b/lib/crypto/doc/src/notes.xml
index 97558ef0e7..7408907ebd 100644
--- a/lib/crypto/doc/src/notes.xml
+++ b/lib/crypto/doc/src/notes.xml
@@ -30,6 +30,22 @@
This document describes the changes made to the Crypto application.
+Crypto 3.2
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ Fix uninitialized pointers in crypto (Thanks to Anthony
+ Ramine)
+
+ Own Id: OTP-11510
+
+
+
+
+
+
Crypto 3.1
Improvements and New Features
diff --git a/lib/crypto/vsn.mk b/lib/crypto/vsn.mk
index 3bd2f9b4bf..98c071cf87 100644
--- a/lib/crypto/vsn.mk
+++ b/lib/crypto/vsn.mk
@@ -1 +1 @@
-CRYPTO_VSN = 3.1
+CRYPTO_VSN = 3.2
diff --git a/lib/diameter/doc/src/notes.xml b/lib/diameter/doc/src/notes.xml
index cf87a13225..18c712ec3d 100644
--- a/lib/diameter/doc/src/notes.xml
+++ b/lib/diameter/doc/src/notes.xml
@@ -42,6 +42,48 @@ first.
+diameter 1.5
+
+ Improvements and New Features
+
+ -
+
+ Rename reconnect_timer to connect_timer.
+
+ The former is still accepted for backwards compatibility,
+ but the name is misleading given the semantics of the
+ timer.
+
+ Own Id: OTP-11168
+
+ -
+
+ Extend diameter_make(3).
+
+ Dictionaries can now be compiled from strings, not just
+ filesystem paths, and results can be returned instead of
+ written to the filesystem.
+
+ Own Id: OTP-11348
+
+ -
+
+ Remove hardcoding of diameter_base as @prefix on
+ dictionaries for application id 0.
+
+ Own Id: OTP-11361
+
+ -
+
+ Fix silent make rules (Thanks to Anthony Ramine)
+
+ Own Id: OTP-11514
+
+
+
+
+
+
diameter 1.4.4
Known Bugs and Problems
diff --git a/lib/eldap/doc/src/notes.xml b/lib/eldap/doc/src/notes.xml
index 2cdba83bcd..2240d74aa6 100644
--- a/lib/eldap/doc/src/notes.xml
+++ b/lib/eldap/doc/src/notes.xml
@@ -30,7 +30,39 @@
This document describes the changes made to the Eldap application.
- Eldap 1.0.1
+ Eldap 1.0.2
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ Removed {verify,0} from ssl-options because eldap does
+ not support peer verification. Thanks to Florian Waas for
+ reporting.
+
+ Own Id: OTP-11354
+
+
+
+
+
+ Improvements and New Features
+
+ -
+
+ The ldap client eldap now supports the start_tls
+ operation. This upgrades an existing tcp connection to
+ encryption using tls, if the server supports it. See
+ eldap:start_tls/2 and /3.
+
+ Own Id: OTP-11336
+
+
+
+
+
+
+Eldap 1.0.1
Improvements and New Features
diff --git a/lib/eldap/vsn.mk b/lib/eldap/vsn.mk
index 4d05d3d1e3..dd1f50653c 100644
--- a/lib/eldap/vsn.mk
+++ b/lib/eldap/vsn.mk
@@ -1 +1 @@
-ELDAP_VSN = 1.0.1
+ELDAP_VSN = 1.0.2
diff --git a/lib/erl_interface/doc/src/notes.xml b/lib/erl_interface/doc/src/notes.xml
index f05456bbbd..4eb61015cc 100644
--- a/lib/erl_interface/doc/src/notes.xml
+++ b/lib/erl_interface/doc/src/notes.xml
@@ -30,6 +30,21 @@
This document describes the changes made to the Erl_interface application.
+Erl_Interface 3.7.15
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ Silence warnings (Thanks to Anthony Ramine)
+
+ Own Id: OTP-11517
+
+
+
+
+
+
Erl_Interface 3.7.14
Improvements and New Features
diff --git a/lib/erl_interface/vsn.mk b/lib/erl_interface/vsn.mk
index 5cde054a49..f386ce09a8 100644
--- a/lib/erl_interface/vsn.mk
+++ b/lib/erl_interface/vsn.mk
@@ -1 +1 @@
-EI_VSN = 3.7.14
+EI_VSN = 3.7.15
diff --git a/lib/eunit/doc/src/notes.xml b/lib/eunit/doc/src/notes.xml
index 1fa5993ac6..941ff6e84c 100644
--- a/lib/eunit/doc/src/notes.xml
+++ b/lib/eunit/doc/src/notes.xml
@@ -32,6 +32,35 @@
This document describes the changes made to the EUnit application.
+Eunit 2.2.6
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ Fix I/O-protocol error handling in eunit. Thanks to Yuki
+ Ito.
+
+ Own Id: OTP-11373
+
+ -
+
+ Do not attempt to detect lists of printable characters in
+ format. Thanks to Roberto Aloi.
+
+ Own Id: OTP-11467
+
+ -
+
+ Fix silent make rule (Thanks to Anthony Ramine )
+
+ Own Id: OTP-11516
+
+
+
+
+
+
Eunit 2.2.5
Improvements and New Features
diff --git a/lib/eunit/vsn.mk b/lib/eunit/vsn.mk
index be06c81559..8f816b3b94 100644
--- a/lib/eunit/vsn.mk
+++ b/lib/eunit/vsn.mk
@@ -1 +1 @@
-EUNIT_VSN = 2.2.5
+EUNIT_VSN = 2.2.6
diff --git a/lib/hipe/doc/src/notes.xml b/lib/hipe/doc/src/notes.xml
index 2f8f1782cc..e0b1622d19 100644
--- a/lib/hipe/doc/src/notes.xml
+++ b/lib/hipe/doc/src/notes.xml
@@ -30,6 +30,23 @@
This document describes the changes made to HiPE.
+Hipe 3.10.2.2
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ Fixed a dialyzer crash when using remote types in the
+ tail position of a maybe_improper_list/2 type. Thanks to
+ Kostis Sagonas
+
+ Own Id: OTP-11374
+
+
+
+
+
+
Hipe 3.10.2.1
Improvements and New Features
diff --git a/lib/hipe/vsn.mk b/lib/hipe/vsn.mk
index d9ed0b299f..ed4b4dc8d2 100644
--- a/lib/hipe/vsn.mk
+++ b/lib/hipe/vsn.mk
@@ -1 +1 @@
-HIPE_VSN = 3.10.2.1
+HIPE_VSN = 3.10.2.2
diff --git a/lib/ic/doc/src/notes.xml b/lib/ic/doc/src/notes.xml
index 6ba558f942..231573e82e 100644
--- a/lib/ic/doc/src/notes.xml
+++ b/lib/ic/doc/src/notes.xml
@@ -30,7 +30,29 @@
notes.xml
- IC 4.3.3
+ IC 4.3.4
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ Fix two small silent rules omissions. Thanks to Anthony
+ Ramine.
+
+ Own Id: OTP-11351
+
+ -
+
+ Silence warnings (Thanks to Anthony Ramine)
+
+ Own Id: OTP-11517
+
+
+
+
+
+
+IC 4.3.3
Improvements and New Features
diff --git a/lib/ic/vsn.mk b/lib/ic/vsn.mk
index d1969ef3d8..fe27d095d3 100644
--- a/lib/ic/vsn.mk
+++ b/lib/ic/vsn.mk
@@ -1 +1 @@
-IC_VSN = 4.3.3
+IC_VSN = 4.3.4
diff --git a/lib/inets/doc/src/notes.xml b/lib/inets/doc/src/notes.xml
index 4e0dc8bd37..a6f2933f6a 100644
--- a/lib/inets/doc/src/notes.xml
+++ b/lib/inets/doc/src/notes.xml
@@ -32,7 +32,63 @@
notes.xml
- Inets 5.9.6
+ Inets 5.9.7
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ Fix httpd config option 'script_timeout' and fixed httpd
+ config option 'keep_alive_timeout'. Thanks to Johannes
+ Weissl.
+
+ Own Id: OTP-11276
+
+ -
+
+ Make httpc:request_cancel/[1,2] asynchronous. Previously
+ these functions tried to guarantee request answer would
+ not reach the client, which only worked for some of the
+ use cases. Now these functions are totally asynchronous
+ which makes it the clients responsibility to disregard
+ possible answers to canceled requests.
+
+ Also pipelining implementation has been changed to
+ improve the utilization factor. Further investigation of
+ possible enhancements in this area are planned for later.
+
+ *** POTENTIAL INCOMPATIBILITY ***
+
+ Own Id: OTP-11312
+
+ -
+
+ [httpd] Add handling of new response for mod_head
+ (otherwise causing case_clause crash). Also updated
+ logging: Removed logging for keep-alive connections
+ timeout (this is a normal occurrence and not an error)
+ and some access-log body size corrections.
+
+ Own Id: OTP-11328
+
+
+
+
+
+ Improvements and New Features
+
+ -
+
+ The ftp client now supports ftp over tls (ftps).
+
+ Own Id: OTP-11037
+
+
+
+
+
+
+Inets 5.9.6
Improvements and New Features
diff --git a/lib/inets/vsn.mk b/lib/inets/vsn.mk
index 36463d9388..3c20348322 100644
--- a/lib/inets/vsn.mk
+++ b/lib/inets/vsn.mk
@@ -18,7 +18,7 @@
# %CopyrightEnd%
APPLICATION = inets
-INETS_VSN = 5.9.6
+INETS_VSN = 5.9.7
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 6cdc3a9d17..b2e89ea850 100644
--- a/lib/kernel/doc/src/notes.xml
+++ b/lib/kernel/doc/src/notes.xml
@@ -30,6 +30,69 @@
This document describes the changes made to the Kernel application.
+Kernel 2.16.4
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ Fix the typespec for the inet:ifget/2 and inet:ifget/3
+ return value. Thanks to Ali Sabil.
+
+ Own Id: OTP-11377
+
+ -
+
+ Fix various typos in erts, kernel and ssh. Thanks to
+ Martin Hässler.
+
+ Own Id: OTP-11414
+
+ -
+
+ Fix rpc multicall sample code. Thanks to Edwin Fine.
+
+ Own Id: OTP-11471
+
+ -
+
+ Under rare circumstances a process calling inet:close/1,
+ gen_tcp:close/1,
+ gen_udp:close/1,
+ or gen_sctp:close/1
+ could hang in the call indefinitely.
+
+ Own Id: OTP-11491
+
+
+
+
+
+ Improvements and New Features
+
+ -
+
+ Add more SCTP errors as described in RFC 4960. Thanks to
+ Artem Teslenko.
+
+ Own Id: OTP-11379
+
+ -
+
+ Add new BIF os:unsetenv/1 which deletes an environment
+ variable. Thanks to Martin Hässler.
+
+ Own Id: OTP-11446
+
+
+
+
+
+
Kernel 2.16.3
Fixed Bugs and Malfunctions
diff --git a/lib/mnesia/doc/src/notes.xml b/lib/mnesia/doc/src/notes.xml
index da66a647f5..0e9131190d 100644
--- a/lib/mnesia/doc/src/notes.xml
+++ b/lib/mnesia/doc/src/notes.xml
@@ -38,7 +38,31 @@
thus constitutes one section in this document. The title of each
section is the version number of Mnesia.
- Mnesia 4.10
+ Mnesia 4.11
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ Fixed a race in mnesia which could cause hanging
+ transaction when sticky locks had been used. Thanks
+ janchochol.
+
+ Own Id: OTP-11375
+
+ -
+
+ Fixed dirty_update_counter which could return ok, thanks
+ Anton Ryabkov.
+
+ Own Id: OTP-11485
+
+
+
+
+
+
+Mnesia 4.10
Fixed Bugs and Malfunctions
diff --git a/lib/mnesia/vsn.mk b/lib/mnesia/vsn.mk
index c8187013be..064ba43791 100644
--- a/lib/mnesia/vsn.mk
+++ b/lib/mnesia/vsn.mk
@@ -1 +1 @@
-MNESIA_VSN = 4.10
+MNESIA_VSN = 4.11
diff --git a/lib/observer/doc/src/notes.xml b/lib/observer/doc/src/notes.xml
index 8a7a5cc41b..9de00b8c16 100644
--- a/lib/observer/doc/src/notes.xml
+++ b/lib/observer/doc/src/notes.xml
@@ -31,6 +31,31 @@
This document describes the changes made to the Observer
application.
+Observer 1.3.1.2
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ The documentation for ttb:tracer/2 incorrectly
+ stated that there was an option named 'overload',
+ while the correct name used in the implementation is
+ 'overload_check'.
+
+ Own Id: OTP-11335 Aux Id: seq12385
+
+ -
+
+ Fixed typo in observer documentation. Thanks to Dave
+ Parfitt.
+
+ Own Id: OTP-11475
+
+
+
+
+
+
Observer 1.3.1.1
Improvements and New Features
diff --git a/lib/observer/vsn.mk b/lib/observer/vsn.mk
index e933f7480c..f48809a839 100644
--- a/lib/observer/vsn.mk
+++ b/lib/observer/vsn.mk
@@ -1 +1 @@
-OBSERVER_VSN = 1.3.1.1
+OBSERVER_VSN = 1.3.1.2
diff --git a/lib/odbc/doc/src/notes.xml b/lib/odbc/doc/src/notes.xml
index 13dff1489f..2551637001 100644
--- a/lib/odbc/doc/src/notes.xml
+++ b/lib/odbc/doc/src/notes.xml
@@ -31,7 +31,23 @@
This document describes the changes made to the odbc application.
- ODBC 2.10.17
+ ODBC 2.10.18
+
+ Improvements and New Features
+
+ -
+
+ Configure now also checks for the existence of the sql.h
+ header file
+
+ Own Id: OTP-11483
+
+
+
+
+
+
+ODBC 2.10.17
Fixed Bugs and Malfunctions
diff --git a/lib/odbc/vsn.mk b/lib/odbc/vsn.mk
index 34c3eff933..6ac83a7718 100644
--- a/lib/odbc/vsn.mk
+++ b/lib/odbc/vsn.mk
@@ -1 +1 @@
-ODBC_VSN = 2.10.17
+ODBC_VSN = 2.10.18
diff --git a/lib/os_mon/doc/src/notes.xml b/lib/os_mon/doc/src/notes.xml
index 6d520c7acb..db386979c0 100644
--- a/lib/os_mon/doc/src/notes.xml
+++ b/lib/os_mon/doc/src/notes.xml
@@ -30,6 +30,22 @@
This document describes the changes made to the OS_Mon application.
+Os_Mon 2.2.14
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ Fix incorrect reporting of memory on OS X via memsup.
+ Thanks to Christopher Meiklejohn.
+
+ Own Id: OTP-11454
+
+
+
+
+
+
Os_Mon 2.2.13
Fixed Bugs and Malfunctions
diff --git a/lib/os_mon/vsn.mk b/lib/os_mon/vsn.mk
index 0af587b9ae..e9e90729f2 100644
--- a/lib/os_mon/vsn.mk
+++ b/lib/os_mon/vsn.mk
@@ -1 +1 @@
-OS_MON_VSN = 2.2.13
+OS_MON_VSN = 2.2.14
diff --git a/lib/public_key/doc/src/notes.xml b/lib/public_key/doc/src/notes.xml
index 595b2a89d7..ce7847c107 100644
--- a/lib/public_key/doc/src/notes.xml
+++ b/lib/public_key/doc/src/notes.xml
@@ -34,6 +34,29 @@
notes.xml
+Public_Key 0.21
+
+ Improvements and New Features
+
+ -
+
+ Fixed a little typo in public_key documentation. Thanks
+ to Tomas Morstein.
+
+ Own Id: OTP-11380
+
+ -
+
+ public_key: Workaround for incorrectly encoded utf8
+ emailAddress. Thanks to Andrew Bennett.
+
+ Own Id: OTP-11470
+
+
+
+
+
+
Public_Key 0.20
Improvements and New Features
diff --git a/lib/public_key/vsn.mk b/lib/public_key/vsn.mk
index 72247f14d8..3473757c5f 100644
--- a/lib/public_key/vsn.mk
+++ b/lib/public_key/vsn.mk
@@ -1 +1 @@
-PUBLIC_KEY_VSN = 0.20
+PUBLIC_KEY_VSN = 0.21
diff --git a/lib/runtime_tools/doc/src/notes.xml b/lib/runtime_tools/doc/src/notes.xml
index b334bdcac2..32b7d168f5 100644
--- a/lib/runtime_tools/doc/src/notes.xml
+++ b/lib/runtime_tools/doc/src/notes.xml
@@ -31,6 +31,22 @@
This document describes the changes made to the Runtime_Tools
application.
+Runtime_Tools 1.8.13
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ Observer did not produce correct result when ERTS
+ internal memory allocators had been disabled.
+
+ Own Id: OTP-11520
+
+
+
+
+
+
Runtime_Tools 1.8.12
Fixed Bugs and Malfunctions
diff --git a/lib/sasl/doc/src/notes.xml b/lib/sasl/doc/src/notes.xml
index b114f1f492..48853b2372 100644
--- a/lib/sasl/doc/src/notes.xml
+++ b/lib/sasl/doc/src/notes.xml
@@ -30,6 +30,56 @@
This document describes the changes made to the SASL application.
+SASL 2.3.4
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ Don't try to add the log_mf_h handler in sasl unless
+ configured to do so. Thanks to Richard Carlsson.
+
+ Own Id: OTP-11464
+
+ -
+
+ Fix confusing documentation about error handlers in
+ SASL.(Thanks to Richard Carlsson)
+
+ Own Id: OTP-11507
+
+ -
+
+ A bug in the mechanism for upgrading core parts of
+ Erlang/OTP (emulator, kernel, stdlib, sasl) caused a
+ switch of paths between stdlib and sasl in the
+ intermediate .script/.boot file. The bug was introduces
+ along with this upgrade mechanism in R15B. It has now
+ been corrected. (Thanks to Tobias Schlager)
+
+ Own Id: OTP-11529
+
+
+
+
+
+ Improvements and New Features
+
+ -
+
+ Added a boot file which skips loading the "$HOME/.erlang"
+ file on startup. Enable by starting erlang with "erl
+ -boot no_dot_erlang".
+
+ *** INCOMPATIBILITY with false ***
+
+ Own Id: OTP-8479 Aux Id: seq11510
+
+
+
+
+
+
SASL 2.3.3
Improvements and New Features
diff --git a/lib/sasl/vsn.mk b/lib/sasl/vsn.mk
index f90ab51a47..d4b8ae94a1 100644
--- a/lib/sasl/vsn.mk
+++ b/lib/sasl/vsn.mk
@@ -1 +1 @@
-SASL_VSN = 2.3.3
+SASL_VSN = 2.3.4
diff --git a/lib/ssh/doc/src/notes.xml b/lib/ssh/doc/src/notes.xml
index 041f5e54af..0d88cbda7a 100644
--- a/lib/ssh/doc/src/notes.xml
+++ b/lib/ssh/doc/src/notes.xml
@@ -29,6 +29,78 @@
notes.xml
+Ssh 3.0
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ The ssh cli is now faster at close and before new prompt.
+
+ Own Id: OTP-11339 Aux Id: seq12423
+
+ -
+
+ Ssh process structure was redesigned to better map to
+ what is truly parallel this has solved a lot of strange
+ timing issues that sometimes would occur, for instance a
+ process leak could happen when a lot of connections where
+ taken up and down in parallel in a short period of time.
+ Also backwards compatible clauses to "original" but never
+ supported features has been removed.
+
+ Impact: Increases flow efficiency
+
+ *** POTENTIAL INCOMPATIBILITY ***
+
+ Own Id: OTP-11363
+
+ -
+
+ Fix various typos in erts, kernel and ssh. Thanks to
+ Martin Hässler.
+
+ Own Id: OTP-11414
+
+ -
+
+ Correct private_key type documentation in
+ ssh_server_key_api. Thanks to Tristan Sloughter.
+
+ Own Id: OTP-11449
+
+ -
+
+ The functions in ssh_no_io.erl did not mimic the
+ functions in ssh_io.erl correctly, the arity was
+ incorrect for some functions which caused ssh to fail in
+ the wrong way.
+
+ Own Id: OTP-11490
+
+
+
+
+
+ Improvements and New Features
+
+ -
+
+ Add option to disallow CLI
+
+ Own Id: OTP-10976
+
+ -
+
+ Add sockname and user to ssh:connection_info/2
+
+ Own Id: OTP-11296
+
+
+
+
+
+
Ssh 2.1.8
Improvements and New Features
diff --git a/lib/ssh/vsn.mk b/lib/ssh/vsn.mk
index 90f09471c9..8186f39888 100644
--- a/lib/ssh/vsn.mk
+++ b/lib/ssh/vsn.mk
@@ -1,5 +1,5 @@
#-*-makefile-*- ; force emacs to enter makefile-mode
-SSH_VSN = 2.1.8
+SSH_VSN = 3.0
APP_VSN = "ssh-$(SSH_VSN)"
diff --git a/lib/ssl/doc/src/notes.xml b/lib/ssl/doc/src/notes.xml
index 9f706d435e..b1c34ca669 100644
--- a/lib/ssl/doc/src/notes.xml
+++ b/lib/ssl/doc/src/notes.xml
@@ -25,7 +25,69 @@
notes.xml
This document describes the changes made to the SSL application.
- SSL 5.3.1
+ SSL 5.3.2
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ Honors the clients advertised support of elliptic curves
+ and no longer sends incorrect elliptic curve extension in
+ server hello.
+
+ Own Id: OTP-11370
+
+ -
+
+ Fix initialization of DTLS fragment reassembler, in
+ previously contributed code, for future support of DTLS .
+ Thanks to Andreas Schultz.
+
+ Own Id: OTP-11376
+
+ -
+
+ Corrected type error in client_preferred_next_protocols
+ documentation. Thanks to Julien Barbot.
+
+ Own Id: OTP-11457
+
+
+
+
+
+ Improvements and New Features
+
+ -
+
+ TLS code has been refactored to prepare for future DTLS
+ support. Also some DTLS code is in place but not yet
+ runnable, some of it contributed by Andreas Schultz and
+ some of it written by the OTP team. Thanks to to Andreas
+ for his participation.
+
+ Own Id: OTP-11292
+
+ -
+
+ Remove extraneous dev debug code left in the close
+ function. Thanks to Ken Key.
+
+ Own Id: OTP-11447
+
+ -
+
+ Add SSL Server Name Indication (SNI) client support.
+ Thanks to Julien Barbot.
+
+ Own Id: OTP-11460
+
+
+
+
+
+
+SSL 5.3.1
Fixed Bugs and Malfunctions
diff --git a/lib/ssl/vsn.mk b/lib/ssl/vsn.mk
index 78424ee578..a2dd3f5930 100644
--- a/lib/ssl/vsn.mk
+++ b/lib/ssl/vsn.mk
@@ -1 +1 @@
-SSL_VSN = 5.3.1
+SSL_VSN = 5.3.2
diff --git a/lib/stdlib/doc/src/notes.xml b/lib/stdlib/doc/src/notes.xml
index 2f404523dd..e94a4d6a55 100644
--- a/lib/stdlib/doc/src/notes.xml
+++ b/lib/stdlib/doc/src/notes.xml
@@ -30,6 +30,41 @@
This document describes the changes made to the STDLIB application.
+STDLIB 1.19.4
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ Fix typo in gen_server.erl. Thanks to Brian L. Troutwine.
+
+ Own Id: OTP-11398
+
+ -
+
+ Spec for atan2 should be atan2(Y, X), not atan2(X, Y).
+ Thanks to Ary Borenszweig.
+
+ Own Id: OTP-11465
+
+
+
+
+
+ Improvements and New Features
+
+ -
+
+ Add XML marker for regexp syntax. Thanks to Håkan
+ Mattson.
+
+ Own Id: OTP-11442
+
+
+
+
+
+
STDLIB 1.19.3
Fixed Bugs and Malfunctions
diff --git a/lib/syntax_tools/doc/src/notes.xml b/lib/syntax_tools/doc/src/notes.xml
index 8ae69539a7..c5a1baebdb 100644
--- a/lib/syntax_tools/doc/src/notes.xml
+++ b/lib/syntax_tools/doc/src/notes.xml
@@ -31,6 +31,22 @@
This document describes the changes made to the Syntax_Tools
application.
+Syntax_Tools 1.6.12
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ Fix transformation of implicit funs in igor (Thanks to
+ Anthony Ramine)
+
+ Own Id: OTP-11506
+
+
+
+
+
+
Syntax_Tools 1.6.11
Improvements and New Features
diff --git a/lib/syntax_tools/vsn.mk b/lib/syntax_tools/vsn.mk
index 01569687bf..6cafc4dd55 100644
--- a/lib/syntax_tools/vsn.mk
+++ b/lib/syntax_tools/vsn.mk
@@ -1 +1 @@
-SYNTAX_TOOLS_VSN = 1.6.11
+SYNTAX_TOOLS_VSN = 1.6.12
diff --git a/lib/test_server/doc/src/notes.xml b/lib/test_server/doc/src/notes.xml
index c83fc9d82b..d68943089e 100644
--- a/lib/test_server/doc/src/notes.xml
+++ b/lib/test_server/doc/src/notes.xml
@@ -32,6 +32,54 @@
notes.xml
+Test_Server 3.6.4
+
+ Fixed Bugs and Malfunctions
+
+ -
+
The way Common Test handles skipping of test cases has
+ been updated. In previous versions, returning
+ {skip,Reason} from a configuration function (such
+ as init_per_suite or init_per_group), resulted in all
+ affected test cases getting skipped with status
+ auto_skipped. This was inappropriate, since this
+ status is supposed to be used to inform that Common Test
+ has taken the initiative to skip something (e.g. a test
+ case group if init_per_group failed). Therefore, in this
+ version of Common Test, whenever the user skips a suite,
+ group, or individual test case (by means of a
+ configuration function or test specification term), the
+ affected test cases get the status user_skipped
+ instead.
This update has meant a few changes that
+ may affect Common Test users in various ways:
+ - The test results and statistics will be affected,
+ which is important to know when running regression tests
+ and comparing results to previous test runs.
+ - Users that read or parse the textual log file
+ suite.log will notice that an auto skipped
+ function is now reported as auto_skipped rather
+ than skipped as before.
- When
+ require fails in an info function (such as suite/0
+ or group/1), all affected configuration functions and
+ test cases are marked as auto_skipped.
+ - If Common Test detects an error in the test suite
+ (such as e.g. an invalid all/0 function), all affected
+ configuration functions and test cases are marked as
+ auto_skipped.
- If a repeated test run
+ session reaches a deadline with force_stop
+ enabled, all remaining test cases are marked as
+ auto_skipped rather than user_skipped as
+ before.
- The event messages that Common Test
+ generates during test runs have been affected by this
+ update. For details see OTP-11524.
+
+ Own Id: OTP-11305 Aux Id: OTP-11524
+
+
+
+
+
+
Test_Server 3.6.3
Fixed Bugs and Malfunctions
diff --git a/lib/test_server/vsn.mk b/lib/test_server/vsn.mk
index 0e37512dc2..6871b5bd14 100644
--- a/lib/test_server/vsn.mk
+++ b/lib/test_server/vsn.mk
@@ -1 +1 @@
-TEST_SERVER_VSN = 3.6.3
+TEST_SERVER_VSN = 3.6.4
diff --git a/lib/tools/doc/src/notes.xml b/lib/tools/doc/src/notes.xml
index d8239460b3..2e4c354fbd 100644
--- a/lib/tools/doc/src/notes.xml
+++ b/lib/tools/doc/src/notes.xml
@@ -30,6 +30,50 @@
This document describes the changes made to the Tools application.
+Tools 2.6.13
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ Erlang-specific compilation error regexp is added in
+ erlang-eunit.el. This defvar was earlier in erlang.el,
+ but was erroneously removed in R15B02, while still used
+ by erlang-eunit.el.
+
+ Own Id: OTP-11417 Aux Id: seq12447
+
+ -
+
+ Take compiler options from beam in cover:compile_beam.
+ Thanks to Péter Gömöri.
+
+ Own Id: OTP-11439
+
+ -
+
+ Silence warnings (Thanks to Anthony Ramine)
+
+ Own Id: OTP-11517
+
+
+
+
+
+ Improvements and New Features
+
+ -
+
+ Add iodata, nonempty_string to built-in type highlighting
+ for emacs. Thanks to Paul Oliver.
+
+ Own Id: OTP-11394
+
+
+
+
+
+
Tools 2.6.12
Improvements and New Features
diff --git a/lib/tools/vsn.mk b/lib/tools/vsn.mk
index c51b833dd0..0cead00554 100644
--- a/lib/tools/vsn.mk
+++ b/lib/tools/vsn.mk
@@ -1 +1 @@
-TOOLS_VSN = 2.6.12
+TOOLS_VSN = 2.6.13
diff --git a/lib/wx/doc/src/notes.xml b/lib/wx/doc/src/notes.xml
index 6ecae3752b..c330353dd4 100644
--- a/lib/wx/doc/src/notes.xml
+++ b/lib/wx/doc/src/notes.xml
@@ -31,6 +31,42 @@
This document describes the changes made to the wxErlang
application.
+Wx 1.1.1
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ wx initialization hanged with wxWidgets-3.0 on mac. Fixed
+ a crash with wxListBox on wxWidgets-3.0 (thanks Sergei
+ Golovan) Fixed documentation links. Fixed event callbacks
+ cleanup.
+
+ Own Id: OTP-11393
+
+ -
+
+ Improve documentation (Thanks to Boris Mühmer)
+
+ Own Id: OTP-11505
+
+
+
+
+
+ Improvements and New Features
+
+ -
+
+ Fix silent make rules (Thanks to Anthony Ramine)
+
+ Own Id: OTP-11515
+
+
+
+
+
+
Wx 1.0
Fixed Bugs and Malfunctions
diff --git a/lib/wx/vsn.mk b/lib/wx/vsn.mk
index 869ed99f16..24c62390f4 100644
--- a/lib/wx/vsn.mk
+++ b/lib/wx/vsn.mk
@@ -1 +1 @@
-WX_VSN = 1.1
+WX_VSN = 1.1.1
diff --git a/lib/xmerl/doc/src/notes.xml b/lib/xmerl/doc/src/notes.xml
index be4b4bcb4f..3a217aa8b1 100644
--- a/lib/xmerl/doc/src/notes.xml
+++ b/lib/xmerl/doc/src/notes.xml
@@ -31,6 +31,29 @@
This document describes the changes made to the Xmerl application.
+Xmerl 1.3.5
+
+ Improvements and New Features
+
+ -
+
+ Teach xmerl_xpath to resolve context namespaces in more
+ cases. Thanks to Daniel White.
+
+ Own Id: OTP-11461
+
+ -
+
+ Avoid serialization on code_server in xmerl:export().
+ Thanks to Richard Carlsson.
+
+ Own Id: OTP-11463
+
+
+
+
+
+
Xmerl 1.3.4
Improvements and New Features
diff --git a/lib/xmerl/vsn.mk b/lib/xmerl/vsn.mk
index af372d8248..4b933deb4a 100644
--- a/lib/xmerl/vsn.mk
+++ b/lib/xmerl/vsn.mk
@@ -1 +1 @@
-XMERL_VSN = 1.3.4
+XMERL_VSN = 1.3.5
--
cgit v1.2.3