CHANGELOG.asciidoc 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. = CHANGELOG
  2. == 1.3.0
  3. * Tested with OTP R16B+ on Linux, FreeBSD, OSX and Windows
  4. * Add ssl to the list of dependencies
  5. * Add ranch:info/0 and ranch:procs/2 to retrieve Ranch state information
  6. * Allow configuring a listener with only SNI, without a default certificate
  7. * Blacklist transport options instead of whitelist
  8. ** Unknown options are now allowed, but will result in a Dialyzer warning
  9. * Add many transport options typespecs and documentation
  10. * Don't silently drop the accept rate when running out of fds
  11. * Prevent a race condition when stopping listeners
  12. * Improve reporting for common errors, for example eaddrinuse
  13. * Fix double removal of connections bug
  14. ** The number of active connections should now be exact
  15. * Fix stuck acceptor bug when controlling_socket returned errors
  16. * Numerous documentation and examples improvements
  17. == 1.2.1
  18. * Fix bug preventing node shutdown when SSL is used with OTP 17.1+
  19. * Tune restart intensity in all supervisors
  20. == 1.2.0
  21. * Allow the supervised process and the process owning the socket to be different
  22. * Add many transport options (please refer to the documentation)
  23. * Add function ranch:get_addr/1 to retrieve both IP and port of listener
  24. * Don't pass Ranch-specific options down to transports
  25. ** Should make Dialyzer happy in user projects.
  26. ** New types ranch:opt(), ranch_tcp:opt(), ranch_ssl:ssl_opt() and ranch_ssl:opt()
  27. * Fix crash when filtering unknown options out
  28. * Print a warning for each option filtered out
  29. * Handle Transport:controlling_socket/2 errors and close the socket
  30. * Handle Protocol:start_link/4 crashes to avoid killing all active connections
  31. * Use Asciidoc for documentation.
  32. * Test Ranch across 14 Erlang versions on CircleCI.
  33. * Improve and document test suites with recent ct_helper improvements.
  34. * Fix a number of intermittent test issues.
  35. == 1.1.0
  36. * Add Transport:secure/0
  37. * Add SSL partial_chain option
  38. * Stop reporting errors on {error, closed} in accept_ack
  39. == 1.0.0
  40. * Initial release.