Skip to content

Commit

Permalink
chore: update peer-id
Browse files Browse the repository at this point in the history
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+
  • Loading branch information
achingbrain committed Dec 2, 2021
1 parent 6d7b2aa commit f801043
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 8 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: lts/*
- run: npm install
- run: npm run lint
- run: npm run prebuild
Expand All @@ -22,11 +25,11 @@ jobs:
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
node: [14]
node: [16]
fail-fast: false
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- run: npm install
Expand All @@ -38,6 +41,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: lts/*
- run: npm install
- run: npm run prebuild
- run: npx aegir test -t browser -t webworker --bail
Expand All @@ -46,6 +52,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: lts/*
- run: npm install
- run: npm run prebuild
- run: npx aegir test -t browser -t webworker --bail -- --browser firefox
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@
"denque": "^1.5.0",
"err-code": "^3.0.1",
"it-pipe": "^1.1.0",
"libp2p-interfaces": "^1.1.0",
"peer-id": "^0.15.3",
"libp2p-interfaces": "^2.0.1",
"peer-id": "^0.16.0",
"protobufjs": "^6.11.2",
"time-cache": "^0.3.0",
"uint8arrays": "^3.0.0"
Expand All @@ -56,7 +56,7 @@
"@types/mocha": "^8.2.2",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"aegir": "^35.0.1",
"aegir": "^36.0.2",
"benchmark": "^2.1.4",
"buffer": "^6.0.3",
"chai": "^4.2.0",
Expand All @@ -71,9 +71,9 @@
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"it-pair": "^1.0.0",
"libp2p": "^0.32.0",
"libp2p-floodsub": "^0.27.0",
"libp2p-interfaces-compliance-tests": "^1.0.1",
"libp2p": "^0.35.0",
"libp2p-floodsub": "^0.28.0",
"libp2p-interfaces-compliance-tests": "^2.0.3",
"libp2p-mplex": "^0.10.3",
"libp2p-websockets": "^0.16.1",
"lodash": "^4.17.15",
Expand Down

0 comments on commit f801043

Please sign in to comment.