| Age | Commit message (Collapse) | Author | 
|---|
|  | It was done because "hibernate_after" option already used in ssl for the same reason. | 
|  |  | 
|  |  | 
|  | gen_event process's.
There is realized gen_server, gen_fsm, gen_event automatic hibernation functionality.
Added unit tests for realized functionality.
Added documentation for auto_hibernate_timeout option. | 
|  | * ingela/gen_fsm-doc-fix:
  stdlib: Adhere to DTD | 
|  |  | 
|  | OTP-14531 Generic time-outs in gen_statem
Conflicts:
	lib/stdlib/test/erl_internal_SUITE.erl | 
|  | * hasse/stdlib/fix_qlc_bug/OTP-14296:
  stdlib: Fix a test in sofs_SUITE
  debugger: Improve handling of pids, ports, and refs
  stdlib: Improve handling of pids, ports, and refs in qlc
  stdlib: Improve the Erlang shell's handling of references | 
|  | * hasse/unicode_atoms/OTP-14285:
  stdlib: Add Unicode modifier t to control sequence a
  stdlib: Add Unicode modifier t to control sequences w and W | 
|  | * ingela/deprecate/gen_fsm/OTP-14183:
  stdlib: Deprecate gen_fsm
Conflicts:
	lib/stdlib/doc/src/gen_fsm.xml | 
|  |  | 
|  | As of Erlang/OTP 20.0, the type of ETS tables, ets:tid(), is a
reference(). A request was put forward that the Erlang shell should be
able to handle references in its input.
This commit introduces an extended parser in module lib. It can parse
pids, ports, references, and external funs under the condition that
they can be created in the running system. The parser is meant to be
used internally in Erlang/OTP. The alternative, to extend erl_scan and
erl_parse, was deemed inferior as it would require the abstract format
be able to represent pids, ports, references, and funs, which would be
confusing as they are not expressions as such, but data types. | 
|  | * siri/unicode-atoms:
  Document that app names and nodes names are restricted to latin-1
Conflicts:
	lib/stdlib/doc/src/unicode_usage.xml | 
|  | Introduce new "Dbgi" chunk
OTP-14369 | 
|  |  | 
|  | The new Dbgi chunk returns data in the following format:
    {debug_info_v1, Backend, Data}
This allows compilers to store the debug info in different
formats. In order to retrieve a particular format, for
instance, Erlang Abstract Format, one may invoke:
    Backend:debug_info(erlang_v1, Module, Data, Opts)
Besides introducing the chunk above, this commit also:
  * Changes beam_lib:chunk(Beam, [:abstract_code]) to
    read from the new Dbgi chunk while keeping backwards
    compatibility with old .beams
  * Adds the {debug_info, {Backend, Data}} option to
    compile:file/2 and friends that are stored in the
    Dbgi chunk. This allows the debug info encryption
    mechanism to work across compilers
  * Improves dialyzer to work directly on Core Erlang,
    allowing languages that do not have the Erlang
    Abstract Format to be dialyzer as long as they emit
    the new chunk and their backend implementation is
    available
Backwards compatibility is kept across the board except
for those calling beam_lib:chunk(Beam, ["Abst"]), as the
old chunk is no longer available. Note however the "Abst"
chunk has always been optional.
Future OTP versions may remove parsing the "Abst" chunk
altogether from beam_lib once Erlang 19 and earlier is no
longer supported.
The current Dialyzer implementation still supports earlier
.beam files and such may also be removed in future versions. | 
|  | * maint:
  stdlib: Fix documentation on sets’ representation | 
|  | The Unicode translation modifier 't' is added to the io:fread/2,3
control sequence 'a'. | 
|  | As of the introduction of Unicode characters in atoms, the control
sequences 'w' and 'W' can return non-Latin-1 characters, unless some
measure is taken.
This commit makes sure that '~w' and '~W' always return Latin-1
characters, or bytes, which can be output to ports or written to raw
files.
The Unicode translation modifier 't' is needed to return non-Latin-1
characters. | 
|  |  | 
|  | * dgud/stdlib/unicode-string/OTP-10289:
  Handle chardata in string:to_float and string:to_list
  New unicode aware string module that works with unicode:chardata()
  Add nf(k)d, nf(k)c conversion functions to unicode module
  Reorder code and whitespace fixes
  Add unicode_util | 
