Socket
Socket
Sign inDemoInstall

compress-commons

Package Overview
Dependencies
Maintainers
1
Versions
43
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

compress-commons - npm Package Compare versions

Comparing version 5.0.0 to 5.0.1

2

CHANGELOG.md
## Changelog
**5.0.1** — <small>_September 3, 2023_</small> — [Diff](https://github.com/archiverjs/node-compress-commons/compare/5.0.0...5.0.1)
**5.0.0** — <small>_September 2, 2023_</small> — [Diff](https://github.com/archiverjs/node-compress-commons/compare/4.1.2...5.0.0)

@@ -4,0 +6,0 @@

4

lib/archivers/zip/zip-archive-output-stream.js

@@ -9,3 +9,3 @@ /**

var inherits = require('util').inherits;
var crc32 = require('buffer-crc32');
var crc32 = require('crc-32');
var {CRC32Stream} = require('crc32-stream');

@@ -72,3 +72,3 @@ var {DeflateCRC32Stream} = require('crc32-stream');

ae.setCompressedSize(source.length);
ae.setCrc(crc32.unsigned(source));
ae.setCrc(crc32.buf(source) >>> 0);
}

@@ -75,0 +75,0 @@

{
"name": "compress-commons",
"version": "5.0.0",
"version": "5.0.1",
"description": "a library that defines a common interface for working with archive formats within node",

@@ -29,3 +29,3 @@ "homepage": "https://github.com/archiverjs/node-compress-commons",

"dependencies": {
"buffer-crc32": "^0.2.13",
"crc-32": "^1.2.0",
"crc32-stream": "^5.0.0",

@@ -32,0 +32,0 @@ "normalize-path": "^3.0.0",

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