Skip to content
This repository was archived by the owner on Feb 12, 2024. It is now read-only.

Commit 061d77c

Browse files
authored
chore: update deps (#3514)
BREAKING CHANGE: ipfs-repo upgrade requires repo migration to v10
1 parent 7e188f2 commit 061d77c

File tree

181 files changed

+693
-687
lines changed

Some content is hidden

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

181 files changed

+693
-687
lines changed

.github/workflows/bundlesize.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
node-version: [12.x]
13+
node-version: [14.x]
1414
project:
1515
- packages/ipfs-core-utils
1616
- packages/ipfs-core

.github/workflows/typecheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
node-version: [12.x]
12+
node-version: [14.x]
1313
project:
1414
- packages/ipfs-core-utils
1515
- packages/ipfs-core

.travis.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ jobs:
6363
- name: external - sidetree
6464

6565
include:
66-
# manual install step, we do this to cache the installed files for subsequent steps
6766
- stage: test
6867
name: lint
6968
script:
@@ -272,9 +271,8 @@ jobs:
272271
- stage: test
273272
name: examples
274273
script:
275-
# Travis lets scripts continue even if previous steps fail: https://github.com/travis-ci/travis-ci/issues/1066
276-
- npm run build -- --scope={ipfs-core,ipfs,ipfs-http-client,ipfs-message-port-*} &&
277-
npm run configure-examples &&
274+
# Travis lets scripts continue even if previous steps fail so need to use &&: https://github.com/travis-ci/travis-ci/issues/1066
275+
- npm run configure-examples &&
278276
npm run test -- --scope=example* --concurrency=1
279277

280278
- stage: release-rc

examples/browser-exchange-files/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"execa": "^4.0.3",
1616
"http-server": "^0.12.3",
1717
"ipfs-http-client": "^48.2.2",
18-
"uint8arrays": "^1.1.0"
18+
"uint8arrays": "^2.0.5"
1919
},
2020
"dependencies": {
2121
"ipfs": "^0.53.2",

examples/browser-ipns-publish/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
"human-crypto-keys": "^0.1.4",
1616
"ipfs": "^0.53.2",
1717
"ipfs-http-client": "^48.2.2",
18-
"ipfs-utils": "^5.0.0",
18+
"ipfs-utils": "^6.0.0",
1919
"ipns": "^0.8.0",
2020
"it-last": "^1.0.4",
2121
"p-retry": "^4.2.0",
22-
"uint8arrays": "^1.1.0"
22+
"uint8arrays": "^2.0.5"
2323
},
2424
"browserslist": [
2525
"last 2 versions and not dead and > 2%"

examples/circuit-relaying/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"ipfs": "^0.53.2",
1919
"ipfs-pubsub-room": "^2.0.1",
2020
"libp2p-websockets": "^0.15.0",
21-
"uint8arrays": "^1.1.0"
21+
"uint8arrays": "^2.0.5"
2222
},
2323
"devDependencies": {
2424
"execa": "^4.0.3",

examples/custom-ipfs-repo/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"dependencies": {
1313
"datastore-fs": "^2.0.0",
1414
"ipfs": "^0.53.2",
15-
"ipfs-repo": "^7.0.0",
15+
"ipfs-repo": "^8.0.0",
1616
"it-all": "^1.0.4"
1717
},
1818
"devDependencies": {

examples/custom-ipld-formats/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717
"ipfs-http-client": "^48.2.2",
1818
"multicodec": "^2.0.1",
1919
"multihashing-async": "^2.0.1",
20-
"uint8arrays": "^1.1.0"
20+
"uint8arrays": "^2.0.5"
2121
}
2222
}

examples/ipfs-101/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"dependencies": {
1313
"ipfs": "^0.53.2",
1414
"it-all": "^1.0.4",
15-
"uint8arrays": "^1.1.0"
15+
"uint8arrays": "^2.0.5"
1616
},
1717
"devDependencies": {
1818
"test-ipfs-example": "^2.0.3"

examples/run-in-electron/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
"author": "David Dias <[email protected]>",
1717
"license": "MIT",
1818
"devDependencies": {
19-
"electron": "^6.0.0",
20-
"electron-rebuild": "^1.8.4",
19+
"electron": "^11.2.1",
20+
"electron-rebuild": "^2.3.4",
2121
"ipfs": "^0.53.2",
2222
"test-ipfs-example": "^2.0.3"
2323
},

0 commit comments

Comments
 (0)