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

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: libp2p/js-libp2p-bootstrap
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 216ff30108e78231a8f54b9591d4ad2338b9e7e6
Choose a base ref
...
head repository: libp2p/js-libp2p-bootstrap
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ed64049729eb909f692558879316085c00d080d9
Choose a head ref
  • 3 commits
  • 3 files changed
  • 1 contributor

Commits on Dec 2, 2021

  1. chore: update peer id, interfaces, etc (#115)

    BREAKING CHANGE: requires node 15+
    achingbrain authored Dec 2, 2021
    Copy the full SHA
    f7b8ce0 View commit details
  2. Copy the full SHA
    c84eeaf View commit details
  3. Copy the full SHA
    ed64049 View commit details
Showing with 29 additions and 9 deletions.
  1. +8 −2 .github/workflows/main.yml
  2. +14 −0 CHANGELOG.md
  3. +7 −7 package.json
10 changes: 8 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -22,11 +22,11 @@ jobs:
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
node: [14, 15]
node: [16]
fail-fast: true
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- run: npm install
@@ -37,12 +37,18 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: lts/*
- run: npm install
- run: npx aegir test -t browser -t webworker --bail
test-firefox:
needs: check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: lts/*
- run: npm install
- run: npx aegir test -t browser -t webworker --bail -- --browser firefox
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
# [0.14.0](https://github.com/libp2p/js-libp2p-bootstrap/compare/v0.13.0...v0.14.0) (2021-12-02)


### chore

* update peer id, interfaces, etc ([#115](https://github.com/libp2p/js-libp2p-bootstrap/issues/115)) ([f7b8ce0](https://github.com/libp2p/js-libp2p-bootstrap/commit/f7b8ce0cea136f7258bc57ccdb294d9cf40ba811))


### BREAKING CHANGES

* requires node 15+



# [0.13.0](https://github.com/libp2p/js-libp2p-bootstrap/compare/v0.12.3...v0.13.0) (2021-07-08)


14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "libp2p-bootstrap",
"version": "0.13.0",
"version": "0.14.0",
"description": "Node.js IPFS Implementation of the railing process of a Node through a bootstrap peer list",
"leadMaintainer": "Vasco Santos <vasco.santos@moxy.studio>",
"main": "src/index.js",
@@ -25,26 +25,26 @@
"homepage": "https://github.com/libp2p/js-libp2p-bootstrap",
"repository": "github:libp2p/js-libp2p-bootstrap",
"engines": {
"node": ">=14.0.0"
"node": ">=15.0.0"
},
"types": "dist/src/index.d.ts",
"devDependencies": {
"@types/debug": "^4.1.5",
"aegir": "^33.0.0",
"libp2p-interfaces": "^1.0.0",
"libp2p-interfaces-compliance-tests": "^1.0.0"
"aegir": "^36.0.2",
"libp2p-interfaces": "^2.0.1",
"libp2p-interfaces-compliance-tests": "^2.0.1"
},
"dependencies": {
"debug": "^4.3.1",
"mafmt": "^10.0.0",
"multiaddr": "^10.0.0",
"peer-id": "^0.15.0"
"peer-id": "^0.16.0"
},
"contributors": [
"David Dias <daviddias.p@gmail.com>",
"Vasco Santos <vasco.santos@moxy.studio>",
"Friedel Ziegelmayer <dignifiedquire@gmail.com>",
"Alex Potsides <alex@achingbrain.net>",
"Friedel Ziegelmayer <dignifiedquire@gmail.com>",
"acolytec3 <17355484+acolytec3@users.noreply.github.com>",
"Alan Shaw <alan.shaw@protocol.ai>",
"Jacob Heun <jacobheun@gmail.com>",