Skip to content

Commit 6d92d9d

Browse files
authored
Merge pull request #21 from node-red/3-0
Update dependencies for 3.0
2 parents aeece54 + 1a0d80b commit 6d92d9d

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

.github/workflows/tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
node-version: [12, 14, 16]
17+
node-version: [14, 16]
1818
steps:
1919
- uses: actions/checkout@v2
2020
- name: Use Node.js ${{ matrix.node-version }}
@@ -28,7 +28,7 @@ jobs:
2828
npm run test
2929
npm run coverage
3030
- name: Publish to coveralls.io
31-
if: ${{ matrix.node-version == 14 }}
31+
if: ${{ matrix.node-version == 16 }}
3232
uses: coverallsapp/github-action@v1.1.2
3333
with:
3434
github-token: ${{ github.token }}

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
### 3.0.0
2+
3+
- Update httpStatic and add httpStaticRoot for changes in Node-RED V3 (#20) @Steve-Mcl
4+
- Update dependencies
5+
- Drop node 12 support
6+
17
### 2.2.4
28

39
- Add Dracula theme (#17) @bonanitech

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "node-red-admin",
3-
"version": "2.2.4",
3+
"version": "3.0.0",
44
"description": "The Node-RED admin command line interface",
55
"homepage": "http://nodered.org",
66
"bugs": {
@@ -13,7 +13,7 @@
1313
},
1414
"main": "lib/index.js",
1515
"engines": {
16-
"node": ">=12"
16+
"node": ">=14"
1717
},
1818
"contributors": [
1919
{
@@ -29,7 +29,7 @@
2929
},
3030
"dependencies": {
3131
"ansi-colors": "^4.1.1",
32-
"axios": "0.27.0",
32+
"axios": "0.27.2",
3333
"bcryptjs": "^2.4.3",
3434
"cli-table": "^0.3.11",
3535
"enquirer": "^2.3.6",

0 commit comments

Comments
 (0)