Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Oct 2, 2025

This PR contains the following updates:

Package Change Age Confidence
p-queue 2.4.29.1.0 age confidence

Release Notes

sindresorhus/p-queue (p-queue)

v9.1.0

Compare Source


v9.0.1

Compare Source

  • Fix: Remove abort listener when operation completes (#​235) e9074f0

v9.0.0

Compare Source

Breaking
  • Require Node.js 20 b2600d5
  • Remove throwOnTimeout option - timeouts now always throw e48716f
    • It was a mistake to not throw on timeouts and the option made it complicated to handle types.
    • If you really need the old behavior back:
      const result = await queue.add(fn).catch(error => {
        if (error instanceof TimeoutError) {
        	return undefined;
        }
      
        throw error;
      });
Improvements
Fixes
  • Fix stack overflow with many aborted tasks 81cbae2
  • Fix interval cap race condition with high concurrency 7fea658
  • Fix interval timing when queue becomes empty between task additions 7b3f53e
  • Fix priority default handling for undefined values 439d512

v8.1.1

Compare Source


v8.1.0

Compare Source

v8.0.1

Compare Source

  • Fix TypeScript types for when tsconfig exactOptionalPropertyTypes is enabled (#​202) ec4e2a3

v8.0.0

Compare Source

Breaking
  • Require Node.js 18 68dfe95
  • Removed the AbortError export. It now throws the built-in DOMException when using the signal option. 68dfe95
  • TypeScript: Rename DefaultAddOptions type to QueueAddOptions

v7.4.1

Compare Source

  • Fix problem with importing into TypeScript project 9f7ad20

v7.4.0

Compare Source

v7.3.4

Compare Source

v7.3.3

Compare Source

v7.3.2

Compare Source

v7.3.1

Compare Source

v7.3.0

Compare Source

v7.2.0

Compare Source

v7.1.0

Compare Source

v7.0.0

Compare Source

Breaking
Improvements

v6.6.2

Compare Source

  • Fix obscure unhandled rejection when calling .clear() 933ea23

v6.6.1

Compare Source

  • Improve import for VS Code a81be14

v6.6.0

Compare Source

v6.5.0

Compare Source

v6.4.0

Compare Source

v6.3.0

Compare Source

  • Add .sizeBy() method to find queue size by priority (#​94) a9f5778
    If you implement your own queue, you need to implement the filter method to use .sizeBy().

v6.2.1

Compare Source

v6.2.0

Compare Source

  • Don't include source maps in the package f79384b
    They were broken anyway and it doesn't have much value for TS as it compiles to readable JS.

v6.1.1

Compare Source

v6.1.0

Compare Source

Enhancements:

Fixes:

  • Correct the documented default for the throwOnTimeout option (#​75) 5e3f629

v6.0.2

Compare Source

  • TypeScript - Properly export interfaces (#​72) 6082a01
  • TypeScript - Fix import for dependencies with no default export (#​73) 6ba29dd

v6.0.1

Compare Source

v6.0.0

Compare Source

Breaking:

  • Rewrite in TypeScript (#​60) a9d3ad9
    Note: This means that CommonJS users needs to import the package using:
    const {default: pQueue} = require('p-queue');

Enhancements:

v5.0.0

Compare Source

Breaking:

  • Require Node.js 8 7ce42b3
  • For TypeScript users only:
    • Refactor TypeScript definition to CommonJS compatible export 11a0807
      • You need to change import pQueue from 'p-queue'; to import pQueue = require('p-queue');

v4.0.0

Compare Source

Breaking:

  • Use eventemitter3 module instead of Node.js EventEmitter (#​58) 3827527
    (It's only a breaking change if you depend on EventEmitter methods that are not available in eventemitter3. Read more)

v3.2.0

Compare Source

v3.1.0

Compare Source

v3.0.0

Compare Source

Breaking:

Other:

  • Add ability to throttle the queue ab76d24

Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM ( * 0-3 * * * ) (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/p-queue-9.x branch from 2da79e9 to 9cb4696 Compare October 21, 2025 10:35
@renovate renovate bot force-pushed the renovate/p-queue-9.x branch from 9cb4696 to 9c59085 Compare November 18, 2025 11:04
@renovate renovate bot force-pushed the renovate/p-queue-9.x branch from 9c59085 to 312ec7d Compare January 5, 2026 21:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant