Skip to content

Commit

Permalink
Release 2.0.0 (eggjs#1688)
Browse files Browse the repository at this point in the history
  • Loading branch information
dead-horse authored Nov 21, 2017
1 parent 8197826 commit 37850d7
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 20 deletions.
38 changes: 23 additions & 15 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,36 +1,44 @@
# History

## 2017-11-13, Version 2.0.0-beta.2, @dead-horse
## 2017-11-20, Version 2.0.0, @dead-horse

### Notable changes

* **feature**
* [BREAKING CHANGE] drop node <8 support
* upgrade to egg-core@4(base on koa 2), but still supports all the usages in egg 1
* upgrade built-in plugins to adapt egg@2
* `runInBackground` use location as scope name when anonymous

* **fix**
* dump async function as AsyncFunction

* **document**
* translate basics/schedule.md, thanks @Azard
* change quickstart examples to async function
* migrate some documents to async function
* split plugin and plugin development
* refactor the description about cluster client @vincenthou
* add document for how to customize error handler
* fix typo in async function
* translate cookie and session @zhang-z
* translate basics/schedule.md, thanks @Azard

### Commits

* [[`8197826`](http://github.com/eggjs/egg/commit/8197826a8dca062c91ba45c235cec66a93f335a4)] - docs: refine egg-and-koa with egg 2 (#1686) (Yiyu He <<[email protected]>>)
* [[`757f275`](http://github.com/eggjs/egg/commit/757f275a16741c670f210876408aaeefe5797a23)] - fix: dump async function as AsyncFunction (#1687) (Yiyu He <<[email protected]>>)
* [[`12edd64`](http://github.com/eggjs/egg/commit/12edd64915164df6b2d5fed9e179e90954f25687)] - test: use async function instead of generator function (#1684) (Yiyu He <<[email protected]>>)
* [[`5513456`](http://github.com/eggjs/egg/commit/5513456e2c702fdc1b7a500f8d8d58048d1041fa)] - feat: runInBackground use location as scope name when anonymous (#1683) (Yiyu He <<[email protected]>>)
* [[`212b077`](http://github.com/eggjs/egg/commit/212b077993cff01c08c55fa4545c324adb96322c)] - doc: Add th.yml (#1682) (NatPi <<[email protected]>>)
* [[`3ddd67f`](http://github.com/eggjs/egg/commit/3ddd67fbbb83a783541118a05d7e0febb2fde7f3)] - docs(advanced/cluster-client): refactor the description about cluster client (#1417) (vincent.hou <<[email protected]>>)
* [[`3d948e4`](http://github.com/eggjs/egg/commit/3d948e44e55fbb88c318a8f14fa7a0b0a8b71b4e)] - docs(plugin): split plugin and plugin development (#1663) (TZ | 天猪 <<[email protected]>>)
* [[`b1343ad`](http://github.com/eggjs/egg/commit/b1343ad55f08b15f8084104c54db0b5975716323)] - docs(core/unittest): translate unittest.md (#1660) (freebyron <<[email protected]>>)
* [[`fb2d96a`](http://github.com/eggjs/egg/commit/fb2d96ae8e1759edc9126a2920f9028b6e4d15df)] - docs(app-start): generator -> async (#1662) (TZ | 天猪 <<[email protected]>>)
* [[`12c0a8a`](http://github.com/eggjs/egg/commit/12c0a8afb8cd332037670f7db8e8662566c1407f)] - docs(quickstart): fix app.Service (#1661) (TZ | 天猪 <<[email protected]>>)
* [[`49b0071`](http://github.com/eggjs/egg/commit/49b00712de6eed7c386b07c7c91082ef36cc667f)] - docs(core/cookie-and-session): translate section Cookie (#1562) (Zhongyuan <<[email protected]>>)
* [[`ac55d5e`](http://github.com/eggjs/egg/commit/ac55d5eb0b90e2333e3d92523075615e80835647)] - docs: fix typo in async function (#1657) (BccSafe <<[email protected]>>)
* [[`9f362d8`](http://github.com/eggjs/egg/commit/9f362d878b61e1144ceab851215dbafb974fb85f)] - docs(basics/schedule.md): translate (#1648) (Weilun Xiong <<[email protected]>>)
* [[`448d094`](http://github.com/eggjs/egg/commit/448d0945c0030d2f2bdf8e0f85ccfcbde4ba2b25)] - deps: upgrade all plugins to adapt egg@2 (#1653) (Yiyu He <<[email protected]>>)
* [[`4993ee8`](http://github.com/eggjs/egg/commit/4993ee8fae81bf14f92c86ac1d4d952d62e1d165)] - docs(quickstart): generator -> async (#1650) (TZ | 天猪 <<[email protected]>>)
* [[`8c6f16d`](http://github.com/eggjs/egg/commit/8c6f16d64834d46b0689ce079cc5d71155848ac8)] - docs: how to customize error handler (#1651) (Yiyu He <<[email protected]>>)

## 2017-11-09, Version 2.0.0-beta.1, @dead-horse

### Notable changes

* **feature**
* [BREAKING CHANGE] drop node <8 support
* upgrade to egg-core@4(base on koa 2), but still supports all the usages in egg 1

### Commits

* [[`8e8869a`](http://github.com/eggjs/egg/commit/8e8869a4d73908503cf1f60de3be49461639ca08)] - refactor: upgrade egg-core@4 (#1631) (Yiyu He <<[email protected]>>)

## 2017-11-08, Version 1.11.0, @dead-horse
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Born to build better enterprise frameworks and apps
$ npm install egg --save
```

Node.js >= 6.0.0 required.
Node.js >= 8.0.0 required.

## Features

Expand Down
5 changes: 1 addition & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "egg",
"version": "2.0.0-beta.2",
"version": "2.0.0",
"description": "A web framework's framework for Node.js",
"keywords": [
"web",
Expand Down Expand Up @@ -108,8 +108,5 @@
"engines": {
"node": ">= 8.0.0"
},
"publishConfig": {
"tag": "next"
},
"license": "MIT"
}

0 comments on commit 37850d7

Please sign in to comment.