Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-06-11 | public_key: Generated new moduli file | Hans Nilsson | |
2018-06-11 | Add test case | Raimo Niskanen | |
2018-06-11 | Parse #mc_new_type{}s before definitions_loop/2 | Raimo Niskanen | |
2018-06-11 | Merge branch 'raimo/better-TLS-distribution/OTP-15058' | Raimo Niskanen | |
* raimo/better-TLS-distribution/OTP-15058: Test nodename whitelist Use public_key to verify client hostname | |||
2018-06-11 | edoc, erl_docgen: Fix pretty-printing of type map() | Hans Bolinder | |
Complex types including map() are now pretty-printed. | |||
2018-06-08 | public_key: Make dialyzer happy | Hans Nilsson | |
2018-06-08 | Test nodename whitelist | Raimo Niskanen | |
2018-06-08 | Use public_key to verify client hostname | Raimo Niskanen | |
2018-06-08 | [logger] Update return values from get_handler_config/0,1 and get_config/0 | Siri Hansen | |
Module and Id are now always included as fields in Config, so these are no longer returned as separate elements. | |||
2018-06-08 | [logger] Change name of handler specific config field from ?MODULE to 'config' | Siri Hansen | |
And add field 'module' in handler config. | |||
2018-06-08 | [logger] Add more functions for reading configuration | Siri Hansen | |
Added: * logger:get_config() - replaces i(), returns all Logger configuration, i.e. primary and handler config, and module levels * logger:get_handler_ids() -> [HandlerId] * logger:get_handler_config() -> [{HandlerId,Module,Config}] Removed: * logger:i/1, will probably be replaced in a later release. | |||
2018-06-08 | [logger] Change concept of 'global' configuration to 'primary' configuration | Siri Hansen | |
Function names changed: get/set/update_logger_config -> get/set/update_primary_config add/remove_logger_filter -> add/remove_primary_filter | |||
2018-06-08 | [logger] Don't use error_logger:warning_map/0 | Siri Hansen | |
The warning map was added to allow backwards compatiblity with error_logger event handlers that were not prepared to receive warning reports. error_logger still uses this internally, if legacy error logger event handlers are installed. But Logger does not use it for new Logger handlers. | |||
2018-06-08 | [logger] Add if-exist functionality for metadata keys in formatter template | Siri Hansen | |
* Nested metadata keys are now expressed as list of atoms (was earlier tuples). * If-exist is expressed as: {Key,IfExist,Else} Key :: atom() | [atom()] IfExist :: template() Else :: template() | |||
2018-06-08 | [logger] Add configurable log levels 'all' and 'none' | Siri Hansen | |
New default for handlers is 'all'. | |||
2018-06-08 | [logger] Change registered name of built-in handlers and use TID for mode table | Peter Andersson | |
2018-06-08 | [logger] Update interface for setting/unsetting module level | Siri Hansen | |
* Level can now be set/unset for multiple modules in one call. * Added functions get_module_level/0 and get_module_level/1. | |||
2018-06-08 | Allow 'unlimited' as value to Kernel parameter error_logger_format_depth | Siri Hansen | |
2018-06-08 | [logger] Change base OTP domain from [beam,erlang,otp] to [otp] | Siri Hansen | |
2018-06-08 | [logger] Change handler config to accept all levels by default | Siri Hansen | |
2018-06-08 | [logger] Change names of sync functions in built-in handlers | Siri Hansen | |
logger_std_h:filesync/1 -----> logger_std_h:sync/1 logger_disk_log_h:disk_log_sync/1 -----> logger_disk_log_h:sync/1 | |||
2018-06-08 | kernel: Use ~0p | Hans Bolinder | |
2018-06-08 | debugger: Use ~0p | Hans Bolinder | |
2018-06-08 | common_test: Use ~0p | Hans Bolinder | |
2018-06-08 | Merge branch 'ingela/ssl/verify-hostname-customize/OTP-15102' | Ingela Anderton Andin | |
* ingela/ssl/verify-hostname-customize/OTP-15102: ssl: Add option customize_hostname_check | |||
2018-06-08 | ssl: Add option customize_hostname_check | Ingela Anderton Andin | |
2018-06-08 | Merge branch 'hasse/common_test/remove_edoc_comments' | Hans Bolinder | |
* hasse/common_test/remove_edoc_comments: common_test: Remove EDoc comments in internal modules common_test: Remove EDoc documentation in internal modules common_test: Remove EDoc documentation in public modules | |||
2018-06-08 | Merge branch 'hasse/eliminate_lib_module/OTP-15072/ERL-634' | Hans Bolinder | |
* hasse/eliminate_lib_module/OTP-15072/ERL-634: stdlib: Move eval_str/1 from mod_esi to erl_eval | |||
2018-06-07 | ssh: Fix client_sends_info_timing property test case | Hans Nilsson | |
2018-06-07 | public_key: Extend test case pkix_verify_hostname_subjAltName | Hans Nilsson | |
2018-06-07 | ssh: Add ssh/test/property_test dir to test releases | Hans Nilsson | |
2018-06-07 | Merge pull request #1832 from josevalim/jv-revert-beam-jump | Björn Gustavsson | |
Revert "Run the sharing optimisation in beam_jump until fixpoint" | |||
2018-06-07 | Merge pull request #1831 from bjorng/bjorn/compiler/fix-name-capture | Björn Gustavsson | |
Fix name capture problem in sys_core_fold OTP-15115 | |||
2018-06-07 | stdlib: Move eval_str/1 from mod_esi to erl_eval | Hans Bolinder | |
See also https://bugs.erlang.org/browse/ERL-634. The utility program `erl_call' in erl_interface used to call lib:eval_str/1, which is no longer present in Erlang/OTP 21.0. The lib module was eliminated in OTP-15072, see also https://github.com/erlang/otp/pull/1786. | |||
2018-06-07 | Don't use deprecated ssl:ssl_accept/1-3 | Anders Svensson | |
2018-06-07 | Don't use deprecated erlang:get_stacktrace/0 | Anders Svensson | |
2018-06-07 | common_test: Remove EDoc comments in internal modules | Hans Bolinder | |
2018-06-07 | common_test: Remove EDoc documentation in internal modules | Hans Bolinder | |
2018-06-07 | common_test: Remove EDoc documentation in public modules | Hans Bolinder | |
2018-06-07 | stdlib: Make pP insert no line breaks with field width zero | Hans Bolinder | |
See also https://bugs.erlang.org/browse/ERL-607. A zero field width used to insert line breaks "everywhere", but with this patch no line breaks are inserted. | |||
2018-06-05 | ssh: Document default algorithm order + update SSH_app links | Hans Nilsson | |
2018-06-05 | Merge branch 'maint' | John Högberg | |
* maint: Updated OTP version Prepare release inets: Gracefully handle bad headers | |||
2018-06-05 | Merge branch 'maint-20' into maint | John Högberg | |
* maint-20: Updated OTP version Prepare release inets: Gracefully handle bad headers [erl_docgen] Update version [erl_docgen] Add missing file db_funcs.xsl to file list erts: Fix bug in system_profile erts: Fix bug in enif_binary_to_term for immediates | |||
2018-06-05 | ssh: Remove dubious pubkey setup | Hans Nilsson | |
Conflicts: lib/ssh/test/ssh_algorithms_SUITE.erl | |||
2018-06-05 | stdlib: Fix error reason for maps:with/without | Lukas Larsson | |
2018-06-05 | Prepare release | Erlang/OTP | |
2018-06-05 | Merge branch 'ingela/inets/header-handling/OTP-15092' into maint-20 | Erlang/OTP | |
* ingela/inets/header-handling/OTP-15092: inets: Gracefully handle bad headers | |||
2018-06-05 | Merge branch 'dgud/stdlib/string-case-bin-bug' | Dan Gudmundsson | |
* dgud/stdlib/string-case-bin-bug: Fix *case bugs for binaries | |||
2018-06-05 | Merge pull request #1830 from arcz/patch-1 | Hans Bolinder | |
Missing space in gen_event doc | |||
2018-06-04 | Revert "Run the sharing optimisation in beam_jump until fixpoint" | José Valim | |
We have found cases where compilation drastically slows down due to this commit. We are working on a minimal cases and plan to bring this patch back once we can work our the performance issues. This reverts commit f7c9383f4c3d4b6819b5ba4d54c7093df806fe4a. |