Releases: lasselukkari/aWOT
v3.1.1
Fix CardFiles example to work on all platforms.
v3.1.0
Enables writing headers manually without calling response.set by introducing 3 new functions
v3.0.3
- Cleaned up internal logic for detecting timeouts
v3.0.2
Changes
- Use bool type instead of boolean in one variable.
v3.0.1
Removed one unused local variable.
v3.0.0
Breaking Changes
Router syntax
Router mounting syntax and functionality has been unified with normal middleware. See: 1d20673
HEAD Requests
Previously HEAD
type requests were automatically converted to GET
and the response write operations were disabled. Now the HEAD
request type has to be handled manually like the other HTTP request types.
Ending middleware execution
Previously response.end()
disabled all write operations and ended the middleware chain execution. Now it just ends the middleware chain. You can still write to the response inside the current middleware.
v2.0.1
Router route function renamed to use.
v2.0.0
Merge pull request #69 from lasselukkari/v2 Bump version
v1.1.4
Do not set content length when response is empty.
v1.1.3
Removed unnecessary flushing from the response end.