From d5de2e1ffd6403f5d7ec62e6ce8da508e1cb1239 Mon Sep 17 00:00:00 2001 From: Erlang/OTP Date: Mon, 26 Nov 2012 15:48:29 +0100 Subject: Prepare release --- erts/doc/src/notes.xml | 151 ++++++++++++++++++++++++++++++++++ lib/common_test/doc/src/notes.xml | 94 +++++++++++++++++++++ lib/common_test/vsn.mk | 2 +- lib/dialyzer/doc/src/notes.xml | 18 +++++ lib/dialyzer/vsn.mk | 2 +- lib/diameter/doc/src/notes.xml | 157 ++++++++++++++++++++++++++++++++++++ lib/erl_docgen/doc/src/notes.xml | 18 ++++- lib/erl_interface/doc/src/notes.xml | 18 +++++ lib/erl_interface/vsn.mk | 2 +- lib/hipe/doc/src/notes.xml | 16 ++++ lib/hipe/vsn.mk | 2 +- lib/inets/doc/src/notes.xml | 22 ++++- lib/kernel/doc/src/notes.xml | 38 +++++++++ lib/percept/doc/src/notes.xml | 15 ++++ lib/percept/vsn.mk | 2 +- lib/public_key/doc/src/notes.xml | 35 ++++++++ lib/ssh/doc/src/notes.xml | 44 ++++++++++ lib/ssl/doc/src/notes.xml | 34 +++++++- lib/stdlib/doc/src/notes.xml | 15 ++++ lib/test_server/doc/src/notes.xml | 41 ++++++++++ lib/test_server/vsn.mk | 2 +- 21 files changed, 719 insertions(+), 9 deletions(-) diff --git a/erts/doc/src/notes.xml b/erts/doc/src/notes.xml index cdb72b2b98..801966c6e7 100644 --- a/erts/doc/src/notes.xml +++ b/erts/doc/src/notes.xml @@ -30,6 +30,157 @@

This document describes the changes made to the ERTS application.

+
Erts 5.9.3 + +
Fixed Bugs and Malfunctions + + +

+ Fix linking in OpenBSD. (Thanks to Matthew Dempsky)

+

+ Own Id: OTP-10395

+
+ +

+ Fix bug causing fallback atomics to be used even though + healthy gcc atomics or libatomic_ops was detected.

+

+ Own Id: OTP-10418

+
+ +

+ Ensure 'erl_crash.dump' when asked for it. This will + change erl_crash.dump behaviour.

+

+ * Not setting ERL_CRASH_DUMP_SECONDS will now terminate + beam immediately on a crash without writing a crash dump + file.

+

+ * Setting ERL_CRASH_DUMP_SECONDS to 0 will also terminate + beam immediately on a crash without writing a crash dump + file, i.e. same as not setting ERL_CRASH_DUMP_SECONDS + environment variable.

+

+ * Setting ERL_CRASH_DUMP_SECONDS to a negative value will + let the beam wait indefinitely on the crash dump file + being written.

+

+ * Setting ERL_CRASH_DUMP_SECONDS to a positive value will + let the beam wait that many seconds on the crash dump + file being written.

+

+ A positive value will set an alarm/timeout for restart + both in beam and in heart if heart is running.

+

+ *** POTENTIAL INCOMPATIBILITY ***

+

+ Own Id: OTP-10422 Aux Id: kunagi-250 [161]

+
+ +

+ Fix bug where MSVRT100.dll was not included in the + windows installer.

+

+ Own Id: OTP-10481

+
+ +

In the expression + <<Bin/binary,...>>, if Bin was + a bitstring with a size not a multiple of 8, either no + exception was generated or an incorrect exception was + generated. (Thanks to Adam Rutkowski for reporting this + bug.)

+

+ Own Id: OTP-10524

+
+ +

+ The runtime system could crash while scheduling a port + task. The port task was scheduled either due to an + external I/O event being triggered, a driver timeout + being triggered, or data being sent over a distribution + channel.

+

+ Own Id: OTP-10556

+
+ +

+ erlang:memory(ets) erroneously included the size + of each ETS-table main structure twice.

+

+ Own Id: OTP-10558

+
+ +

