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

@bull-board/api

Package Overview
Dependencies
Maintainers
1
Versions
165
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@bull-board/api - npm Package Compare versions

Comparing version 4.10.0 to 4.10.1

4

dist/src/queueAdapters/base.d.ts

@@ -9,3 +9,5 @@ import { FormatterField, JobCleanStatus, JobCounts, JobStatus, QueueAdapterOptions, QueueJob } from '../../typings/app';

private formatters;
protected constructor(options?: Partial<QueueAdapterOptions>);
protected constructor(options?: Partial<QueueAdapterOptions & {
allowCompletedRetries: boolean;
}>);
getDescription(): string;

@@ -12,0 +14,0 @@ setFormatter<T extends FormatterField>(field: T, formatter: (data: any) => T extends 'name' ? string : any): void;

@@ -7,4 +7,3 @@ "use strict";

constructor(queue, options = {}) {
options.allowCompletedRetries = false; // bull doesn't support this
super(options);
super({ ...options, allowCompletedRetries: false });
this.queue = queue;

@@ -11,0 +10,0 @@ }

@@ -12,3 +12,2 @@ import { RedisInfo } from 'redis-info';

allowRetries: boolean;
allowCompletedRetries: boolean;
prefix: string;

@@ -15,0 +14,0 @@ description: string;

{
"name": "@bull-board/api",
"version": "4.10.0",
"version": "4.10.1",
"description": "Core server APIs of bull-board",

@@ -34,4 +34,4 @@ "keywords": [

"devDependencies": {
"@types/bull": "^3.15.8",
"@types/node": "^17.0.25",
"bull": "^4.10.2",
"bullmq": "^1.80.6",

@@ -38,0 +38,0 @@ "ioredis-mock": "^7.2.0",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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