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

bull

Package Overview
Dependencies
Maintainers
1
Versions
197
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 4.10.2 to 4.10.3

7

CHANGELOG.md

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

## [4.10.3](https://github.com/OptimalBits/bull/compare/v4.10.2...v4.10.3) (2023-02-03)
### Bug Fixes
* don't reschedule delay timer if closing ([#2535](https://github.com/OptimalBits/bull/issues/2535)) ([8a0292a](https://github.com/OptimalBits/bull/commit/8a0292a574df82a62d718e13d8995800fd8529d0))
## [4.10.2](https://github.com/OptimalBits/bull/compare/v4.10.1...v4.10.2) (2022-11-24)

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

2

lib/p-timeout.js
// Extracted from p-timeout https://github.com/sindresorhus/p-timeout
// as it is not commonjs compatible. This is vesion 5.0.2
// as it is not commonjs compatible. This is version 5.0.2
'use strict';

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

@@ -104,3 +104,3 @@ 'use strict';

if (!_.isObject(opts)) {
throw Error('Options must be a valid object');
throw TypeError('Options must be a valid object');
}

@@ -112,3 +112,3 @@

} else {
throw new Error('Limiter requires `max` and `duration` options');
throw new TypeError('Limiter requires `max` and `duration` options');
}

@@ -950,2 +950,6 @@ }

Queue.prototype.updateDelayTimer = function() {
if (this.closing) {
return Promise.resolve();
}
return scripts

@@ -952,0 +956,0 @@ .updateDelaySet(this, Date.now())

{
"name": "bull",
"version": "4.10.2",
"version": "4.10.3",
"description": "Job manager",

@@ -30,3 +30,2 @@ "engines": {

"msgpackr": "^1.5.2",
"p-timeout": "^3.2.0",
"semver": "^7.3.2",

@@ -33,0 +32,0 @@ "uuid": "^8.3.0"

@@ -49,4 +49,6 @@

Follow me on [Twitter](http://twitter.com/manast) for important news and updates.
Bull is currently in maintainance mode, we are only fixing bugs. For new features check [BullMQ](https://github.com/taskforcesh/bullmq), a modern rewritten
implementation in Typescript. You are still very welcome to use Bull if it suits your needs, which is a safe, battle tested library.
Follow me on [Twitter](http://twitter.com/manast) for other important news and updates.

@@ -111,8 +113,2 @@ ### 🛠 Tutorials

### BullMQ
If you want to start using the next major version of Bull written entirely in Typescript you are welcome to the new repo [here](https://github.com/taskforcesh/bullmq). Otherwise you are very welcome to still use Bull, which is a safe, battle tested codebase.
---
### 🚀 Sponsors 🚀

@@ -119,0 +115,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