Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

bull

Package Overview
Dependencies
Maintainers
1
Versions
198
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bull - npm Package Compare versions

Comparing version 3.29.1 to 3.29.2

7

CHANGELOG.md

@@ -0,1 +1,8 @@

## [3.29.2](https://github.com/OptimalBits/bull/compare/v3.29.1...v3.29.2) (2021-09-08)
### Bug Fixes
* **connection:** fail only if redis connection does not recover ([0ca4c6b](https://github.com/OptimalBits/bull/commit/0ca4c6b4d57efa78e5ca484cb8bed2a6961646a3))
## [3.29.1](https://github.com/OptimalBits/bull/compare/v3.29.0...v3.29.1) (2021-08-26)

@@ -2,0 +9,0 @@

12

lib/utils.js

@@ -22,2 +22,3 @@ 'use strict';

function handleReady() {
client.removeListener('end', handleEnd);
client.removeListener('error', handleError);

@@ -27,9 +28,16 @@ resolve();

let lastError;
function handleError(err) {
lastError = err;
}
function handleEnd() {
client.removeListener('ready', handleReady);
reject(err);
client.removeListener('error', handleError);
reject(lastError);
}
client.once('ready', handleReady);
client.once('error', handleError);
client.on('error', handleError);
client.once('end', handleEnd);
}

@@ -36,0 +44,0 @@ });

2

package.json
{
"name": "bull",
"version": "3.29.1",
"version": "3.29.2",
"description": "Job manager",

@@ -5,0 +5,0 @@ "engines": {

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