Release 1.14.0 (#2494)

This commit is contained in:
Haoliang Gao 2018-05-03 22:22:17 +08:00 committed by GitHub
parent 58695707dd
commit f7aa925547
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 15 additions and 4 deletions

View File

@ -1,6 +1,17 @@
# History
## 2018-05-03, Version 1.14.0 @popomore
### Notable changes
* **feature**
* add time duration for dump config
### Commits
* [[`58695707d`](http://github.com/eggjs/egg/commit/58695707dd9e7a393d9ce3b12f9ccd3a352740a5)] - feat: add time duration for dump config (#2485) (#2491) (Haoliang Gao <<sakura9515@gmail.com>>)
## 2018-04-16, Version 1.13.3 @dead-horse
### Notable changes

View File

@ -1,6 +1,6 @@
{
"name": "egg",
"version": "1.13.3",
"version": "1.14.0",
"description": "A web framework's framework for Node.js",
"keywords": [
"web",

View File

@ -179,7 +179,7 @@ describe('test/lib/core/httpclient.test.js', () => {
});
describe('httpclient tracer', () => {
const url = 'https://eggjs.org/';
const url = 'https://www.alibaba.com/';
let app;
before(() => {
app = utils.app('apps/httpclient-tracer');
@ -339,7 +339,7 @@ describe('test/lib/core/httpclient.test.js', () => {
assert(res.status === 200);
res = yield httpclient.request('https://www.npmjs.com', {
res = yield httpclient.request('https://www.alibaba.com', {
method: 'GET',
timeout: 20000,
});
@ -375,7 +375,7 @@ describe('test/lib/core/httpclient.test.js', () => {
});
assert(res.status === 200);
res = yield httpclient.request('https://www.npmjs.com', {
res = yield httpclient.request('https://www.alibaba.com', {
method: 'GET',
timeout: 20000,
});