From f7aa92554759f36c854c19b74e863aa0513b0fba Mon Sep 17 00:00:00 2001 From: Haoliang Gao Date: Thu, 3 May 2018 22:22:17 +0800 Subject: [PATCH] Release 1.14.0 (#2494) --- History.md | 11 +++++++++++ package.json | 2 +- test/lib/core/httpclient.test.js | 6 +++--- 3 files changed, 15 insertions(+), 4 deletions(-) diff --git a/History.md b/History.md index 48992621a..2cf55cee4 100644 --- a/History.md +++ b/History.md @@ -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 <>) + ## 2018-04-16, Version 1.13.3 @dead-horse ### Notable changes diff --git a/package.json b/package.json index 90b87c49c..f0c0f49a6 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/test/lib/core/httpclient.test.js b/test/lib/core/httpclient.test.js index e70a2f46d..293040e1c 100644 --- a/test/lib/core/httpclient.test.js +++ b/test/lib/core/httpclient.test.js @@ -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, });