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

batch-cluster

Package Overview
Dependencies
Maintainers
1
Versions
93
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

batch-cluster - npm Package Compare versions

Comparing version 5.7.0 to 5.7.1

6

CHANGELOG.md

@@ -20,2 +20,6 @@ # Changelog

## v5.7.1
- 📦 `BatchCluster.end()` should return a `Deferred<void>`
## v5.7.0

@@ -26,2 +30,4 @@

- 🐞 Deflaked CI tests with longer timeouts and less aggressive `shutdown()`
- 📦 Had to delete the macOS Travis tests. Travis has been terribly flaky, with
unreproduceable spec failures.

@@ -28,0 +34,0 @@ ## v5.6.8

2

dist/BatchCluster.d.ts

@@ -59,3 +59,3 @@ /// <reference types="node" />

*/
end(gracefully?: boolean): Deferred<any>;
end(gracefully?: boolean): Deferred<void>;
/**

@@ -62,0 +62,0 @@ * Submits `task` for processing by a `BatchProcess` instance

@@ -209,3 +209,5 @@ "use strict";

.catch(function (err) { return _this.emitter.emit("endError", err); });
})).then(function () { return _this.emitter.emit("end"); }));
}))
.then(function () { return _this.emitter.emit("end"); })
.then(function () { return undefined; }));
this._procs.length = 0;

@@ -212,0 +214,0 @@ }

{
"name": "batch-cluster",
"version": "5.7.0",
"version": "5.7.1",
"description": "Manage a cluster of child processes",

@@ -5,0 +5,0 @@ "main": "dist/BatchCluster.js",

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