Custom inspection with the `inspect` property is deprecated and will
not work in Node.js 11 anymore. This fixes it by using the custom
inspect symbol where existent and falls back to the old style in case
it does not exist.
* Give v2 migration documentation its own document. Incorporate docs from #533
* Fix mis-capitalization of Koa
* Remove unnecessary Dependency section
* Hint at koa-convert enabled compatibility
* Add section on constructing with new
* Clarify es6 constructors are used
* Fix varying capitalization
* Restore mistakenly removed Dependency changes section
* v1.x should not receive feature updates
* Add next() to signature, add missing backticks
* docs++
closes#558closes#557
Change tests to use plain functions and promises
Add test
return promise in middleware
Change benchmarks to use plain functions and promises
typeerror
change var to const for static require()'d modules
make constant var references in app use const keyword
refactor context to use es6 constants
refactor request to use es6 constants, let block-scope coming next
use const in response object for static refs
make context tests use es6 constants
experimental unit tests -> const
use const for static references in unit test over req
use const for static refs in res tests
update app tests to use const for static refs
make the context test use es6 constants for static refs
use constants in the README
es6 constants seem to work in --harmony on 0.12 too
use const's for immutable refs in benchmarks
ensure all JS files have blank newline at top
add newline to bottom of file where missing
add a webchat freenode link to irc channel
no need to assign error in catch{}-able test
app.silent option to turn off err logging
keep test env logging for backwards-compat
remove `yield* next` in lib/application, which caused annoy `A promise
was converted into a generator …` message.
benchmark result:
* when bench with native Promise, it has no impact for both stable and
experimental ones.
* when bench with Bluebird, it’s about 5-10% faster than original for
both stable and experimental ones.
closes#472