koa-lite/History.md

342 lines
8.2 KiB
Markdown
Raw Normal View History

2015-11-05 02:41:00 +00:00
2016-03-22 18:03:10 +00:00
2.0.0 /
==================
2016-07-23 18:06:19 +00:00
* fix(response): correct response.writable logic (#782)
2016-03-22 18:03:10 +00:00
* merge v1.1.2 and v1.2.0 changes
* include `koa-convert` so that generator functions still work
* NOTE: generator functions are deprecated in v2 and will be removed in v3
* improve linting
* improve docs
2016-08-10 19:16:39 +00:00
2.0.0-alpha.5 / 2016-08-10
==================
* fix `ctx.flushHeaders()` to use `res.flushHeaders()` instead of `res.writeHead()`
2.0.0-alpha.4 / 2016-07-23
==================
* fix `response.writeable` during pipelined requests
2016-03-22 18:03:10 +00:00
1.2.0 / 2016-03-03
==================
* add support for `err.headers` in `ctx.onerror()`
- see: https://github.com/koajs/koa/pull/668
- note: you should set these headers in your custom error handlers as well
- docs: https://github.com/koajs/koa/blob/master/docs/error-handling.md
* fix `cookies`' detection of http/https
- see: https://github.com/koajs/koa/pull/614
* deprecate `app.experimental = true`. Koa v2 does not use this signature.
* add a code of conduct
* test against the latest version of node
* add a lot of docs
1.1.2 / 2015-11-05
==================
* ensure parseurl always working as expected
* fix Application.inspect() missing .proxy value.
2015-11-05 02:41:00 +00:00
2.0.0-alpha.3 / 2015-11-05
==================
* ensure parseurl always working as expected. #586
* fix Application.inspect() missing .proxy value. Closes #563
2015-10-27 23:31:24 +00:00
2.0.0-alpha.2 / 2015-10-27
==================
* remove `co` and generator support completely
* improved documentation
* more refactoring into ES6
2015-10-22 23:37:49 +00:00
2.0.0-alpha.1 / 2015-10-22
==================
* change the middleware signature to `async (ctx, next) => await next()`
2015-10-27 23:31:24 +00:00
* drop node < 4 support and rewrite the codebase in ES6
2015-10-22 23:37:49 +00:00
2015-10-22 23:40:55 +00:00
1.1.1 / 2015-10-22
==================
* do not send a content-type when the type is unknown #536
2015-10-11 23:31:05 +00:00
1.1.0 / 2015-10-11
==================
* add `app.silent=<Boolean>` to toggle error logging @tejasmanohar #486
* add `ctx.origin` @chentsulin #480
* various refactoring
- add `use strict` everywhere
2015-08-22 21:47:31 +00:00
1.0.0 / 2015-08-22
==================
* add `this.req` check for `querystring()`
* don't log errors with `err.expose`
* `koa` now follows semver!
2013-12-29 02:37:40 +00:00
2015-05-24 03:15:23 +00:00
0.21.0 / 2015-05-23
==================
* empty `request.query` objects are now always the same instance
* bump `fresh@0.3.0`
2015-04-30 08:21:46 +00:00
0.20.0 / 2015-04-30
==================
Breaking change if you're using `this.get('ua') === undefined` etc.
For more details please checkout [#438](https://github.com/koajs/koa/pull/438).
* make sure helpers return strict string
* feat: alias response.headers to response.header
2015-04-14 04:02:02 +00:00
0.19.1 / 2015-04-14
==================
* non-error thrown, fixed #432
2015-04-05 18:24:06 +00:00
0.19.0 / 2015-04-05
==================
* `req.host` and `req.hostname` now always return a string (semi-breaking change)
* improved test coverage
2015-03-01 18:34:21 +00:00
0.18.1 / 2015-03-01
==================
* move babel to `devDependencies`
2015-02-15 03:54:21 +00:00
0.18.0 / 2015-02-14
==================
2015-02-15 03:56:47 +00:00
* experimental es7 async function support via `app.experimental = true`
2015-02-15 03:54:21 +00:00
* use `content-type` instead of `media-typer`
2015-02-15 03:56:47 +00:00
2015-02-06 08:01:35 +00:00
0.17.0 / 2015-02-05
==================
Breaking change if you're using an old version of node v0.11!
Otherwise, you should have no trouble upgrading.
* official iojs support
* drop support for node.js `>= 0.11.0 < 0.11.16`
* use `Object.setPrototypeOf()` instead of `__proto__`
* update dependencies
2015-01-27 20:14:56 +00:00
0.16.0 / 2015-01-27
==================
* add `res.append()`
* fix path usage for node@0.11.15
2015-01-19 06:04:13 +00:00
0.15.0 / 2015-01-18
2014-12-27 22:18:01 +00:00
==================
* add `this.href`
2014-12-15 18:13:40 +00:00
0.14.0 / 2014-12-15
==================
* remove `x-powered-by` response header
* fix the content type on plain-text redirects
* add ctx.state
* bump `co@4`
* bump dependencies
2014-10-18 01:21:32 +00:00
0.13.0 / 2014-10-17
==================
2014-10-18 21:57:56 +00:00
* add this.message
2014-10-18 01:21:32 +00:00
* custom status support via `statuses`
0.12.2 / 2014-09-28
==================
* use wider semver ranges for dependencies koa maintainers also maintain
2014-09-22 00:59:30 +00:00
0.12.1 / 2014-09-21
==================
* bump content-disposition
* bump statuses
2014-09-20 20:23:40 +00:00
0.12.0 / 2014-09-20
==================
* add this.assert()
* use content-disposition
2014-09-22 00:59:30 +00:00
2014-09-08 08:44:17 +00:00
0.11.0 / 2014-09-08
==================
* fix app.use() assertion #337
* bump a lot of dependencies
2014-09-20 20:23:40 +00:00
2014-08-12 21:25:19 +00:00
0.10.0 / 2014-08-12
==================
* add `ctx.throw(err, object)` support
* add `ctx.throw(err, status, object)` support
2014-08-08 02:06:40 +00:00
0.9.0 / 2014-08-07
==================
* add: do not set `err.expose` to true when err.status not a valid http status code
* add: alias `request.headers` as `request.header`
* add context.inspect(), cleanup app.inspect()
* update cookies
* fix `err.status` invalid lead to uncaughtException
* fix middleware gif, close #322
2014-07-28 03:39:49 +00:00
0.8.2 / 2014-07-27
2014-08-08 02:06:40 +00:00
==================
2014-07-28 03:39:49 +00:00
* bump co
* bump parseurl
2014-06-25 00:43:33 +00:00
0.8.1 / 2014-06-24
==================
* bump type-is
2014-07-28 03:39:49 +00:00
2014-06-13 07:32:41 +00:00
0.8.0 / 2014-06-13
==================
* add `this.response.is()``
* remove `.status=string` and `res.statusString` #298
2014-06-07 10:50:24 +00:00
0.7.0 / 2014-06-07
==================
* add `this.lastModified` and `this.etag` as both getters and setters for ubiquity #292.
See koajs/koa@4065bf7 for an explanation.
* refactor `this.response.vary()` to use [vary](https://github.com/expressjs/vary) #291
* remove `this.response.append()` #291
2014-06-06 23:27:37 +00:00
0.6.3 / 2014-06-06
==================
* fix res.type= when the extension is unknown
* assert when non-error is passed to app.onerror #287
* bump finished
2014-06-04 04:45:50 +00:00
0.6.2 / 2014-06-03
==================
* switch from set-type to mime-types
2014-06-06 23:27:37 +00:00
2014-05-12 03:51:11 +00:00
0.6.1 / 2014-05-11
==================
* bump type-is
* bump koa-compose
2014-06-04 04:45:50 +00:00
2014-05-02 01:09:48 +00:00
0.6.0 / 2014-05-01
2014-04-19 14:45:57 +00:00
==================
2014-05-02 01:09:48 +00:00
* add nicer error formatting
* add: assert object type in ctx.onerror
* change .status default to 404. Closes #263
* remove .outputErrors, suppress output when handled by the dev. Closes #272
* fix content-length when body is re-assigned. Closes #267
2014-04-25 07:15:33 +00:00
2014-04-14 22:37:33 +00:00
0.5.5 / 2014-04-14
==================
* fix length when .body is missing
* fix: make sure all intermediate stream bodies will be destroyed
2014-04-12 19:30:55 +00:00
0.5.4 / 2014-04-12
==================
* fix header stripping in a few cases
2014-04-09 16:42:23 +00:00
0.5.3 / 2014-04-09
==================
* change res.type= to always default charset. Closes #252
* remove ctx.inspect() implementation. Closes #164
2014-03-23 11:03:34 +00:00
0.5.2 / 2014-03-23
2014-03-13 01:32:23 +00:00
==================
* fix: inspection of `app` and `app.toJSON()`
* fix: let `this.throw`n errors provide their own status
* fix: overwriting of `content-type` w/ `HEAD` requests
2014-03-13 01:32:23 +00:00
* refactor: use statuses
* refactor: use escape-html
2014-03-23 11:02:05 +00:00
* bump dev deps
2014-03-13 01:32:23 +00:00
2014-03-07 02:06:32 +00:00
0.5.1 / 2014-03-06
==================
* add request.hostname(getter). Closes #224
* remove response.charset and ctx.charset (too confusing in relation to ctx.type) [breaking change]
* fix a debug() name
2014-02-20 04:55:29 +00:00
0.5.0 / 2014-02-19
==================
* add context.charset
* add context.charset=
* add request.charset
* add response.charset
* add response.charset=
* fix response.body= html content sniffing
* change ctx.length and ctx.type to always delegate to response object [breaking change]
2014-02-11 21:41:42 +00:00
0.4.0 / 2014-02-11
==================
* remove app.jsonSpaces settings - moved to [koa-json](https://github.com/koajs/json)
* add this.response=false to bypass koa's response handling
* fix response handling after body has been sent
* changed ctx.throw() to no longer .expose 5xx errors
* remove app.keys getter/setter, update cookies, and remove keygrip deps
* update fresh
* update koa-compose
2014-01-18 01:00:15 +00:00
0.3.0 / 2014-01-17
==================
* add ctx.host= delegate
* add req.host=
* add: context.throw supports Error instances
* update co
* update cookies
2014-01-18 01:00:15 +00:00
2013-12-30 18:56:30 +00:00
0.2.1 / 2013-12-30
==================
* add better 404 handling
* add check for fn._name in debug() output
* add explicit .toJSON() calls to ctx.toJSON()
2013-12-29 02:37:40 +00:00
0.2.0 / 2013-12-28
2013-12-20 06:33:35 +00:00
==================
2013-12-29 02:37:40 +00:00
* add support for .throw(status, msg). Closes #130
* add GeneratorFunction assertion for app.use(). Closes #120
* refactor: move `.is()` to `type-is`
* refactor: move content negotiation to "accepts"
* refactor: allow any streams with .pipe method
* remove `next` in callback for now
2013-12-22 00:14:21 +00:00
0.1.2 / 2013-12-21
2013-12-22 00:14:21 +00:00
==================
* update co, koa-compose, keygrip
2013-12-20 22:39:53 +00:00
* use on-socket-error
2013-12-22 00:14:21 +00:00
* add throw(status, msg) support
* assert middleware is GeneratorFunction
* ducktype stream checks
* remove `next` is `app.callback()`
2013-12-19 18:03:18 +00:00
0.1.1 / 2013-12-19
==================
* fix: cleanup socker error handler on response