These are the changes for server. Follows semver as long as you use the documented features. If you reach into the internals, make sure to lock the version and follow the changes. Feel free to ask any question in Github :)
1.0.18 [reference]
- Fixed tag for npm so it doesn't install alphas by default.
1.0.17 [reference]
- Forgot a couple of debugging console.log(), so had to re-publish without them.
1.0.16 [reference]
1.0.15 [reference]
- Added session to the sockets.
- Fixed test and docs for jsonp.
1.0.14 [reference]
- Added express session globally so stores can be created based on that.
1.0.13 [reference]
- Fixed bug where some error handling might throw an error. From internal testing in one of my projects.
1.0.12 [reference]
- Remove the unexpected body that was set by express when only an status code was sent by making it explicit with status(NUMBER).send().
1.0.11 [reference]
- Never published, published on 1.0.12 instead.
1.0.10 [reference]
- Do not show a warning if only the status was set but no body was set.
1.0.9 [reference]
- Better error handling and warnings when there is no response from the server. Shows error only when it should.
1.0.8 [reference]
- Never published, published on 1.0.9 instead.
1.0.7 [reference]
- Fix for Yarn and npm having different path resolution. This was giving inconsistent results when using yarn (vs the expected one with npm):
server(
get('*', (ctx) => status(200))
);
1.0.6 [reference]
- Never published, published on 1.0.7 instead.
1.0.5 [reference]
- Fix subdomain order resolution (merged from @nick-woodward).
- Test subdomain handling.
- Removed pointless warning.
1.0.4 [reference]
- Specify that the
views
for express should be a folder (that can inherit). - Added environment variable name handling.
1.0.3 [reference]
- The log plugin is always on since it's needed internally.
- Better error handling for environment variables.
- Added the option to disable the CSRF and security plugins independently.
First major release.