Skip to content

Commit bb7cbf1

Browse files
committed
deps: update deps
1 parent 35308b4 commit bb7cbf1

File tree

5 files changed

+47
-44
lines changed

5 files changed

+47
-44
lines changed

packages/client/package.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -138,26 +138,26 @@
138138
"release": "aegir release"
139139
},
140140
"dependencies": {
141-
"@libp2p/interface": "^2.2.0",
142-
"@libp2p/logger": "^5.0.1",
143-
"@libp2p/peer-id": "^5.0.1",
144-
"@multiformats/multiaddr": "^12.3.1",
141+
"@libp2p/interface": "^2.9.0",
142+
"@libp2p/logger": "^5.1.15",
143+
"@libp2p/peer-id": "^5.1.2",
144+
"@multiformats/multiaddr": "^12.4.0",
145145
"any-signal": "^4.1.1",
146-
"browser-readablestream-to-it": "^2.0.7",
147-
"ipns": "^10.0.0",
148-
"it-first": "^3.0.6",
149-
"it-map": "^3.1.1",
150-
"it-ndjson": "^1.0.7",
151-
"multiformats": "^13.3.0",
146+
"browser-readablestream-to-it": "^2.0.8",
147+
"ipns": "^10.0.2",
148+
"it-first": "^3.0.7",
149+
"it-map": "^3.1.2",
150+
"it-ndjson": "^1.1.2",
151+
"multiformats": "^13.3.2",
152152
"p-defer": "^4.0.1",
153-
"p-queue": "^8.0.1",
153+
"p-queue": "^8.1.0",
154154
"uint8arrays": "^5.1.0"
155155
},
156156
"devDependencies": {
157-
"@libp2p/crypto": "^5.0.1",
158-
"aegir": "^45.0.1",
159-
"body-parser": "^1.20.3",
160-
"it-all": "^3.0.6",
157+
"@libp2p/crypto": "^5.1.1",
158+
"aegir": "^45.2.1",
159+
"body-parser": "^2.2.0",
160+
"it-all": "^3.0.7",
161161
"wherearewe": "^2.0.1"
162162
},
163163
"sideEffects": false

packages/interop/package.json

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -116,19 +116,20 @@
116116
"test:node": "aegir test -t node --cov"
117117
},
118118
"devDependencies": {
119-
"@helia/delegated-routing-v1-http-api-client": "^4.0.0",
120-
"@helia/delegated-routing-v1-http-api-server": "^4.0.0",
121-
"@helia/ipns": "^8.0.0",
122-
"@libp2p/crypto": "^5.0.1",
123-
"@libp2p/identify": "^3.0.1",
124-
"@libp2p/interface": "^2.0.1",
125-
"@libp2p/kad-dht": "^14.0.1",
126-
"aegir": "^45.0.1",
127-
"fastify": "^5.0.0",
128-
"helia": "^5.1.0",
129-
"ipns": "^10.0.0",
130-
"it-first": "^3.0.6",
131-
"multiformats": "^13.3.0"
119+
"@helia/delegated-routing-v1-http-api-client": "^4.2.2",
120+
"@helia/delegated-routing-v1-http-api-server": "^4.0.4",
121+
"@helia/ipns": "^8.2.0",
122+
"@libp2p/crypto": "^5.1.1",
123+
"@libp2p/identify": "^3.0.29",
124+
"@libp2p/interface": "^2.9.0",
125+
"@libp2p/kad-dht": "^15.0.2",
126+
"@libp2p/ping": "^2.0.29",
127+
"aegir": "^45.2.1",
128+
"fastify": "^5.3.2",
129+
"helia": "^5.3.0",
130+
"ipns": "^10.0.2",
131+
"it-first": "^3.0.7",
132+
"multiformats": "^13.3.2"
132133
},
133134
"private": true
134135
}

packages/interop/test/fixtures/create-helia.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import { identify } from '@libp2p/identify'
22
import { kadDHT, removePublicAddressesMapper, type KadDHT } from '@libp2p/kad-dht'
3+
import { ping, type Ping } from '@libp2p/ping'
34
import { createHelia as createNode, type HeliaInit, type HeliaLibp2p } from 'helia'
45
import { ipnsSelector } from 'ipns/selector'
56
import { ipnsValidator } from 'ipns/validator'
67
import type { Libp2p } from '@libp2p/interface'
7-
8-
export async function createHelia (init?: Partial<HeliaInit>): Promise<HeliaLibp2p<Libp2p<{ dht: KadDHT }>>> {
8+
export async function createHelia (init?: Partial<HeliaInit>): Promise<HeliaLibp2p<Libp2p<{ dht: KadDHT, ping: Ping }>>> {
99
const helia = await createNode({
1010
libp2p: {
1111
peerDiscovery: [],
@@ -21,7 +21,8 @@ export async function createHelia (init?: Partial<HeliaInit>): Promise<HeliaLibp
2121
ipns: ipnsSelector
2222
}
2323
}),
24-
identify: identify()
24+
identify: identify(),
25+
ping: ping()
2526
}
2627
}
2728
})

packages/interop/test/index.spec.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import { createDelegatedRoutingV1HttpApiServer } from '@helia/delegated-routing-
55
import { ipns } from '@helia/ipns'
66
import { generateKeyPair } from '@libp2p/crypto/keys'
77
import { start, stop } from '@libp2p/interface'
8+
import { type Ping } from '@libp2p/ping'
89
import { expect } from 'aegir/chai'
910
import { createIPNSRecord } from 'ipns'
1011
import first from 'it-first'
@@ -19,7 +20,7 @@ import type { FastifyInstance } from 'fastify'
1920
import type { HeliaLibp2p } from 'helia'
2021

2122
describe('delegated-routing-v1-http-api interop', () => {
22-
let network: Array<HeliaLibp2p<Libp2p<{ dht: KadDHT }>>>
23+
let network: Array<HeliaLibp2p<Libp2p<{ dht: KadDHT, ping: Ping }>>>
2324
let server: FastifyInstance
2425
let client: DelegatedRoutingV1HttpApiClient
2526

packages/server/package.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -154,21 +154,21 @@
154154
"release": "aegir release"
155155
},
156156
"dependencies": {
157-
"@fastify/cors": "^10.0.1",
158-
"@helia/interface": "^5.0.0",
159-
"@libp2p/interface": "^2.0.1",
160-
"@libp2p/peer-id": "^5.0.1",
161-
"fastify": "^5.0.0",
162-
"ipns": "^10.0.0",
163-
"multiformats": "^13.3.0",
157+
"@fastify/cors": "^11.0.1",
158+
"@helia/interface": "^5.2.1",
159+
"@libp2p/interface": "^2.9.0",
160+
"@libp2p/peer-id": "^5.1.2",
161+
"fastify": "^5.3.2",
162+
"ipns": "^10.0.2",
163+
"multiformats": "^13.3.2",
164164
"raw-body": "^3.0.0"
165165
},
166166
"devDependencies": {
167-
"@libp2p/crypto": "^5.0.1",
168-
"@multiformats/multiaddr": "^12.3.1",
169-
"@types/sinon": "^17.0.3",
170-
"aegir": "^45.0.1",
171-
"sinon": "^19.0.2",
167+
"@libp2p/crypto": "^5.1.1",
168+
"@multiformats/multiaddr": "^12.4.0",
169+
"@types/sinon": "^17.0.4",
170+
"aegir": "^45.2.1",
171+
"sinon": "^20.0.0",
172172
"sinon-ts": "^2.0.0"
173173
}
174174
}

0 commit comments

Comments
 (0)