Skip to content

Commit da78fa8

Browse files
authored
chore: firefox webrtc (#3279)
Fixes integration and transport interop tests.
1 parent 71b4c41 commit da78fa8

File tree

92 files changed

+417
-278
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+417
-278
lines changed

doc/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"doc-check": "aegir doc-check"
1818
},
1919
"devDependencies": {
20-
"aegir": "^47.0.21"
20+
"aegir": "^47.0.22"
2121
},
2222
"private": true
2323
}

interop/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# install node and browsers
2-
FROM mcr.microsoft.com/playwright:v1.50.1
2+
FROM mcr.microsoft.com/playwright:v1.55.0
33

44
WORKDIR /app
55

interop/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"@libp2p/websockets": "^9.2.19",
2525
"@libp2p/webtransport": "^5.0.51",
2626
"@multiformats/multiaddr": "^13.0.1",
27-
"aegir": "^47.0.21",
27+
"aegir": "^47.0.22",
2828
"libp2p": "^2.10.0",
2929
"p-event": "^6.0.1",
3030
"redis": "^4.7.1"

interop/test/fixtures/get-libp2p.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import { yamux } from '@libp2p/yamux'
1515
import { createLibp2p } from 'libp2p'
1616
import type { Identify } from '@libp2p/identify'
1717
import type { Libp2p } from '@libp2p/interface'
18-
import type { PingService } from '@libp2p/ping'
18+
import type { Ping } from '@libp2p/ping'
1919
import type { Libp2pOptions } from 'libp2p'
2020

2121
const isDialer: boolean = process.env.is_dialer === 'true'
@@ -26,8 +26,8 @@ const SECURE_CHANNEL = process.env.security
2626
const MUXER = process.env.muxer
2727
const IP = process.env.ip ?? '0.0.0.0'
2828

29-
export async function getLibp2p (): Promise<Libp2p<{ ping: PingService }>> {
30-
const options: Libp2pOptions<{ ping: PingService, identify: Identify }> = {
29+
export async function getLibp2p (): Promise<Libp2p<{ ping: Ping }>> {
30+
const options: Libp2pOptions<{ ping: Ping, identify: Identify }> = {
3131
start: true,
3232
connectionGater: {
3333
denyDialMultiaddr: async () => false

package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,15 @@
3939
"docs:no-publish": "aegir docs --publish false -- --exclude interop --exclude doc"
4040
},
4141
"devDependencies": {
42-
"aegir": "^47.0.6",
42+
"aegir": "^47.0.22",
4343
"npm-run-all": "^4.1.5"
4444
},
4545
"workspaces": [
4646
"doc",
4747
"interop",
4848
"packages/*"
49-
]
49+
],
50+
"overrides": {
51+
"playwright-core": "next"
52+
}
5053
}

packages/config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"interface-datastore": "^8.3.2"
4747
},
4848
"devDependencies": {
49-
"aegir": "^47.0.21",
49+
"aegir": "^47.0.22",
5050
"datastore-core": "^10.0.4"
5151
},
5252
"sideEffects": false

packages/connection-encrypter-noise/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
"@libp2p/yamux": "^7.0.1",
7777
"@multiformats/multiaddr": "^13.0.1",
7878
"@types/sinon": "^17.0.4",
79-
"aegir": "^47.0.21",
79+
"aegir": "^47.0.22",
8080
"execa": "^9.6.0",
8181
"go-libp2p": "^1.6.0",
8282
"iso-random-stream": "^2.0.2",

packages/connection-encrypter-plaintext/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
"devDependencies": {
5757
"@libp2p/crypto": "^5.1.8",
5858
"@libp2p/logger": "^5.2.0",
59-
"aegir": "^47.0.21",
59+
"aegir": "^47.0.22",
6060
"protons": "^7.7.0",
6161
"sinon": "^21.0.0"
6262
},

packages/connection-encrypter-tls/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
},
5858
"devDependencies": {
5959
"@libp2p/logger": "^5.2.0",
60-
"aegir": "^47.0.21",
60+
"aegir": "^47.0.22",
6161
"protons": "^7.7.0",
6262
"sinon": "^21.0.0",
6363
"sinon-ts": "^2.0.0"

packages/crypto/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
},
9696
"devDependencies": {
9797
"@types/mocha": "^10.0.10",
98-
"aegir": "^47.0.21",
98+
"aegir": "^47.0.22",
9999
"asn1js": "^3.0.6",
100100
"benchmark": "^2.1.4",
101101
"protons": "^7.7.0"

0 commit comments

Comments
 (0)