From fb7006280f8d5a45459e1fba066fe6f6131e8e86 Mon Sep 17 00:00:00 2001 From: Erlang/OTP Date: Mon, 24 Sep 2018 11:32:41 +0200 Subject: Prepare release --- lib/kernel/doc/src/notes.xml | 105 +++++++++++++++++++++++++++++++++++++++++++ lib/kernel/vsn.mk | 2 +- 2 files changed, 106 insertions(+), 1 deletion(-) (limited to 'lib/kernel') diff --git a/lib/kernel/doc/src/notes.xml b/lib/kernel/doc/src/notes.xml index c766c18233..8188ede6a2 100644 --- a/lib/kernel/doc/src/notes.xml +++ b/lib/kernel/doc/src/notes.xml @@ -31,6 +31,111 @@

This document describes the changes made to the Kernel application.

+
Kernel 6.1 + +
Fixed Bugs and Malfunctions + + +

+ The values all and none are documented as + valid value for the Kernel configuration parameter + logger_level, but would cause a crash during node + start. This is now corrected.

+

+ Own Id: OTP-15143

+
+ +

+ Fix some potential buggy behavior in how ticks are sent + on inter node distribution connections. Tick is now sent + to c-node even if there are unsent buffered data, as + c-nodes need ticks in order to send reply ticks. The + amount of sent data was also calculated wrongly when + ticks were suppressed due to unsent buffered data.

+

+ Own Id: OTP-15162 Aux Id: ERIERL-191

+
+ +

+ Non semantic change in dist_util.erl to silence dialyzer + warning.

+

+ Own Id: OTP-15170

+
+ +

+ Fixed net_kernel:connect_node(node()) to return + true (and do nothing) as it always has before + OTP-21.0. Also documented this successful "self connect" + as the expected behavior.

+

+ Own Id: OTP-15182 Aux Id: ERL-643

+
+ +

+ The single_line option on logger_formatter would in some + cases add an unwanted comma after the association arrows + in a map. This is now corrected.

+

+ Own Id: OTP-15228

+
+ +

+ Improved robustness of distribution connection setup. In + OTP-21.0 a truly asynchronous connection setup was + introduced. This is further improvement on that work to + make the emulator more robust and also be able to recover + in cases when involved Erlang processes misbehave.

+

+ Own Id: OTP-15297 Aux Id: OTP-15279, OTP-15280

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

+ A new macro, ?LOG(Level,...), is added. This is + equivalent to the existing ?LOG_<LEVEL>(...) + macros.

+

+ A new variant of Logger report callback is added, which + takes an extra argument containing options for size + limiting and line breaks. Module proc_lib in + STDLIB uses this for crash reports.

+

+ Logger configuration is now checked a bit more for + errors.

+

+ Own Id: OTP-15132

+
+ +

+ The socket options recvtos, recvttl, + recvtclass and pktoptions have been + implemented in the socket modules. See the documentation + for the gen_tcp, gen_udp and inet + modules. Note that support for these in the runtime + system is platform dependent. Especially for + pktoptions which is very Linux specific and + obsoleted by the RFCs that defined it.

+

+ Own Id: OTP-15145 Aux Id: ERIERL-187

+
+ +

+ Add logger:set_application_level/2 for setting the + logger level of all modules in one application.

+

+ Own Id: OTP-15146

+
+
+
+ +
+
Kernel 6.0.1
Fixed Bugs and Malfunctions diff --git a/lib/kernel/vsn.mk b/lib/kernel/vsn.mk index fe22e2af98..df95174c9f 100644 --- a/lib/kernel/vsn.mk +++ b/lib/kernel/vsn.mk @@ -1 +1 @@ -KERNEL_VSN = 6.0.1 +KERNEL_VSN = 6.1 -- cgit v1.2.3