All Versions
70
Latest Version
Avg Release Cycle
31 days
Latest Release
1644 days ago
Changelog History
Page 6
Changelog History
Page 6
-
v0.9.3 Changes
August 20, 2017๐ Changed
- Discard down messages from unknown monitors.
- Accept request with absolute URL's in request line.
-
v0.9.2 Changes
๐ Fixed
- Governor to correctly demonitor started servers.
-
v0.9.1 Changes
June 14, 2017๐ Changed
- โฌ๏ธ Reduced noise from errors of prematurely closed connections.
-
v0.9.0 Changes
April 16, 2017๐ Changed
- Requires Elixir 1.4 and above,
required applications are now listed as
extra_applications
.
- Requires Elixir 1.4 and above,
required applications are now listed as
-
v0.8.1 Changes
April 02, 2017โ Added
- โ Warning logged when application module is not using the
Ace.Application
behaviour.
- โ Warning logged when application module is not using the
-
v0.8.0 Changes
March 26, 2017โ Added
Ace.TLS
for tcp/ssl endpoints, matchingAce.TCP
function profiles.Ace.Connection
to normalise:gen_tcp
/:ssl
interfaces.- Governors can be throttled to zero to drain connections,
see
Ace.Governor.Supervisor.drain/1
๐ Changed
- ๐ New connection calls
handle_connect/2
notinit/2
- Connection lost calls
handle_disconnect/2
notterminate/2
Ace.TCP
is now the callback module when starting and endpoint, there is noAce.TCP.Endpoint
module anymore.Ace.Governor
now aGenServer
to handle OTP sys calls
โ Removed
Ace.TCP.Server
, nowAce.Server
.Ace.TCP.Server.Supervisor
, nowAce.Server.Supervisor
.Ace.TCP.Governor
, nowAce.Governor
.Ace.TCP.Governor.Supervisor
, nowAce.Governor.Supervisor
.
-
v0.7.1 Changes
February 13, 2017๐ Changed
- ๐จ Startup information is printed using
Logger
and not directlyIO
.
๐ Fixed
- โ Remove warnings about bracket use from Elixir 1.4.
- ๐จ Startup information is printed using
-
v0.7.0 Changes
October 26, 2016โ Added
- ๐ Support a response with a timeout from server modules.
Passed directly to GenServer so integer and
:hibernate
responses are supported. - ๐ Support closing the connection from the server side. It is best to reserver server side closing for misbehaving connections.
- โ Added callbacks to
Ace.TCP.Server
so that is can be included as a behaviour.
- ๐ Support a response with a timeout from server modules.
Passed directly to GenServer so integer and
-
v0.6.3 Changes
October 24, 2016๐ Changed
- Information for new connections is now passed to the server as a map.
-
v0.6.2 Changes
October 24, 2016โ Added
- Endpoints can be registered as named processes by passing in a value for the
:name
option. Possible values for this are the same as for the underlyingGenServer
. - ๐ง The number of servers simultaneously accepting can now be configured.
Pass an integer value to the
:acceptors
option when starting and endpoint. Default value is 50.
- Endpoints can be registered as named processes by passing in a value for the