+ Fix compile error in generated file hipe_amd64_bifs.S for + Solaris.

+

+ Own Id: OTP-10577

+
+ +

+ A faulty spec for process_info/2 could cause false + dialyzer warnings. The spec is corrected.

+

+ Own Id: OTP-10584

+
+ +

+ In very rare cases, the VM could crash if a garbage + collector was called while executing an appending bit + syntax instruction. The symptom was a core when + reallocating memory in the function erts_bs_append. The + garbage collector bug is now corrected.

+

+ Own Id: OTP-10590

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

+ Improve support for building and testing in embedded ppc + environments.

+

+ Own Id: OTP-10265 Aux Id: kunagi-159 + [daf97f67-5724-4812-a5b6-7e86990133d2-1]

+
+ +

+ Due to a race condition on Windows, sometimes when + printing to standard output and then immediately + terminating erlang all data would not be printed. The + emulator now waits for all data to be printed before + exiting.

+

+ Own Id: OTP-10325 Aux Id: kunagi-166 + [dd72d0e2-3e76-4a51-8b56-7564e24eecae]

+
+ +

+ The frequency with which sleeping schedulers are woken + due to outstanding memory deallocation jobs has been + reduced.

+

+ Own Id: OTP-10476 Aux Id: OTP-10162

+
+ +

+ Clearer warnings about the dangers of misuse of native functions and + drivers + have been added to the documentation.

+

+ Own Id: OTP-10557

+
+
+
+ +
+
Erts 5.9.2
Fixed Bugs and Malfunctions diff --git a/lib/common_test/doc/src/notes.xml b/lib/common_test/doc/src/notes.xml index abe8cb2041..7e33b71de1 100644 --- a/lib/common_test/doc/src/notes.xml +++ b/lib/common_test/doc/src/notes.xml @@ -32,6 +32,100 @@ notes.xml +
Common_Test 1.6.3 + +
Fixed Bugs and Malfunctions + + +

+ The ct:run_test/1 option 'config' only worked with a + single config file, not a list of files. This has been + fixed.

+

+ Own Id: OTP-10495

+
+ +

+ ct_netconfc:close_session sometimes returned + {error,closed} because the ssh connection was closed + (from the server side) before the rpc-reply was received + by the client. This is normal and can not be helped. It + has been corrected so the return will be 'ok' in this + case. Other error situations will still give + {error,Reason}.

+

+ Own Id: OTP-10510 Aux Id: kunagi-320 [231]

+
+ +

+ ct_netconfc:close_session sometimes returned + {error,closed} or (if the connection was named) + {error,{process_down,Pid,normal}} because the ssh + connection was closed (from the server side) before the + rpc-reply was received by the client. This is normal and + can not be helped. It has been corrected so the return + will be 'ok' in this situation.

+

+ Own Id: OTP-10570

+
+ +

+ Fix bug where ct:require of same name with same config + would return name_in_use.

+

+ Own Id: OTP-10572

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

+ A new test case group search functionality has been + implemented that makes Common Test search automatically + through the group definitions tree (the return value of + groups/0) and create tests for all paths of nested groups + that match the specification. It also allows for + specifying unique paths to sub groups in order to avoid + execution of unwanted tests. This new feature can be used + whenever starting a test run by means of the ct_run + program, the ct:run_test/1 API function, or a Test + Specification. Details can be found in the Test Case + Group Execution section in the Running Tests chapter.

+

+ Own Id: OTP-10466 Aux Id: kunagi-276 [187]

+
+
+
+ + +
Known Bugs and Problems + + +

+ Restore Config data if lost when test case fails.

+

+ Own Id: OTP-10070 Aux Id: kunagi-175 [86]

+
+ +

+ IO server error in test_server.

+

+ Own Id: OTP-10125 Aux Id: OTP-10101, kunagi-177 [88]

+
+ +

+ Faulty connection handling in common_test.

+

+ Own Id: OTP-10126 Aux Id: kunagi-178 [89]

