Swaps out std legacy server for new std server utilising the Deno native server impl. This may see an increase in Opine server performance... but haven't tuned particularly, so could be sloppy in places.
Is a change of internal implementation, so no deliberate public interface changes. Expect there may be some subtle differences due to moving from custom responses to Response instances (e.g. Content-Length for 204, or 304 responses no longer present) sufficient to warrant a major version bump anyway, if only to play safe.
Issue
Fixes #115.
Details
Swaps out std legacy server for new std server utilising the Deno native server impl. This may see an increase in Opine server performance... but haven't tuned particularly, so could be sloppy in places.
Is a change of internal implementation, so no deliberate public interface changes. Expect there may be some subtle differences due to moving from custom responses to
Response
instances (e.g.Content-Length
for204
, or304
responses no longer present) sufficient to warrant a major version bump anyway, if only to play safe.CheckList