Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-08-22 | map_SUITE: Test is_map_key/2 followed by a map update | Björn Gustavsson | |
2018-08-22 | beam_validator: Infer the type of the map argument for is_map_key/2 | Björn Gustavsson | |
Make sure that beam_validator considers a call to is_map_key/2 followed by an update of the same map without an is_map/1 test safe. (This situation will probably not be encountered when using the compiler in OTP 21, but better safe than sorry.) | |||
2018-08-22 | map_SUITE: Cover map_get optimizations in beam_dead | Björn Gustavsson | |
2018-08-22 | stdlib: Fix specs of filename:basedir/2,2 | Hans Bolinder | |
See also https://bugs.erlang.org/browse/ERL-667. | |||
2018-08-21 | ssl: Move formatting code to own module | Ingela Anderton Andin | |
The conversion code for different representations of cipher suites is long an repetitive. We want to hide it in a module that does not have other functions that we like to look at. | |||
2018-08-21 | ssl: Remove legacy files | Ingela Anderton Andin | |
When starting to implement DTLS, it was assumed that the APIs for TLS and DTLS would differ more. This assumption turned out to be wrong. | |||
2018-08-21 | Updated the engine load functionality | Lars Thorsen | |
- engine_load/3/4 can be called multiple times for same engine if it allows it (eg doesn't contain global data) - ensure_engine_loaded/2/3 is new functions that guarantees that the engine is just loaded once by adding it to OpenSSL internal engine list and check that before loading. - ensure_engine_unloaded/1/2 is new functions that is used to unload engines loaded with ensure_engine_loaded (remove it from OpenSSL internal engine list and then unload). - new utility functions engine_by_id/1, engine_add/1, engine_remove/1, engine_get_id/1 and engine_get_name/1 | |||
2018-08-21 | stdlib: Let dets:open_file() crash when given raw file name | Hans Bolinder | |
See also ERL-55 and OTP-13229. | |||
2018-08-20 | stdlib: Correct contracts in module io_lib_format | Hans Bolinder | |
2018-08-20 | stdlib: Improve error handling in module io_lib | Hans Bolinder | |
2018-08-20 | Merge pull request #1901 from getong/fix_ssl_example | Ingela Andin | |
Modernized example | |||
2018-08-17 | Fix kernel_app doc logger_level default from info to notice | tarabit190 | |
The doc says the default kernel logger_level is info, it should be notice. Please refer to commit 0d52b992c30eff8604e5a5363510fea38c712263 for more info. | |||
2018-08-17 | Clean up bag index tables | Dan Gudmundsson | |
Index records for bag tables with ram_copies was not deleted after "real" objects where deleted and thus a memory leak. | |||
2018-08-17 | Merge branch 'hans/ssh/curve_element/OTP-15244' into maint | Hans Nilsson | |
* hans/ssh/curve_element/OTP-15244: ssh: Use the 'macs' tag in crypto:supports/0 ssh: Use the new crypto:supports/0 tag 'curves' | |||
2018-08-16 | ssh: Use the 'macs' tag in crypto:supports/0 | Hans Nilsson | |
2018-08-16 | ssh: Use the new crypto:supports/0 tag 'curves' | Hans Nilsson | |
2018-08-16 | crypto: Try to generate ecdh for all crypto:curves() | Hans Nilsson | |
2018-08-16 | crypto: Put curve list in C | Hans Nilsson | |
2018-08-16 | Merge branch 'hans/crypto/cuddle_tests' into maint | Hans Nilsson | |
* hans/crypto/cuddle_tests: crypto: Fail tests if crypto cannot start | |||
2018-08-16 | Merge branch 'hans/ssh/cuddle_tests' into maint | Hans Nilsson | |
2018-08-16 | Merge pull request #1728 from davidw/emacs-align | Dan Gudmundsson | |
OTP-15239 | |||
2018-08-15 | fix double parenthesis and badly formatter <v> tags | Mariano Guerra | |
(cherry picked from commit 1b36c8ff81e896f9aa172603962f838d980668a0) | |||
2018-08-15 | ssh: prolong the timeout in ssh_dbg gen_server calls | Hans Nilsson | |
2018-08-15 | crypto: Fail tests if crypto cannot start | Hans Nilsson | |
2018-08-15 | Merge pull request #1927 from ↵ | Björn Gustavsson | |
bjorng/bjorn/compiler/double-receives/ERL-703/OTP-15235 Fix compiler crash when compiling double receives | |||
2018-08-15 | inets: Prepare for release | Ingela Anderton Andin | |
2018-08-15 | inets: Use status code 501 when no mod_* handles the request | Ingela Anderton Andin | |
Conflicts: lib/inets/test/httpd_SUITE.erl | |||
2018-08-15 | Merge branch 'maint-20' into maint | Ingela Anderton Andin | |
* maint-20: inets: Remove 21 test case Updated OTP version Update release notes Conflicts: OTP_VERSION lib/inets/doc/src/notes.xml lib/inets/test/httpd_SUITE.erl lib/inets/vsn.mk otp_versions.table | |||
2018-08-15 | inets: Remove 21 test case | Ingela Anderton Andin | |
A test case unrelated to the patch was accidentally added when backporting the solution. | |||
2018-08-15 | Merge branch 'ingela/inets/status-501/ERIERL-218/OTP-15215' into maint | Ingela Anderton Andin | |
* ingela/inets/status-501/ERIERL-218/OTP-15215: inets: Use status code 501 when no mod_* handles the request | |||
2018-08-15 | lukas/kernel/logger_set_app_lvl/PR-1843/OTP-15146 | Lukas Larsson | |
Add logger:set_application_level/2 | |||
2018-08-14 | Fixed bug calling erl_compare_ext with terms containing lists | Simon Cornish | |
The comparison did not consider the list tail and therefore would consider the following pairs of terms equal: {<<1,2,3>>, [901,902], 224} and {<<1,2,3>>, [901,902], 228} {a|b} and {a|c} | |||
2018-08-14 | Test for lists that aren't well defined | Simon Cornish | |
2018-08-14 | Update release notes | Erlang/OTP | |
2018-08-14 | Merge branch 'ingela/inets/maint-20/status-501/ERIERL-218/OTP-15215' into ↵ | Erlang/OTP | |
maint-20 * ingela/inets/maint-20/status-501/ERIERL-218/OTP-15215: inets: Prepare for release inets: Use status code 501 when no mod_* handles the request # Conflicts: # lib/inets/test/httpd_SUITE.erl # lib/inets/vsn.mk | |||
2018-08-14 | inets: Prepare for release | Ingela Anderton Andin | |
2018-08-14 | Fix compiler crash when compiling double receives | Björn Gustavsson | |
The compiler would crash when compiling a function with two receive statements. https://bugs.erlang.org/browse/ERL-703 | |||
2018-08-14 | inets: Use status code 501 when no mod_* handles the request | Ingela Anderton Andin | |
Conflicts: lib/inets/test/httpd_SUITE.erl | |||
2018-08-14 | Merge branch 'ingela/ssl/ERL-668/improve-err-msg/OTP-15234' into maint | Ingela Anderton Andin | |
* ingela/ssl/ERL-668/improve-err-msg/OTP-15234: ssl: Improve error message | |||
2018-08-14 | Merge branch 'ingela/ssl/ERL-686/OTP-15224' into maint | Ingela Anderton Andin | |
* ingela/ssl/ERL-686/OTP-15224: ssl: Error handling improvment | |||
2018-08-14 | Merge branch 'siri/logger/single_line-unwanted-comma/OTP-15228' into maint | Siri Hansen | |
* siri/logger/single_line-unwanted-comma/OTP-15228: [logger] Avoid unwanted commas introduced by formatter's single_line option | |||
2018-08-14 | inets: Use status code 501 when no mod_* handles the request | Ingela Anderton Andin | |
2018-08-13 | ssl: Prepare for release | Ingela Anderton Andin | |
2018-08-13 | Merge remote-tracking branch 'upstream/pr/1858' into maint | Dan Gudmundsson | |
* upstream/pr/1858: Fix delete_object and write convergence in transaction. OTP-15231 | |||
2018-08-13 | Merge remote-tracking branch 'upstream/pr/1860' into maint | Dan Gudmundsson | |
* upstream/pr/1860: Replace for loop with strchr Fix typos Clean unused wxe_driver callbacks Remove wx c_src compilation warning on Darwin OTP-15230 | |||
2018-08-13 | [logger] Avoid unwanted commas introduced by formatter's single_line option | Siri Hansen | |
When printing a map with ~p in a log message, the formatter's single_line option in some cases introduced unwanted commas after '=>', for example: This is now corrected. When single_line==true, width 0 is added to all ~p and ~P control sequences in the format string. | |||
2018-08-13 | ssh: Test group for circular buffer tracing | Hans Nilsson | |
2018-08-13 | ssh: Circular trace buffer primitives | Hans Nilsson | |
2018-08-13 | ssh: Make dbg test one group in ssh_dbg_SUITE | Hans Nilsson | |
2018-08-13 | Merge pull request #1919 from bjorng/bjorn/compiler/fix-is_map_key/OTP-15227 | Björn Gustavsson | |
Correct error behavior of is_map_key/2 in guards |