+
+
+
+ +
+
Common_Test 1.6.2.1
Fixed Bugs and Malfunctions diff --git a/lib/common_test/vsn.mk b/lib/common_test/vsn.mk index 5c9fdfc47e..f9bb22867e 100644 --- a/lib/common_test/vsn.mk +++ b/lib/common_test/vsn.mk @@ -1 +1 @@ -COMMON_TEST_VSN = 1.6.2.1 +COMMON_TEST_VSN = 1.6.3 diff --git a/lib/dialyzer/doc/src/notes.xml b/lib/dialyzer/doc/src/notes.xml index 0c1556308c..f485e4d03b 100644 --- a/lib/dialyzer/doc/src/notes.xml +++ b/lib/dialyzer/doc/src/notes.xml @@ -31,6 +31,24 @@

This document describes the changes made to the Dialyzer application.

+
Dialyzer 2.5.3 + +
Fixed Bugs and Malfunctions + + +

Fix a crash in race condition detection

Remove + old untested experimental extension

Respect + {plt_check,false} option when using dialyzer:run/1

+

Fix handling of tuple set remote types appearing in + tuple sets

+

+ Own Id: OTP-10464

+
+
+
+ +
+
Dialyzer 2.5.2
Fixed Bugs and Malfunctions diff --git a/lib/dialyzer/vsn.mk b/lib/dialyzer/vsn.mk index 64d05156b1..f344fe0604 100644 --- a/lib/dialyzer/vsn.mk +++ b/lib/dialyzer/vsn.mk @@ -1 +1 @@ -DIALYZER_VSN = 2.5.2 +DIALYZER_VSN = 2.5.3 diff --git a/lib/diameter/doc/src/notes.xml b/lib/diameter/doc/src/notes.xml index 7f3cdab075..d448b01eba 100644 --- a/lib/diameter/doc/src/notes.xml +++ b/lib/diameter/doc/src/notes.xml @@ -42,6 +42,163 @@ first.

+
Diameter 1.3 + +
Fixed Bugs and Malfunctions + + +

+ Fix faulty handling of Origin-State-Id and faulty config + values.

+

+ The former was expected in a list despite the + documentation requiring (correctly) an integer. A bare + value for a list-valued capability was not handled.

+

+ Own Id: OTP-10440

+
+ +

+ Fix timing of up/down events.

+

+ Previously, a call to diameter:call/4 following a peer_up + callback might incorrectly return {error, no_connection}, + depending on timing. Both events now follow the + corresponding callbacks.

+

+ Own Id: OTP-10459

+
+ +

+ Make diameter:service_info/2 usable in peer_up, peer_down + and pick_peer callbacks.

+

+ Except for in pick_peer when {call_mutates_state, false}, + it would previously hang indefinitely.

+

+ Own Id: OTP-10460

+
+ +

+ Verify that End-to-End and Hop-by-Hop Identifiers in an + incoming CEA/DPA match those sent in the corresponding + CER/DPR.

+

+ The values were previously ignored. Answers whose + identifiers do not match are handled as unexpected.

+

+ Own Id: OTP-10565

+
+ +

+ Fix formatting problems in PDF documentation.

+

+ In particular, text corresponding to links in HTML was + omitted in preformatted blocks. There are still issues + with indentation but this is not diameter-specific.

+

+ Own Id: OTP-10583

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

+ Let prepare_request, prepare_retransmit and + handle_request callbacks return a function to be invoked + on outgoing messages after encode.

+

+ This allows encoded messages to be logged for example.

+

+ Own Id: OTP-10441

+
+ +

+ Add service_opt() 'restrict_connections' to allow + multiple transport connections with the same peer.

+

+ Own Id: OTP-10443

+
+ +

+ Add service_opt() 'sequence' to allow the masking of a + constant onto the topmost bits of End-to-End and + Hop-by-Hop identifiers.

+

+ This allows the same service on different nodes to use + distinct values in outgoing request messages.

+

+ Own Id: OTP-10445

+
+ +

+ Add diameter:service_info(PeerRef) to return the + transport_ref() and transport_opt() list of the + corresponding transport.

+

+ This allows easy access to these from diameter_app + callbacks that only get peer_ref() as an argument.

+

+ Own Id: OTP-10470

+
+ +

+ Add reference pages diameter_codec(3) and + diameter_make(3).

+

+ Own Id: OTP-10471

