CHANGELOG.asciidoc 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. = CHANGELOG
  2. == 1.2.1
  3. * Fix bug preventing node shutdown when SSL is used with OTP 17.1+
  4. * Tune restart intensity in all supervisors
  5. == 1.2.0
  6. * Allow the supervised process and the process owning the socket to be different
  7. * Add many transport options (please refer to the documentation)
  8. * Add function ranch:get_addr/1 to retrieve both IP and port of listener
  9. * Don't pass Ranch-specific options down to transports
  10. ** Should make Dialyzer happy in user projects.
  11. ** New types ranch:opt(), ranch_tcp:opt(), ranch_ssl:ssl_opt() and ranch_ssl:opt()
  12. * Fix crash when filtering unknown options out
  13. * Print a warning for each option filtered out
  14. * Handle Transport:controlling_socket/2 errors and close the socket
  15. * Handle Protocol:start_link/4 crashes to avoid killing all active connections
  16. * Use Asciidoc for documentation.
  17. * Test Ranch across 14 Erlang versions on CircleCI.
  18. * Improve and document test suites with recent ct_helper improvements.
  19. * Fix a number of intermittent test issues.
  20. == 1.1.0
  21. * Add Transport:secure/0
  22. * Add SSL partial_chain option
  23. * Stop reporting errors on {error, closed} in accept_ack
  24. == 1.0.0
  25. * Initial release.