Skip to content

Commit

Permalink
Release 3.0.0 (#4999)
Browse files Browse the repository at this point in the history
closes #4998
  • Loading branch information
fengmk2 committed Aug 22, 2022
1 parent a895b51 commit ff1850f
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
push:
branches: [ master ]
pull_request:
branches: [ master, 1.x ]
branches: [ master, 2.x, 1.x ]
schedule:
- cron: '0 2 * * *'
jobs:
Expand All @@ -13,7 +13,7 @@ jobs:
fail-fast: false
matrix:
os: [ ubuntu-latest, macOS-latest, windows-latest ]
node-version: [ 8, 10, 12, 14, 16 ]
node-version: [ 14, 16, 18 ]
steps:
- name: Checkout Git Source
uses: actions/checkout@master
Expand All @@ -24,7 +24,7 @@ jobs:
node-version: ${{ matrix.node-version }}

- name: Install Dependencies
run: npm i -g npminstall@5 && npminstall
run: npm i -g npminstall && npminstall

- name: Continuous integration
run: npm run ci
Expand Down
6 changes: 6 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
3.0.0 / 2022-08-21 @fengmk2
==================

**features**
* Drop Node.js 8, 10, 12 supports, this release is a LTS version for egg@2, see https://github.com/eggjs/egg/issues/3644#issuecomment-1221460692

2.36.0 / 2022-06-17 @atian25
==================

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "egg",
"version": "2.36.0",
"version": "3.0.0",
"description": "A web framework's framework for Node.js",
"keywords": [
"web",
Expand Down Expand Up @@ -123,7 +123,7 @@
"url": "https://github.com/eggjs/egg.git"
},
"engines": {
"node": ">= 8.5.0"
"node": ">= 14.20.0"
},
"license": "MIT"
}
1 change: 0 additions & 1 deletion test/lib/core/httpclient.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,6 @@ describe('test/lib/core/httpclient.test.js', () => {
});

describe('httpclient tracer', () => {
const url = 'https://www.alibaba.com/';
let app;
before(() => {
app = utils.app('apps/httpclient-tracer');
Expand Down

1 comment on commit ff1850f

@vercel
Copy link

@vercel vercel bot commented on ff1850f Aug 22, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

egg – ./

egg-git-master-suyi.vercel.app
egg-pi.vercel.app
egg-suyi.vercel.app
eggjs.org
www.eggjs.org

Please sign in to comment.