+
+ +

+ Add events for service start and stop.

+

+ Own Id: OTP-10492

+
+ +

+ Add transport_opt() 'disconnect_cb' to make the sending + of DPR configurable.

+

+ Whether or not DPR should be sent at application stop, + service stop or transport removal is determined by the + value returned by the callback, as is the + Disconnect-Cause and timeout if DPA is not received.

+

+ Own Id: OTP-10493

+
+ +

+ Add transport_opt() 'capx_timeout' for the timeout + associated with non-reception of CER/CEA.

+

+ Own Id: OTP-10554

+
+ +

+ Allow a handle_request callback to return a + #diameter_packet{}.

+

+ This allows an answer to set transport_data and header + fields.

+

+ Own Id: OTP-10566

+
+ +

+ Update documentation for RFC 6733.

+

+ RFC 3588 is now obsolete.

+

+ Own Id: OTP-10568

+
+
+
+ +
+
Diameter 1.2
Fixed Bugs and Malfunctions diff --git a/lib/erl_docgen/doc/src/notes.xml b/lib/erl_docgen/doc/src/notes.xml index ee62de86b1..9775909d76 100644 --- a/lib/erl_docgen/doc/src/notes.xml +++ b/lib/erl_docgen/doc/src/notes.xml @@ -30,7 +30,23 @@

This document describes the changes made to the erl_docgen application.

-
Erl_Docgen 0.3.2 +
Erl_Docgen 0.3.3 + +
Improvements and New Features + + +

A possibility to configure erl_docgen so it can + generate documentation for other products than + Erlang/OTP.

+

+ Own Id: OTP-9040

+
+
+
+ +
+ +
Erl_Docgen 0.3.2
Fixed Bugs and Malfunctions diff --git a/lib/erl_interface/doc/src/notes.xml b/lib/erl_interface/doc/src/notes.xml index 6791c39c7d..f0a9b336ff 100644 --- a/lib/erl_interface/doc/src/notes.xml +++ b/lib/erl_interface/doc/src/notes.xml @@ -30,6 +30,24 @@

This document describes the changes made to the Erl_interface application.

+
Erl_Interface 3.7.9 + +
Improvements and New Features + + +

Teach lib/erl_interface/configure.in to look for + pthreads support in libc (where it can be found on + QNX)

A minor tweak such that this configure + *fails* if you pass --enable-threads and no pthreads + support can be found.

(Thanks to Per Hedeland) +

+ Own Id: OTP-10581

+
+
+
+ +
+
Erl_Interface 3.7.8
Improvements and New Features diff --git a/lib/erl_interface/vsn.mk b/lib/erl_interface/vsn.mk index 4e401c874e..1718f38069 100644 --- a/lib/erl_interface/vsn.mk +++ b/lib/erl_interface/vsn.mk @@ -1 +1 @@ -EI_VSN = 3.7.8 +EI_VSN = 3.7.9 diff --git a/lib/hipe/doc/src/notes.xml b/lib/hipe/doc/src/notes.xml index 1841c7d9de..cfd22a9d8d 100644 --- a/lib/hipe/doc/src/notes.xml +++ b/lib/hipe/doc/src/notes.xml @@ -30,6 +30,22 @@

This document describes the changes made to HiPE.

+
Hipe 3.9.3 + +
Fixed Bugs and Malfunctions + + +

+ A faulty spec for process_info/2 could cause false + dialyzer warnings. The spec is corrected.

+

+ Own Id: OTP-10584

+
+
+
+ +
+
Hipe 3.9.2
Fixed Bugs and Malfunctions diff --git a/lib/hipe/vsn.mk b/lib/hipe/vsn.mk index 144167f5d1..f3e2e695b5 100644 --- a/lib/hipe/vsn.mk +++ b/lib/hipe/vsn.mk @@ -1 +1 @@ -HIPE_VSN = 3.9.2 +HIPE_VSN = 3.9.3 diff --git a/lib/inets/doc/src/notes.xml b/lib/inets/doc/src/notes.xml index 3aae1ff70a..e0d6ae3454 100644 --- a/lib/inets/doc/src/notes.xml +++ b/lib/inets/doc/src/notes.xml @@ -33,7 +33,27 @@ -
+
Inets 5.9.2 + +
Improvements and New Features + + +

