CHANGELOG.asciidoc 1.0 KB

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