|  | Works with unicode:chardata() as input as was decided on OTP board
meeting as response to EEP-35 a long time ago.
Works on graphemes clusters as base, with a few exceptions, does not
handle classic (nor nfd'ified) Hangul nor the extended grapheme
clusters such as the prepend class. That would make handling binaries
as input/output very slow.
List input => list output, binary input => binary output and
mixed input => mixed output for all find/split functions.
So that results can be post-processed without the need to invoke
unicode:characters_to_list|binary for intermediate data.
pad functions return lists of unicode:chardata() for performance. | 
|  |  | 
|  | * zandra/stdlib/optional-callbacks/OTP-13801:
  wx: make wx_object callbacks optional
  stdlib: Make gen_fsm callbacks optional
  stdlib: Make gen_event callbacks optional
  stdlib: Make gen_server callbacks optional | 
|  |  | 
|  |  | 
|  | * rand/arbitrary_normal_distributions:
  rand: Support arbitrary normal distributions
Conflicts:
	lib/stdlib/test/rand_SUITE.erl | 
|  |  | 
|  |  | 
|  |  | 
|  | * raimo/rand-dev/OTP-14295:
  Implement Xoroshiro116+ and improve statisticals | 
|  | Implement Xoroshiro116+ as 'exrop' with fixes.
Deprecate all old algorithms but reincarnate 'exs1024' as 'exs1024s'
and 'exsplus' as 'exsp' with fixes.
Fixes:
* Avoid skew for uniform integers caused by using a simple 'rem'
  operation for range confinement.  Correctness requires retry
  with new random value for an unfortunate first value.
* Implement a correct algorithm that collects enough random
  bits for ranges larger than the generator's precision.
* Fix uniform density for floats by acquiring 53 bits
  then multiplying with 2.0^(-53) which produces floats
  on the form N * 2.0^(-53). | 
|  |  | 
|  |  | 
|  |  | 
|  | * bjorn/stdlib/erl_tar/OTP-14278:
  erl_tar: Handle leading slashes and directory traversal attacks
  Don't create absolute path names in tar files | 
|  | Add re:version/0
OTP-14347 | 
|  |  | 
|  |  | 
|  | OTP-14331
* rickard/pcre-8.40:
  Update documentation
  Update README.pcre_update.md
  Stack guard for PCRE
  Adjust for incompatibility between PCRE 8.40 and perl 5.22.1
  Generate re replacement and split tests with perl vsn 5.22.1
  Fix re_SUITE:pcre_compile_workspace_overflow/1
  Skip line with lockout of modifiers in PCRE tests
  Update tests for PCRE version 8.40
  Update PCRE to version 8.40
Conflicts:
	erts/emulator/beam/beam_debug.c | 
|  |  | 
|  |  | 
|  |  | 
|  | * g-andrade/strong-random-numbers/PR-1367/OTP-14317:
  Clean up documentation and test cases
  Attempt faster approach to strong random floats
  Allow for crypto upgrades when using rand plugin
  fixup! Support cryptographically strong rand plugin
  fixup! Support cryptographically strong rand plugin
  fixup! Support cryptographically strong rand plugin
  fixup! Support cryptographically strong rand plugin
  No longer expose strong_rand_(range|float)
  Support cryptographically strong rand plugin
  Restyle crypto strong numeric generators for usage in rand
  Support generation of strong random numbers | 
|  |  | 
|  | ETS: Allow for conditional insertions | 
|  | Commit d2be06f introduced xmllint warnings. | 
|  |  | 
|  | Preemptively fail operation with badarg if the replacement object
might have a different key. | 
|  | The existing implementation presented both
semantic inconsistencies and performance issues. |