crc32-stream
Advanced tools
Comparing version 4.0.1 to 4.0.2
## Changelog | ||
**4.0.2** — <small>_February 3, 2021_</small> — [Diff](https://github.com/archiverjs/node-crc32-stream/compare/4.0.1...4.0.2) | ||
### Bug Fixes | ||
- fix DeflateCRC32Stream to support Node.js 15.6.0+ (#31) (#32) | ||
### Maintenance | ||
- Bump actions/setup-node from v2.1.2 to v2.1.4 (#30) | ||
**4.0.1** — <small>_November 18, 2020_</small> — [Diff](https://github.com/archiverjs/node-crc32-stream/compare/4.0.0...4.0.1) | ||
### Bug Fixes | ||
- use crc-32 rather than crc module (#28) | ||
### Maintenance | ||
- Bump mocha from 8.2.0 to 8.2.1 (#25) | ||
- Bump actions/checkout from v2.3.2 to v2.3.4 (#26) | ||
- Bump actions/setup-node from v2.1.1 to v2.1.2 (#23) | ||
- Bump mocha from 8.1.1 to 8.2.0 (#24) | ||
- Bump mocha from 8.1.0 to 8.1.1 (#18) | ||
- Bump actions/checkout from v2.3.1 to v2.3.2 (#19) | ||
- Bump mocha from 8.0.1 to 8.1.0 (#17) | ||
- Bump actions/setup-node from v2.1.0 to v2.1.1 (#16) | ||
**4.0.0** — <small>_July 18, 2020_</small> — [Diff](https://github.com/archiverjs/node-crc32-stream/compare/3.0.1...4.0.0) | ||
@@ -4,0 +31,0 @@ |
@@ -34,3 +34,3 @@ /** | ||
write(chunk, enc, cb) { | ||
_transform(chunk, encoding, callback) { | ||
if (chunk) { | ||
@@ -41,3 +41,3 @@ this.checksum = crc32.buf(chunk, this.checksum) >>> 0; | ||
return super.write(chunk, enc, cb); | ||
super._transform(chunk, encoding, callback) | ||
} | ||
@@ -44,0 +44,0 @@ |
{ | ||
"name": "crc32-stream", | ||
"version": "4.0.1", | ||
"version": "4.0.2", | ||
"description": "a streaming CRC32 checksumer", | ||
@@ -5,0 +5,0 @@ "homepage": "https://github.com/archiverjs/node-crc32-stream", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
8807
2