Releases: cmorten/opine
Releases · cmorten/opine
0.5.3
ChangeLog
[0.5.3] - 28-05-2020
- fix: better types for
Router
.
0.5.2
ChangeLog
[0.5.2] - 28-05-2020
- fix: only set
x-powered-by
header if it is enabled as a setting. - feat: add missing methods to
response.md
API docs:unset
andetag
. - chore: audit of feature gap between Express and Opine. Available as TODOs in the code.
0.5.1
ChangeLog
[0.5.1] - 27-05-2020
- fix: missing location method type
- feat: add res.location usage example
- feat: update API docs pointer out use of res.location()
0.5.0
ChangeLog
[0.5.0] - 27-05-2020
- fix: major bug with the body parsers.
req.body
is protected in Deno and thus cannot overwrite. We could look to use a proxy like method in the future. For now we populatereq.parsedBody
instead. - docs: update middlewares and request docs to cover the use of
req.parsedBody
. - test: update body-parser unit tests.
- docs: update examples to include
urlencoded
,text
andraw
body parser examples. - docs: add
README.md
to the examples + improve each examples'README.md
.
0.4.2
ChangeLog
[0.4.2] - 26-05-2020
- fix: formatting bug.
0.4.1
ChangeLog
[0.4.1] - 26-05-2020
- feat: allow Express-like
port
passing signature forapp.listen()
.
0.4.0
ChangeLog
[0.4.0] - 25-05-2020
- feat: initial serveStatic implementation
- refactor: clean up examples.
- refactor: remove superfluous verification code given we have static type checking.
- refactor: remove unnecessary file path parsing.
- chore: remove old typings folder.
- chore: update docs, lockfile etc.
- feat: add benchmarks github action
- feat: update API docs with
serveStatic
middleware section
0.3.0
ChangeLog
[0.3.0] - 25-05-2020
Updated
[email protected]
->[email protected]
to pull in bug fixes for Deno>=1.0.2
.- Moved from
DENO_SUPPORTED_VERSION
toDENO_SUPPORTED_VERSIONS
- Added support for
v1.0.2
to CI workflow (v1.0.1
not supported due to breaking error in Deno).
0.2.0
ChangeLog
[0.2.0] - 23-05-2020
Added
json
,text
,raw
andurlencoded
body parser middlewares.
0.1.0
ChangeLog
[0.1.0] - 23-05-2020
Added
- Test coverage for majority of code that doesn't require supertest.
Updated
- fix: bug in router when next is undefined
- fix: bug in url parser for FQDN and other combinations
- fix: bug in etag generator not decoding Uint8Arrays