This commit is contained in:
jongleberry 2017-11-06 14:03:36 +00:00
parent 687b73257b
commit c68a6966c2
2 changed files with 17 additions and 28 deletions

View file

@ -1,12 +1,12 @@
2.3.0 / 2017-06-20 2.3.0 / 2017-11-06
================== ==================
* test on node 7 & 8 * update `package.engines.node` to be more strict
* add `package-lock.json` to `.gitignore` * update `fresh@^0.5.2`
* run `lint --fix` * fix: `inspect()` no longer crashes `context`
* add `request.header` in addition to `request.headers` * fix: gated `res.statusMessage` for HTTP/2
* add IPv6 hostname support * added: `app.handleRequest()` is exposed
2.2.0 / 2017-03-14 2.2.0 / 2017-03-14
================== ==================

View file

@ -4,11 +4,7 @@
"description": "Koa web app framework", "description": "Koa web app framework",
"main": "lib/application.js", "main": "lib/application.js",
"scripts": { "scripts": {
"test": "jest", "test": "make test"
"test-cov": "npm run test -- --coverage",
"lint": "eslint benchmarks lib test",
"bench": "make -C benchmarks",
"authors": "git log --format='%aN <%aE>' | sort -u > AUTHORS"
}, },
"repository": "koajs/koa", "repository": "koajs/koa",
"keywords": [ "keywords": [
@ -32,11 +28,11 @@
"destroy": "^1.0.3", "destroy": "^1.0.3",
"error-inject": "~1.0.0", "error-inject": "~1.0.0",
"escape-html": "~1.0.1", "escape-html": "~1.0.1",
"fresh": "^0.5.2", "fresh": "^0.5.0",
"http-assert": "^1.1.0", "http-assert": "^1.1.0",
"http-errors": "^1.2.8", "http-errors": "^1.2.8",
"is-generator-function": "^1.0.3", "is-generator-function": "^1.0.3",
"koa-compose": "^4.0.0", "koa-compose": "^3.0.0",
"koa-convert": "^1.2.0", "koa-convert": "^1.2.0",
"koa-is-json": "^1.0.0", "koa-is-json": "^1.0.0",
"mime-types": "^2.0.7", "mime-types": "^2.0.7",
@ -51,27 +47,20 @@
"babel-eslint": "^7.1.1", "babel-eslint": "^7.1.1",
"eslint": "^3.17.1", "eslint": "^3.17.1",
"eslint-config-standard": "^7.0.1", "eslint-config-standard": "^7.0.1",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-promise": "^3.5.0", "eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^2.1.1", "eslint-plugin-standard": "^2.1.1",
"istanbul": "^0.4.0", "istanbul": "^0.4.0",
"jest": "^20.0.0", "mocha": "^3.2.0",
"supertest": "^3.0.0" "should": "^6.0.3",
"should-http": "0.0.3",
"supertest": "^3.0.0",
"test-console": "^0.7.1"
}, },
"engines": { "engines": {
"node": "^4.8.4 || ^6.10.1 || ^7.10.1 || >= 8.1.4" "node": ">= 6.0.0"
}, },
"files": [ "files": [
"lib" "lib"
], ]
"jest": {
"testMatch": [
"**/test/!(helpers)/*.js"
],
"coverageReporters": [
"text-summary",
"lcov"
],
"bail": true,
"testEnvironment": "node"
}
} }