Skip to content

Releases: lasselukkari/aWOT

v3.1.1

12 Jan 12:23
72a2dde
Compare
Choose a tag to compare

Fix CardFiles example to work on all platforms.

v3.1.0

12 Jan 09:10
d93b46b
Compare
Choose a tag to compare

Enables writing headers manually without calling response.set by introducing 3 new functions

v3.0.3

30 Nov 09:45
23b125c
Compare
Choose a tag to compare
  • Cleaned up internal logic for detecting timeouts

v3.0.2

08 Nov 16:45
aec0b84
Compare
Choose a tag to compare

Changes

  • Use bool type instead of boolean in one variable.

v3.0.1

08 Aug 13:48
d078212
Compare
Choose a tag to compare

Removed one unused local variable.

v3.0.0

19 Jul 13:49
a353df7
Compare
Choose a tag to compare

Breaking Changes

Router syntax

Router mounting syntax and functionality has been unified with normal middleware. See: 1d20673

HEAD Requests

Previously HEADtype 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

14 May 15:53
94ff0e2
Compare
Choose a tag to compare

Router route function renamed to use.

v2.0.0

14 Apr 13:19
c0ffffb
Compare
Choose a tag to compare
Merge pull request #69 from lasselukkari/v2

Bump version

v1.1.4

28 Dec 08:21
3088ae8
Compare
Choose a tag to compare

Do not set content length when response is empty.

v1.1.3

24 Nov 14:47
a4a0b9a
Compare
Choose a tag to compare

Removed unnecessary flushing from the response end.