Skip to content

Commit 2f61eef

Browse files
authored
chore: update dependencies (#370)
* chore: update dependencies * fix: increase size limit
1 parent 76e0679 commit 2f61eef

5 files changed

Lines changed: 10 additions & 10 deletions

File tree

.aegir.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const createServer = require('./src').createServer
44

55
const server = createServer() // using defaults
66
module.exports = {
7-
bundlesize: { maxSize: '270kB' },
7+
bundlesize: { maxSize: '280kB' },
88
karma: {
99
files: [{
1010
pattern: 'test/fixtures/**/*',

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,20 +62,20 @@
6262
"daemon"
6363
],
6464
"dependencies": {
65+
"@hapi/boom": "^7.4.3",
6566
"@hapi/hapi": "^18.3.2",
66-
"boom": "^7.3.0",
67+
"@hapi/joi": "^15.1.1",
6768
"debug": "^4.1.1",
6869
"detect-node": "^2.0.4",
6970
"dexie": "^2.0.4",
7071
"execa": "^2.0.4",
7172
"fs-extra": "^8.1.0",
7273
"hat": "~0.0.3",
73-
"ipfs-http-client": "^34.0.0",
74-
"joi": "^14.3.1",
74+
"ipfs-http-client": "^35.1.0",
7575
"lodash.clone": "^4.5.0",
7676
"lodash.defaults": "^4.2.0",
7777
"lodash.defaultsdeep": "^4.6.1",
78-
"multiaddr": "^6.1.0",
78+
"multiaddr": "^7.0.0",
7979
"safe-json-stringify": "^1.2.0",
8080
"superagent": "^5.0.5"
8181
},

src/endpoint/routes.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
'use strict'
22

33
const hat = require('hat')
4-
const Joi = require('joi')
5-
const boom = require('boom')
4+
const Joi = require('@hapi/joi')
5+
const boom = require('@hapi/boom')
66
const defaults = require('lodash.defaultsdeep')
77
const FactoryDaemon = require('../factory-daemon')
88
const tmpDir = require('../utils/tmp-dir')

test/api.spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ const tests = [
2020

2121
describe('ipfsd.api for Daemons', () => {
2222
tests.forEach((dfOpts) => describe(`${dfOpts.type}`, () => {
23-
const API_PORT = '5101'
24-
const GW_PORT = '8180'
23+
const API_PORT = 5101
24+
const GW_PORT = 8180
2525

2626
const config = {
2727
Addresses: {

test/endpoint/client.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ chai.use(dirtyChai)
99

1010
const hat = require('hat')
1111

12-
const boom = require('boom')
12+
const boom = require('@hapi/boom')
1313
const proxyquire = require('proxyquire')
1414
const superagent = require('superagent')
1515
const mock = require('superagent-mocker')(superagent)

0 commit comments

Comments
 (0)