Releases: expressjs/express
Releases · expressjs/express
4.2.0
- deprecate
app.del()-- useapp.delete()instead - deprecate
res.json(obj, status)-- useres.json(status, obj)instead- the edge-case
res.json(status, num)requiresres.status(status).json(num)
- the edge-case
- deprecate
res.jsonp(obj, status)-- useres.jsonp(status, obj)instead- the edge-case
res.jsonp(status, num)requiresres.status(status).jsonp(num)
- the edge-case
- fix
req.nextwhen inside router instance - include
ETagheader inHEADrequests - keep previous
Content-Typeforres.jsonp - support PURGE method
- add
app.purge - add
router.purge - include PURGE in
app.all
- add
- update debug to 0.8.0
- add
enable()method - change from stderr to stdout
- add
- update methods to 1.0.0
- add PURGE
3.6.0
- deprecate
app.del()-- useapp.delete()instead - deprecate
res.json(obj, status)-- useres.json(status, obj)instead- the edge-case
res.json(status, num)requiresres.status(status).json(num)
- the edge-case
- deprecate
res.jsonp(obj, status)-- useres.jsonp(status, obj)instead- the edge-case
res.jsonp(status, num)requiresres.status(status).jsonp(num)
- the edge-case
- support PURGE method
- add
app.purge - add
router.purge - include PURGE in
app.all
- add
- update connect to 2.15.0
- Add
res.appendHeader - Call error stack even when response has been sent
- Patch
res.headerSentto return Boolean - Patch
res.headersSentfor node.js 0.8 - Prevent default 404 handler after response sent
- dep: [email protected]
- dep: [email protected]
- dep: debug@^0.8.0
- dep: [email protected]
- dep: [email protected]
- dep: [email protected]
- dep: [email protected]
- dep: [email protected]
- Add
- update debug to 0.8.0
- add
enable()method - change from stderr to stdout
- add
- update methods to 1.0.0
- add PURGE
- update mkdirp to 0.5.0
4.1.2
- fix
req.hostfor IPv6 literals - fix
res.jsonperror if callback param is object
3.5.3
- fix
req.hostfor IPv6 literals - fix
res.jsonperror if callback param is object