aboutsummaryrefslogtreecommitdiffstats
path: root/lib/stdlib/doc/src
diff options
context:
space:
mode:
Diffstat (limited to 'lib/stdlib/doc/src')
-rw-r--r--lib/stdlib/doc/src/notes.xml69
-rw-r--r--lib/stdlib/doc/src/supervisor.xml6
2 files changed, 69 insertions, 6 deletions
diff --git a/lib/stdlib/doc/src/notes.xml b/lib/stdlib/doc/src/notes.xml
index a38fcb3d0b..2ec0d6a60f 100644
--- a/lib/stdlib/doc/src/notes.xml
+++ b/lib/stdlib/doc/src/notes.xml
@@ -30,6 +30,75 @@
</header>
<p>This document describes the changes made to the STDLIB application.</p>
+<section><title>STDLIB 1.19.1</title>
+
+ <section><title>Fixed Bugs and Malfunctions</title>
+ <list>
+ <item>
+ <p> Bugs related to Unicode have been fixed in the
+ <c>erl_eval</c> module. </p>
+ <p>
+ Own Id: OTP-10622 Aux Id: kunagi-351 [262] </p>
+ </item>
+ <item>
+ <p><c>filelib:wildcard("some/relative/path/*.beam",
+ Path)</c> would fail to match any file. That is,
+ filelib:wildcard/2 would not work if the first component
+ of the pattern did not contain any wildcard characters.
+ (A previous attempt to fix the problem in R15B02 seems to
+ have made matters worse.)</p>
+ <p>(Thanks to Samuel Rivas and Tuncer Ayaz.)</p>
+ <p>There is also an incompatible change to the
+ <c>Path</c> argument. It is no longer allowed to be a
+ binary.</p>
+ <p>
+ *** POTENTIAL INCOMPATIBILITY ***</p>
+ <p>
+ Own Id: OTP-10812</p>
+ </item>
+ </list>
+ </section>
+
+
+ <section><title>Improvements and New Features</title>
+ <list>
+ <item>
+ <p> The new STDLIB application variable
+ <c>shell_strings</c> can be used for determining how the
+ Erlang shell outputs lists of integers. The new function
+ <c>shell:strings/1</c> toggles the value of the variable.
+ </p> <p> The control sequence modifier <c>l</c> can be
+ used for turning off the string recognition of <c>~p</c>
+ and <c>~P</c>. </p>
+ <p>
+ Own Id: OTP-10755</p>
+ </item>
+ <item>
+ <p> Miscellaneous updates due to Unicode support. </p>
+ <p>
+ Own Id: OTP-10820</p>
+ </item>
+ <item>
+ <p> Extend <c>~ts</c> to handle binaries with characters
+ coded in ISO-latin-1 </p>
+ <p>
+ Own Id: OTP-10836</p>
+ </item>
+ <item>
+ <p>
+ The +pc flag to erl can be used to set the range of
+ characters considered printable. This affects how the
+ shell and io:format("~tp",...) functionality does
+ heuristic string detection. More can be read in STDLIB
+ users guide.</p>
+ <p>
+ Own Id: OTP-10884</p>
+ </item>
+ </list>
+ </section>
+
+</section>
+
<section><title>STDLIB 1.19</title>
<section><title>Fixed Bugs and Malfunctions</title>
diff --git a/lib/stdlib/doc/src/supervisor.xml b/lib/stdlib/doc/src/supervisor.xml
index 9021d02ade..3f36c58d24 100644
--- a/lib/stdlib/doc/src/supervisor.xml
+++ b/lib/stdlib/doc/src/supervisor.xml
@@ -177,12 +177,6 @@ child_spec() = {Id,StartFunc,Restart,Shutdown,Type,Modules}
child process, it must be implemented in a safe way and its cleanup
procedure must always return.</p>
</warning>
- <p><em>Important note on simple-one-for-one supervisors:</em>
- The dynamically created child processes of a
- simple-one-for-one supervisor are not explicitly killed,
- regardless of shutdown strategy, but are expected to terminate
- when the supervisor does (that is, when an exit signal from
- the parent process is received).</p>
<p>Note that all child processes implemented using the standard
OTP behavior modules automatically adhere to the shutdown
protocol.</p>