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

Commit fad81d6

Browse files
jacobheunvasco-santosachingbrain
committed
chore: backport libp2p noise as fallback for secio (#3074) (#3211)
Adds `libp2p-noise` encryption protocol as a fallback for `libp2p-secio`. This replicates what happened in [ipfs/go-ipfs/releases/v0.5.0](https://github.com/ipfs/go-ipfs/releases/tag/v0.5.0). >SECIO Deprecation Notice >SECIO should be considered to be well on the way to deprecation and will be >completely disabled in either the next release (0.6.0, ~mid May) or the one >following that (0.7.0, ~end of June). Before SECIO is disabled, support will be >added for the NOISE transport for compatibility with other IPFS implementations. From what I know, this is likely to happen for `0.7.0`. We currently have interop tests for using noise in [libp2p/interop/test/connect](https://github.com/libp2p/interop/tree/master/test/connect). I think there are enough for now, but when we use noise as default in JS and GO, we will definitely want to make sure we have more verbose interop before we switch to default. AFAIK, with the current setup of `ipfsd-ctl` we cannot specify what libp2p modules to use. Co-authored-by: Vasco Santos <[email protected]> Co-authored-by: Alex Potsides <[email protected]>
1 parent 997d936 commit fad81d6

File tree

28 files changed

+39
-30
lines changed

28 files changed

+39
-30
lines changed

examples/browser-add-readable-stream/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"keywords": [],
1313
"license": "MIT",
1414
"devDependencies": {
15-
"ipfs": "^0.45.0",
15+
"ipfs": "^0.46.0",
1616
"test-ipfs-example": "^2.0.3"
1717
}
1818
}

examples/browser-browserify/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"concat-stream": "^2.0.0",
1919
"execa": "^4.0.0",
2020
"http-server": "^0.11.1",
21-
"ipfs": "^0.45.0",
21+
"ipfs": "^0.46.0",
2222
"test-ipfs-example": "^2.0.3"
2323
},
2424
"browser": {

examples/browser-create-react-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"private": true,
55
"dependencies": {
66
"dot-prop": "^5.0.0",
7-
"ipfs": "^0.45.0",
7+
"ipfs": "^0.46.0",
88
"ipfs-css": "^0.13.1",
99
"react": "^16.8.6",
1010
"react-dom": "^16.8.6",

examples/browser-mfs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"webpack-cli": "^3.3.11"
2222
},
2323
"dependencies": {
24-
"ipfs": "^0.45.0",
24+
"ipfs": "^0.46.0",
2525
"mime-sniffer": "~0.0.3"
2626
}
2727
}

examples/browser-parceljs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"author": "",
1919
"license": "ISC",
2020
"dependencies": {
21-
"ipfs": "^0.45.0"
21+
"ipfs": "^0.46.0"
2222
},
2323
"devDependencies": {
2424
"@babel/cli": "^7.1.5",

examples/browser-readablestream/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"webpack": "^4.28.4"
2121
},
2222
"dependencies": {
23-
"ipfs": "^0.45.0",
23+
"ipfs": "^0.46.0",
2424
"it-to-stream": "^0.1.1",
2525
"videostream": "^3.2.0"
2626
}

examples/browser-script-tag/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@
1616
"test-ipfs-example": "^2.0.3"
1717
},
1818
"dependencies": {
19-
"ipfs": "^0.45.0"
19+
"ipfs": "^0.46.0"
2020
}
2121
}

examples/browser-video-streaming/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@
1616
"test-ipfs-example": "^2.0.3"
1717
},
1818
"dependencies": {
19-
"ipfs": "^0.45.0"
19+
"ipfs": "^0.46.0"
2020
}
2121
}

examples/browser-vue/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
},
1212
"dependencies": {
1313
"core-js": "^3.6.4",
14-
"ipfs": "^0.45.0",
14+
"ipfs": "^0.46.0",
1515
"vue": "^2.6.11"
1616
},
1717
"devDependencies": {

examples/browser-webpack/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"webpack-dev-server": "^3.1.14"
2727
},
2828
"dependencies": {
29-
"ipfs": "^0.45.0"
29+
"ipfs": "^0.46.0"
3030
},
3131
"browserslist": [
3232
">1%",

0 commit comments

Comments
 (0)