Skip to content
This repository was archived by the owner on Oct 3, 2023. It is now read-only.

Commit f7b8ce0

Browse files
authoredDec 2, 2021
chore: update peer id, interfaces, etc (#115)
BREAKING CHANGE: requires node 15+
1 parent 216ff30 commit f7b8ce0

File tree

2 files changed

+13
-7
lines changed

2 files changed

+13
-7
lines changed
 

‎.github/workflows/main.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ jobs:
2222
strategy:
2323
matrix:
2424
os: [windows-latest, ubuntu-latest, macos-latest]
25-
node: [14, 15]
25+
node: [16]
2626
fail-fast: true
2727
steps:
2828
- uses: actions/checkout@v2
29-
- uses: actions/setup-node@v1
29+
- uses: actions/setup-node@v2
3030
with:
3131
node-version: ${{ matrix.node }}
3232
- run: npm install
@@ -37,12 +37,18 @@ jobs:
3737
runs-on: ubuntu-latest
3838
steps:
3939
- uses: actions/checkout@v2
40+
- uses: actions/setup-node@v2
41+
with:
42+
node-version: lts/*
4043
- run: npm install
4144
- run: npx aegir test -t browser -t webworker --bail
4245
test-firefox:
4346
needs: check
4447
runs-on: ubuntu-latest
4548
steps:
4649
- uses: actions/checkout@v2
50+
- uses: actions/setup-node@v2
51+
with:
52+
node-version: lts/*
4753
- run: npm install
4854
- run: npx aegir test -t browser -t webworker --bail -- --browser firefox

‎package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -25,20 +25,20 @@
2525
"homepage": "https://github.com/libp2p/js-libp2p-bootstrap",
2626
"repository": "github:libp2p/js-libp2p-bootstrap",
2727
"engines": {
28-
"node": ">=14.0.0"
28+
"node": ">=15.0.0"
2929
},
3030
"types": "dist/src/index.d.ts",
3131
"devDependencies": {
3232
"@types/debug": "^4.1.5",
33-
"aegir": "^33.0.0",
34-
"libp2p-interfaces": "^1.0.0",
35-
"libp2p-interfaces-compliance-tests": "^1.0.0"
33+
"aegir": "^36.0.2",
34+
"libp2p-interfaces": "^2.0.1",
35+
"libp2p-interfaces-compliance-tests": "^2.0.1"
3636
},
3737
"dependencies": {
3838
"debug": "^4.3.1",
3939
"mafmt": "^10.0.0",
4040
"multiaddr": "^10.0.0",
41-
"peer-id": "^0.15.0"
41+
"peer-id": "^0.16.0"
4242
},
4343
"contributors": [
4444
"David Dias <daviddias.p@gmail.com>",

0 commit comments

Comments
 (0)
This repository has been archived.