+ Minimum bytes per second

+

+ New option to http server, {minimum_bytes_per_second, + integer()}, for a connection, if it is not reached the + socket will close for that specific connection. Can be + used to prevent hanging requests from faulty clients.

+

+ Own Id: OTP-10392

+
+
+
+ +
+ +
Inets 5.9.1
diff --git a/lib/kernel/doc/src/notes.xml b/lib/kernel/doc/src/notes.xml index 8e911a406b..78bc533464 100644 --- a/lib/kernel/doc/src/notes.xml +++ b/lib/kernel/doc/src/notes.xml @@ -30,6 +30,44 @@

This document describes the changes made to the Kernel application.

+
Kernel 2.15.3 + +
Fixed Bugs and Malfunctions + + +

+ Ensure 'erl_crash.dump' when asked for it. This will + change erl_crash.dump behaviour.

+

+ * Not setting ERL_CRASH_DUMP_SECONDS will now terminate + beam immediately on a crash without writing a crash dump + file.

+

+ * Setting ERL_CRASH_DUMP_SECONDS to 0 will also terminate + beam immediately on a crash without writing a crash dump + file, i.e. same as not setting ERL_CRASH_DUMP_SECONDS + environment variable.

+

+ * Setting ERL_CRASH_DUMP_SECONDS to a negative value will + let the beam wait indefinitely on the crash dump file + being written.

+

+ * Setting ERL_CRASH_DUMP_SECONDS to a positive value will + let the beam wait that many seconds on the crash dump + file being written.

+

+ A positive value will set an alarm/timeout for restart + both in beam and in heart if heart is running.

+

+ *** POTENTIAL INCOMPATIBILITY ***

+

+ Own Id: OTP-10422 Aux Id: kunagi-250 [161]

+
+
+
+ +
+
Kernel 2.15.2
Fixed Bugs and Malfunctions diff --git a/lib/percept/doc/src/notes.xml b/lib/percept/doc/src/notes.xml index 1ac1a5ab62..dd70cfe994 100644 --- a/lib/percept/doc/src/notes.xml +++ b/lib/percept/doc/src/notes.xml @@ -32,6 +32,21 @@

This document describes the changes made to the Percept application.

+
Percept 0.8.7 + +
Fixed Bugs and Malfunctions + + +

+ Add missing modules in app-file

+

+ Own Id: OTP-10439

+
+
+
+ +
+
Percept 0.8.6.1
Improvements and New Features diff --git a/lib/percept/vsn.mk b/lib/percept/vsn.mk index 9267a41055..f868246f7b 100644 --- a/lib/percept/vsn.mk +++ b/lib/percept/vsn.mk @@ -1 +1 @@ -PERCEPT_VSN = 0.8.6.1 +PERCEPT_VSN = 0.8.7 diff --git a/lib/public_key/doc/src/notes.xml b/lib/public_key/doc/src/notes.xml index d895042570..a5e8beedf0 100644 --- a/lib/public_key/doc/src/notes.xml +++ b/lib/public_key/doc/src/notes.xml @@ -34,6 +34,41 @@ notes.xml +
Public_Key 0.17 + +
Fixed Bugs and Malfunctions + + +

+ ssh_decode now handles comments, at the end of the line, + containing withe spaces correctly

+

+ Own Id: OTP-9361

+
+ +

+ Add missing references to sha224 and sha384

+

+ Own Id: OTP-9362 Aux Id: seq12116

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

+ public_key now supports PKCS-10 and includes exprimental + support for PKCS-7

+

+ Own Id: OTP-10509 Aux Id: kunagi-291 [202]

+
+
+
+ +
+
Public_Key 0.16
Improvements and New Features diff --git a/lib/ssh/doc/src/notes.xml b/lib/ssh/doc/src/notes.xml index 36010da07a..d4acb2ef1a 100644 --- a/lib/ssh/doc/src/notes.xml +++ b/lib/ssh/doc/src/notes.xml @@ -29,6 +29,50 @@ notes.xml +
Ssh 2.1.2 + +
Fixed Bugs and Malfunctions + + +

