From dc57404252c47520f352834ad9be45ad684f96c9 Mon Sep 17 00:00:00 2001 From: Erlang/OTP Date: Thu, 4 May 2017 17:05:25 +0200 Subject: Prepare release --- lib/kernel/doc/src/notes.xml | 84 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 84 insertions(+) (limited to 'lib/kernel/doc') diff --git a/lib/kernel/doc/src/notes.xml b/lib/kernel/doc/src/notes.xml index 7127a59a0c..efb822f1b3 100644 --- a/lib/kernel/doc/src/notes.xml +++ b/lib/kernel/doc/src/notes.xml @@ -31,6 +31,90 @@

This document describes the changes made to the Kernel application.

+
Kernel 5.3 + +
Fixed Bugs and Malfunctions + + +

+ Fix bug where gethostname would incorrectly fail with + enametoolong on Linux.

+

+ Own Id: OTP-14310

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

+ Since Unicode is now allowed in atoms an extra check is + needed for node names, which are restricted to Latin-1.

+

+ Own Id: OTP-13805

+
+ +

Replaced usage of deprecated symbolic time + unit representations.

+

+ Own Id: OTP-13831 Aux Id: OTP-13735

+
+ +

file:write_file(Name, Data, [raw]) would turn + Data into a single binary before writing. This + meant it could not take advantage of the writev() + system call if it was given a list of binaries and told + to write with raw mode.

+

+ Own Id: OTP-13909

+
+ +

The performance of the disk_log has been + somewhat improved in some corner cases (big items), and + the documentation has been clarified.

+

+ Own Id: OTP-14057 Aux Id: PR-1245

+
+ +

Functions for detecting changed code has been added. + code:modified_modules/0 returns all currently + loaded modules that have changed on disk. + code:module_status/1 returns the status for a + module. In the shell and in c module, mm/0 + is short for code:modified_modules/0, and + lm/0 reloads all currently loaded modules that + have changed on disk.

+

+ Own Id: OTP-14059

+
+ +

+ Introduce an event manager in Erlang to handle OS + signals. A subset of OS signals may be subscribed to and + those are described in the Kernel application.

+

+ Own Id: OTP-14186

+
+ +

Sockets can now be bound to device (SO_BINDTODEVICE) + on platforms where it is supported.

This has + been implemented e.g to support VRF-Lite under Linux; see + + VRF , and GitHub pull request #1326. +

+

+ Own Id: OTP-14357 Aux Id: PR-1326

+
+
+
+ +
+
Kernel 5.2
Fixed Bugs and Malfunctions -- cgit v1.2.3