In addition, I wrote a full QuickCheck model for the new maps. That is, we randomly generate unit test cases for the maps and verify them. We have generated several millions of those test cases, including variants which heavily collides on the hash. This weeded out at least 10 grave bugs from the implementation, which in turn means this release is probably very stable with respect to maps.
Erlang/OTP 18.0 has been released
11–20 of 42 posts
Re: Erlang/OTP 18.0 has been released
#12Still non mingw or mingw-w64 or (windows) clang friendly.
Re: Erlang/OTP 18.0 has been released
#13Re: Erlang/OTP 18.0 has been released
#14> ssl: Remove default support for RC4 cipher suites, as they are consider too weak.
I'm not following Erlang news but was just wondering, aren't these fixes coming out way too late?
Re: Erlang/OTP 18.0 has been released
#15> ssl: Remove default support for SSL-3.0 and added padding check for TLS-1.0 due to the Poodle vulnerability. > ssl: Remove default support for RC4 cipher suites, as they are consider too weak. I'm not following Erlang news but was just wondering, aren't these fixes coming out way too late?
https://www.rabbitmq.com/ssl.html
It is different from an end-user application in the sense that you can configure this in a safe way, and that has indeed been the typical workaround.
Now we just make it impossible for people to misconfigure this in any way.
The fix was also backported to 17.5 w.r.t the padding for TLS-1.0.
Another point worth mentioning is that Erlang/OTP uses OpenSSL, but only for the cryptographic ciphers. `ssl` is a complete standalone implementation of TLS in Erlang and this automatically avoids a lot of trouble. The common case is that an attack on OpenSSL leaves the `ssl` application unaffected by the error.
Re: Erlang/OTP 18.0 has been released
#16Earlier quoted context omitted.
Anything noteworthy ? :-)
How come you havent noticed?! The number! 18! Come on, Ruby is on 2, Python struggles to get to 3 and Java tries to catch poorely with 8...
I could make small incremental updates to a toy language and release them every week to get to FooBarLang 200.0.0, that doesn't mean it's progressing faster than a language at release 2 or 10.
Re: Erlang/OTP 18.0 has been released
#17Something you may find interesting is that the new faster maps are loosely based on Rich Hickey's HAMT implementation that is used in Clojure. Jose and co. in Elixir adapted/is-adapting their internals to use maps as well, as they were faster than any implementation they had. In addition, I wrote a full QuickCheck model for the new maps. That is, we randomly generate unit test cases for the maps and verify them. We h…
Re: Erlang/OTP 18.0 has been released
#18Earlier quoted context omitted.
How come you havent noticed?! The number! 18! Come on, Ruby is on 2, Python struggles to get to 3 and Java tries to catch poorely with 8...
Random numbers (18 vs Python's 3 or Java's 8) don't mean anything without comparing the release cycles and version numbering schemes as well. I could make small incremental updates to a toy language and release them every week to get to FooBarLang 200.0.0, that doesn't mean it's progressing faster than a language at release 2 or 10.
Re: Erlang/OTP 18.0 has been released
#19https://github.com/erlang/otp/commit/37f143e9e16e89d753b0e5e...
Re: Erlang/OTP 18.0 has been released
#20Something you may find interesting is that the new faster maps are loosely based on Rich Hickey's HAMT implementation that is used in Clojure. Jose and co. in Elixir adapted/is-adapting their internals to use maps as well, as they were faster than any implementation they had. In addition, I wrote a full QuickCheck model for the new maps. That is, we randomly generate unit test cases for the maps and verify them. We h…
Out of curiosity: QuickCheck is a property based test library? I know of test.check in Clojure and they mention QuickCheck as the inspiration, so I guess they re similar in this regard.