Skip to content

Commit f188355

Browse files
authored
Merge pull request #783 from jason-fox/feature/node-6
Removal of Node 6
2 parents d2d03d5 + 6cc8714 commit f188355

File tree

4 files changed

+30
-17
lines changed

4 files changed

+30
-17
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
language: node_js
22

33
node_js:
4-
- "6"
54
- "8"
65
- "10"
6+
- "12"
77

88
branches:
99
only:

CHANGES_NEXT_RELEASE

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
- Upgrade async dependency from 2.6.1 to 2.6.2
2+
- Upgrade body-parser dependency from ~1.18.3 to ~1.19.0
3+
- Upgrade moment dependency from ~2.22.2 to ~2.24.0
4+
- Upgrade moment-timezone dependency from ~0.5.21 to ~0.5.25
5+
- Upgrade mongodb dependency from 3.1.8 to 3.2.3
6+
- Upgrade mongoose dependency from 5.3.6 to 5.5.4
7+
- Upgrade query-string dependency from 6.2.0 to 6.5.0
8+
- Upgrade coveralls dev dependency from ~3.0.2 to ~3.0.3
9+
- Upgrade jshint dev dependency from ~2.9.6 to ~2.10.2
10+
- Upgrade mocha dev dependency from 5.2.0 to 6.1.4
11+
- Upgrade nock dev dependency from 10.0.1 to 10.0.6
12+
- Upgrade timekeeper dev dependency from 2.1.2 to 2.2.0
13+
- Set Nodejs 8 as minimum version in packages.json (effectively removing Nodev6 from supported versions)

doc/howto.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Where:
2828

2929
### Requirements
3030

31-
This tutorial expects a Node.js v0.10 (at least) installed and working on your machine. It also expects you to have
31+
This tutorial expects a Node.js v8 (at least) installed and working on your machine. It also expects you to have
3232
access to a Context Broker (without any security proxies).
3333

3434
## Basic IoT Agent

package.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
},
2727
"main": "lib/fiware-iotagent-lib",
2828
"engines": {
29-
"node": ">=6"
29+
"node": ">=8"
3030
},
3131
"scripts": {
3232
"clean": "rm -rf package-lock.json && rm -rf node_modules && rm -rf coverage",
@@ -38,31 +38,31 @@
3838
"watch": "watch 'npm test && npm run lint' ./lib ./test"
3939
},
4040
"dependencies": {
41-
"async": "2.6.1",
42-
"body-parser": "~1.18.3",
41+
"async": "2.6.2",
42+
"body-parser": "~1.19.0",
4343
"command-shell-lib": "1.0.0",
4444
"express": "~4.16.4",
4545
"jison": "0.4.18",
4646
"logops": "2.1.0",
47-
"moment": "~2.22.2",
48-
"moment-timezone": "~0.5.21",
49-
"mongodb": "3.1.8",
50-
"mongoose": "5.3.6",
47+
"moment": "~2.24.0",
48+
"moment-timezone": "~0.5.25",
49+
"mongodb": "3.2.3",
50+
"mongoose": "5.5.4",
5151
"mu2": "~0.5.20",
52-
"uuid": "~3.3.2",
53-
"query-string": "6.2.0",
52+
"query-string": "6.5.0",
5453
"request": "2.88.0",
5554
"revalidator": "~0.3.1",
56-
"underscore": "~1.9.1"
55+
"underscore": "~1.9.1",
56+
"uuid": "~3.3.2"
5757
},
5858
"devDependencies": {
59-
"coveralls": "~3.0.2",
59+
"coveralls": "~3.0.3",
6060
"istanbul": "~0.4.5",
61-
"jshint": "~2.9.6",
62-
"mocha": "5.2.0",
63-
"nock": "10.0.1",
61+
"jshint": "~2.10.2",
62+
"mocha": "6.1.4",
63+
"nock": "10.0.6",
6464
"should": "13.2.3",
65-
"timekeeper": "2.1.2",
65+
"timekeeper": "2.2.0",
6666
"watch": "~1.0.2"
6767
}
6868
}

0 commit comments

Comments
 (0)