- Released Tuesday April 21st, 2015 @ 8.55pm
- Set Cache-Control header to
public, max-age=31536000
for requests that reach static serve middleware - Use asimov 1.3
- Move
/health
ping endpoint to end of middleware stack, so it can be overriden/skipped - Fix errors when interrupting the process on node 0.12
- Released Tuesday December 16th, 2014 @ 5.10pm
- A server worker process (i.e. middleware) can request and wait for data from its master process, using
asimov.requestData(query, callback)
andasimov.handleDataRequest(function (data, next) {})
- Released Tuesday December 16th, 2014 @ 3.30pm
- Send data from worker process to server worker with
asimov.trigger("public:serverVariables", "baz", { "foo": "bar" })
, will be available withasimov.config("server.data").baz.foo
- Released Friday November 28th, 2014 @ 5.55pm
- Update asimov to v1.1.0
- Update asimov-test to v0.3.0
- Released Saturday September 27th, 2014 @ 10.15pm
- Version 1.0 means the API is stable, and all future additions and changes will follow semantic versioning
- Released Wednesday July 30th, 2014 @ 7.30pm
- Expose /health endpoint for service discovery
- Released Monday July 14th, 2014 @ 1.55pm
- Simplified cluster post-initializer, fixes issue where added middleware is always executed before the standard middlewares
- Released Friday July 11th, 2014 @ 2.25pm
- Stop logging progress if
asimov.config('state')
isstopping
- Released Saturday May 31st, 2014 @ 9.25pm
- Fix issue with cluster workers not being properly killed when receiving SIGINT or SIGTERM signal
- Released Saturday May 31st, 2014 @ 2.20pm
- Use asimov 0.19.3, fixes issue with env.PORT not being respected #3
- Improved logger, starts rounding request count to thousands after a million requests
- Released Thursday May 29th, 2014 @ 9.15am
- Initial release, ported from asimov.js and refactored