Skip to content

Commit fc6527d

Browse files
committed
chore: update peer-id
Pulls in the new peer-id Needs a new release of `libp2p-floodsub` and `@chainsafe/libp2p-noise` though they are just dev deps so this could go out without them. BREAKING CHANGE: requires node 15+
1 parent 6d7b2aa commit fc6527d

File tree

2 files changed

+17
-8
lines changed

2 files changed

+17
-8
lines changed

.github/workflows/main.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v2
15+
- uses: actions/setup-node@v2
16+
with:
17+
node-version: lts/*
1518
- run: npm install
1619
- run: npm run lint
1720
- run: npm run prebuild
@@ -22,11 +25,11 @@ jobs:
2225
strategy:
2326
matrix:
2427
os: [windows-latest, ubuntu-latest, macos-latest]
25-
node: [14]
28+
node: [16]
2629
fail-fast: false
2730
steps:
2831
- uses: actions/checkout@v2
29-
- uses: actions/setup-node@v1
32+
- uses: actions/setup-node@v2
3033
with:
3134
node-version: ${{ matrix.node }}
3235
- run: npm install
@@ -38,6 +41,9 @@ jobs:
3841
runs-on: ubuntu-latest
3942
steps:
4043
- uses: actions/checkout@v2
44+
- uses: actions/setup-node@v2
45+
with:
46+
node-version: lts/*
4147
- run: npm install
4248
- run: npm run prebuild
4349
- run: npx aegir test -t browser -t webworker --bail
@@ -46,6 +52,9 @@ jobs:
4652
runs-on: ubuntu-latest
4753
steps:
4854
- uses: actions/checkout@v2
55+
- uses: actions/setup-node@v2
56+
with:
57+
node-version: lts/*
4958
- run: npm install
5059
- run: npm run prebuild
5160
- run: npx aegir test -t browser -t webworker --bail -- --browser firefox

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@
4444
"denque": "^1.5.0",
4545
"err-code": "^3.0.1",
4646
"it-pipe": "^1.1.0",
47-
"libp2p-interfaces": "^1.1.0",
48-
"peer-id": "^0.15.3",
47+
"libp2p-interfaces": "^2.0.1",
48+
"peer-id": "^0.16.0",
4949
"protobufjs": "^6.11.2",
5050
"time-cache": "^0.3.0",
5151
"uint8arrays": "^3.0.0"
@@ -56,7 +56,7 @@
5656
"@types/mocha": "^8.2.2",
5757
"@typescript-eslint/eslint-plugin": "^3.0.2",
5858
"@typescript-eslint/parser": "^3.0.2",
59-
"aegir": "^35.0.1",
59+
"aegir": "^36.0.2",
6060
"benchmark": "^2.1.4",
6161
"buffer": "^6.0.3",
6262
"chai": "^4.2.0",
@@ -71,9 +71,9 @@
7171
"eslint-plugin-promise": "^4.2.1",
7272
"eslint-plugin-standard": "^4.0.1",
7373
"it-pair": "^1.0.0",
74-
"libp2p": "^0.32.0",
75-
"libp2p-floodsub": "^0.27.0",
76-
"libp2p-interfaces-compliance-tests": "^1.0.1",
74+
"libp2p": "^0.35.0",
75+
"libp2p-floodsub": "^0.28.0",
76+
"libp2p-interfaces-compliance-tests": "^2.0.3",
7777
"libp2p-mplex": "^0.10.3",
7878
"libp2p-websockets": "^0.16.1",
7979
"lodash": "^4.17.15",

0 commit comments

Comments
 (0)