+ SSH quiet mode

+

+ A new option to ssh:connect/3,4, quiet_mode. If true, the + client will not print out anything on authorization.

+

+ Own Id: OTP-10429 Aux Id: kunagi-273 [184]

+
+ +

+ Restrict which key algorithms to use

+

+ A new option to ssh:connect/3,4 is introduced, + public_key_algs, where you can restrict which key + algorithms to use and in which order to try them.

+

+ Own Id: OTP-10498 Aux Id: kunagi-289 [200]

+
+ +

+ Confidentiality of client password

+

+ Unsets clients password after authentication.

+

+ Own Id: OTP-10511 Aux Id: kunagi-292 [203]

+
+ +

+ Fixed user interaction for SSH

+

+ It's now available to accept hosts and input password

+

+ Own Id: OTP-10513 Aux Id: kunagi-293 [204]

+
+
+
+ +
+
Ssh 2.1.1
Fixed Bugs and Malfunctions diff --git a/lib/ssl/doc/src/notes.xml b/lib/ssl/doc/src/notes.xml index 6c01954010..7e751a215d 100644 --- a/lib/ssl/doc/src/notes.xml +++ b/lib/ssl/doc/src/notes.xml @@ -30,7 +30,39 @@

This document describes the changes made to the SSL application.

-
SSL 5.1 +
SSL 5.1.1 + +
Fixed Bugs and Malfunctions + + +

+ ssl:recv/3 could "loose" data when the timeout occurs. If + the timout in ssl:connect or ssl:ssl_accept expired the + ssl connection process was not terminated as it should, + this due to gen_fsm:send_all_state_event timout is a + client side time out. These timouts are now handled by + the gen_fsm-procss instead.

+

+ Own Id: OTP-10569

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

+ Better termination handling that avoids hanging.

+

+ Own Id: OTP-10574

+
+
+
+ +
+ +
SSL 5.1
Fixed Bugs and Malfunctions diff --git a/lib/stdlib/doc/src/notes.xml b/lib/stdlib/doc/src/notes.xml index b4d9f9a444..2a308cbe09 100644 --- a/lib/stdlib/doc/src/notes.xml +++ b/lib/stdlib/doc/src/notes.xml @@ -30,6 +30,21 @@

This document describes the changes made to the STDLIB application.

+
STDLIB 1.18.3 + +
Fixed Bugs and Malfunctions + + +

+ Minor test updates

+

+ Own Id: OTP-10591

+
+
+
+ +
+
STDLIB 1.18.2
Fixed Bugs and Malfunctions diff --git a/lib/test_server/doc/src/notes.xml b/lib/test_server/doc/src/notes.xml index 3b109193a0..6a9add044a 100644 --- a/lib/test_server/doc/src/notes.xml +++ b/lib/test_server/doc/src/notes.xml @@ -32,6 +32,47 @@ notes.xml +
Test_Server 3.5.3 + +
Improvements and New Features + + +

+ test_server_h will now recognize info_reports written by + ct connection handlers (according to the description in + cth_conn_log) and ignore them as they will be completely + handled by by ct_conn_log_h.

+

+ Earlier test_server_h would print a tag (testcase name) + before forwarding the report to error_logger_tty_h. This + would cause lots of tags in the log with no info report + following (since error_logger_tty_h did not handle them).

+

+ Own Id: OTP-10571

+
+
+
+ + +
Known Bugs and Problems + + +

+ Restore Config data if lost when test case fails.

+

+ Own Id: OTP-10070 Aux Id: kunagi-175 [86]

+
+ +

+ IO server error in test_server.

+

+ Own Id: OTP-10125 Aux Id: OTP-10101, kunagi-177 [88]

+
+
+
+ +
+
Test_Server 3.5.2
Fixed Bugs and Malfunctions diff --git a/lib/test_server/vsn.mk b/lib/test_server/vsn.mk index aecf595f3f..b956ebb2b3 100644 --- a/lib/test_server/vsn.mk +++ b/lib/test_server/vsn.mk @@ -1 +1 @@ -TEST_SERVER_VSN = 3.5.2 +TEST_SERVER_VSN = 3.5.3 -- cgit v1.2.3