All Versions
70
Latest Version
Avg Release Cycle
31 days
Latest Release
2284 days ago

Changelog History
Page 7

  • v0.6.1 Changes

    October 17, 2016

    โž• Added

    • Ace.TCP.Endpoint.port/1 will return the port an endpoint is listening too. Required when the port option is set to 0 and the port is allocated by the OS.

    ๐Ÿ›  Fixed

    • The handle_packet and handle_info callbacks for a server module are able produce a return of the format {:nosend, state}.
  • v0.6.0 Changes

    October 17, 2016

    โž• Added

    • Collect all processes in an endpoint GenServer so that they can be started as a unit and only the endpoint is linked to the calling process. This allows for endpoints to be added to supervision tree.

    โœ‚ Removed

    • Ace.TCP.start/2 use start_link/2 instead which takes app as the first argument not the second.
  • v0.5.2 Changes

    October 13, 2016

    ๐Ÿ”„ Changed

    • The governors will keeps starting server processes to match demand.
  • v0.5.1 Changes

    October 10, 2016

    ๐Ÿ”„ Changed

    • Send any message that is not TCP related to the handle_info callback, previous only messages that matched {:data, info} where handled.
  • v0.5.0 Changes

    October 07, 2016

    โž• Added

    • How to hande a tcp connection is specified by an application server module.
  • v0.4.0 Changes

    October 06, 2016

    โž• Added

    • System sends welcome message.
    • System sends data messages over the socket.

    ๐Ÿ”„ Changed

    • Starting a server no longer blocks until the connection has been closed.
  • v0.3.0 Changes

    October 04, 2016

    โž• Added

    • โšก๏ธ Dialyzer for static analysis, with updated contributing instructions.

    ๐Ÿ”„ Changed

    • Nothing, only bumped version due to incorrect publishing on hex.
  • v0.2.0 Changes

    October 04, 2016

    โž• Added

    • โœ… ExUnit test suit and single test case.
    • ExDoc for first hex published version.

    ๐Ÿ”„ Changed

    • Restructured to a mix project. Follow new start up instructions in README.
  • v0.1.1 Changes

    October 03, 2016

    ๐Ÿ›  Fixed

    • ๐Ÿ– Handle socket closed by client.
  • v0.1.0 Changes

    September 18, 2016

    โž• Added

    • The simplest TCP echo server.
    • All code exists in a single source file server.ex.
    • ๐Ÿ“š Documentation is added to the source code.