Socket
Socket
Sign inDemoInstall

libp2p-tcp

Package Overview
Dependencies
23
Maintainers
2
Versions
57
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.11.0 to 0.11.1

CHANGELOG.md

27

package.json
{
"name": "libp2p-tcp",
"version": "0.11.0",
"version": "0.11.1",
"description": "Node.js implementation of the TCP module that libp2p uses, which implements the interface-connection and interface-transport interfaces",
"main": "src/index.js",
"scripts": {
"lint": "aegir-lint",
"test": "aegir-test --env node",
"release": "aegir-release --env no-build",
"release-minor": "aegir-release --type minor --env no-build",
"release-major": "aegir-release --type major --env no-build",
"coverage": "aegir-coverage",
"coverage-publish": "aegir-coverage publish"
"lint": "aegir lint",
"test": "aegir test --target node",
"release": "aegir release --no-build",
"release-minor": "aegir release --type minor --no-build",
"release-major": "aegir-release --type major --no-build",
"coverage": "aegir coverage",
"coverage-publish": "aegir coverage --provider coveralls"
},

@@ -37,3 +37,3 @@ "pre-commit": [

"devDependencies": {
"aegir": "^11.0.2",
"aegir": "^12.0.8",
"chai": "^4.1.2",

@@ -44,3 +44,3 @@ "dirty-chai": "^2.0.1",

"pre-commit": "^1.2.2",
"pull-stream": "^3.6.0"
"pull-stream": "^3.6.1"
},

@@ -52,4 +52,4 @@ "dependencies": {

"lodash.isfunction": "^3.0.8",
"mafmt": "^3.0.0",
"multiaddr": "^3.0.0",
"mafmt": "^3.0.1",
"multiaddr": "^3.0.1",
"once": "^1.4.0",

@@ -60,2 +60,3 @@ "stream-to-pull-stream": "^1.7.2"

"David Dias <daviddias.p@gmail.com>",
"Dmitriy Ryajov <dryajov@gmail.com>",
"Evan Schwartz <evan.mark.schwartz@gmail.com>",

@@ -69,2 +70,2 @@ "Friedel Ziegelmayer <dignifiedquire@gmail.com>",

]
}
}

@@ -70,6 +70,12 @@ 'use strict'

}
return multiaddrs.filter((ma) => {
if (includes(ma.protoNames(), 'p2p-circuit')) {
return false
}
if (includes(ma.protoNames(), 'ipfs')) {
ma = ma.decapsulate('ipfs')
}
return mafmt.TCP.matches(ma)

@@ -76,0 +82,0 @@ })

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc