Skip to content

Commit dcd160a

Browse files
authored
chore: update deps (#541)
Updates hapi to the latest version BREAKING CHANGES: - Hapi has dropped support for node < 12
1 parent e5c6c30 commit dcd160a

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ stages:
1010
- cov
1111

1212
node_js:
13-
- '10'
14-
- '12'
13+
- 'lts/*'
14+
- 'node'
1515

1616
os:
1717
- linux

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -50,25 +50,25 @@
5050
"daemon"
5151
],
5252
"dependencies": {
53-
"@hapi/boom": "^8.0.1",
54-
"@hapi/hapi": "^18.4.1",
55-
"@hapi/joi": "^17.1.1",
53+
"@hapi/boom": "^9.1.0",
54+
"@hapi/hapi": "^20.0.0",
5655
"debug": "^4.1.1",
5756
"execa": "^4.0.0",
5857
"fs-extra": "^9.0.0",
59-
"ipfs-utils": "^2.2.0",
60-
"merge-options": "^2.0.0",
58+
"ipfs-utils": "^3.0.0",
59+
"joi": "^17.2.1",
60+
"merge-options": "^3.0.1",
6161
"multiaddr": "^8.0.0",
6262
"nanoid": "^3.1.3",
6363
"temp-write": "^4.0.0"
6464
},
6565
"devDependencies": {
66-
"aegir": "^25.0.0",
66+
"aegir": "^26.0.0",
6767
"benchmark": "^2.1.4",
6868
"go-ipfs": "^0.6.0",
6969
"husky": "^4.2.5",
70-
"ipfs": "^0.48.2",
71-
"ipfs-http-client": "^45.0.0",
70+
"ipfs": "^0.49.1",
71+
"ipfs-http-client": "^46.0.1",
7272
"lint-staged": "^10.1.6"
7373
},
7474
"peerDependencies": {

src/endpoint/routes.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'use strict'
22

33
const { nanoid } = require('nanoid')
4-
const Joi = require('@hapi/joi')
4+
const Joi = require('joi')
55
const boom = require('@hapi/boom')
66
const debug = require('debug')('ipfsd-ctl:routes')
77
const { tmpDir } = require('../utils')

0 commit comments

Comments
 (0)