New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

blockmap

Package Overview
Dependencies
Maintainers
3
Versions
31
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

blockmap - npm Package Compare versions

Comparing version 3.2.1 to 3.3.0

6

CHANGELOG.md

@@ -7,2 +7,8 @@ # Change Log

## v3.3.0 - 2018-05-30
* Fix(read-stream): Verify on end #49 [Jonas Hermsmeier]
* Feat(filter-stream): Add .rangesVerified counter #49 [Jonas Hermsmeier]
* Feat(read-stream): Add .rangesVerified counter #49 [Jonas Hermsmeier]
## v3.2.1 - 2018-05-30

@@ -9,0 +15,0 @@

4

lib/filter-stream.js

@@ -48,2 +48,4 @@ var stream = require( 'stream' )

this.rangesRead = 0
/** @type {Number} Number of block map ranges verified */
this.rangesVerified = 0
/** @type {Number} Number of blocks read */

@@ -144,2 +146,4 @@ this.blocksRead = 0

range.range.checksum = digest
} else {
this.rangesVerified++
}

@@ -146,0 +150,0 @@

@@ -63,2 +63,4 @@ var stream = require( 'stream' )

this.rangesRead = 0
/** @type {Number} Number of block map ranges verified */
this.rangesVerified = 0
/** @type {Number} Number of blocks read */

@@ -170,2 +172,4 @@ this.blocksRead = 0

this.rangesVerified++
},

@@ -235,2 +239,3 @@

if( this.ranges.length === 0 ) {
this._verifyRange()
return void this.push( null )

@@ -237,0 +242,0 @@ }

2

package.json
{
"name": "blockmap",
"version": "3.2.1",
"version": "3.3.0",
"description": "Tizen's block map format",

@@ -5,0 +5,0 @@ "license": "MIT",

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc