Skip to content

Latest commit

 

History

History
42 lines (29 loc) · 1.02 KB

CHANGELOG.md

File metadata and controls

42 lines (29 loc) · 1.02 KB

Changelog

1.2.1 (2017-03-15)

  • Require node >= 6.0.0

1.2.0 (2017-03-15)

  • Set ctx.id, ctx.request.id, and ctx.state.requestId as requestId
  • Add debug module on ctx.debug and ctx.app.debug
  • Set app.context.config (and ctx.config) to be the app configuration
  • Use koa-body instead of koa-better-body

1.1.0 (2017-01-22)

  • Allow middleware to be disabled with the enabled: false flag
  • Add request logging via koa-morgan

1.0.0 (2017-01-21)

First major release 🚀

koa-plus is koa with the following middleware by default:

  • koa-helmet (security headers)
  • kcors (CORS)
  • koa-compress (gzip)
  • koa-etag (ETag support)
  • koa-conditional-get (304 Not Modified support)
  • koa-better-body (request body parsing)
  • koa-json (object streaming, json printing)

0.2.0 (2017-01-21)

Adds support for:

  • CORS
  • Response Compression (Gzip)
  • Body parsing
  • ETags with Conditional GETs

0.1.0 (2017-01-21)

First release, including security headers via koa-helmet, response timing, and request IDs.