[PR #451] [CLOSED] Bump p-queue from 5.0.0 to 6.3.0 #1579

Closed
opened 2026-02-25 22:40:40 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/floccusaddon/floccus/pull/451
Author: @dependabot-preview[bot]
Created: 2/18/2020
Status: Closed

Base: developHead: dependabot/npm_and_yarn/p-queue-6.3.0


📝 Commits (1)

  • 271bac0 Bump p-queue from 5.0.0 to 6.3.0

📊 Changes

2 files changed (+18 additions, -10 deletions)

View changed files

📝 package-lock.json (+17 -9)
📝 package.json (+1 -1)

📄 Description

Bumps p-queue from 5.0.0 to 6.3.0.

Release notes

Sourced from p-queue's releases.

v6.3.0

  • 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().

https://github.com/sindresorhus/p-queue/compare/v6.2.1...v6.3.0

v6.2.1

  • Fix problem with TimeoutError import (#88) db039dd

https://github.com/sindresorhus/p-queue/compare/v6.2.0...v6.2.1

v6.2.0

  • 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.

https://github.com/sindresorhus/p-queue/compare/v6.1.1...v6.2.0

v6.1.1

  • Fix typo in options logic when adding a task (#81) 90acaf2

https://github.com/sindresorhus/p-queue/compare/v6.1.0...v6.1.1

v6.1.0

Enhancements:

  • Add ability to update concurrency (#52) bc75c25
  • Make .start() return the instance (#63) a347a6c

Fixes:

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

https://github.com/sindresorhus/p-queue/compare/v6.0.2...v6.1.0

v6.0.2

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

https://github.com/sindresorhus/p-queue/compare/v6.0.1...v6.0.2

v6.0.1

  • Add missing package.json main field (#69) ed606e8

https://github.com/sindresorhus/p-queue/compare/v6.0.0...v6.0.1

v6.0.0

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:

... (truncated)
Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
  • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot dashboard:

  • Update frequency (including time of day and day of week)
  • Pull request limits (per update run and/or open at any time)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/floccusaddon/floccus/pull/451 **Author:** [@dependabot-preview[bot]](https://github.com/apps/dependabot-preview) **Created:** 2/18/2020 **Status:** ❌ Closed **Base:** `develop` ← **Head:** `dependabot/npm_and_yarn/p-queue-6.3.0` --- ### 📝 Commits (1) - [`271bac0`](https://github.com/floccusaddon/floccus/commit/271bac0b257da44512570cde213f5ef530482db9) Bump p-queue from 5.0.0 to 6.3.0 ### 📊 Changes **2 files changed** (+18 additions, -10 deletions) <details> <summary>View changed files</summary> 📝 `package-lock.json` (+17 -9) 📝 `package.json` (+1 -1) </details> ### 📄 Description Bumps [p-queue](https://github.com/sindresorhus/p-queue) from 5.0.0 to 6.3.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/sindresorhus/p-queue/releases">p-queue's releases</a>.</em></p> <blockquote> <h2>v6.3.0</h2> <ul> <li>Add <code>.sizeBy()</code> method to find queue size by priority (<a href="https://github-redirect.dependabot.com/sindresorhus/p-queue/issues/94">#94</a>) a9f5778 If you implement your own queue, you need to implement the <code>filter</code> method to use <code>.sizeBy()</code>.</li> </ul> <p><a href="https://github.com/sindresorhus/p-queue/compare/v6.2.1...v6.3.0">https://github.com/sindresorhus/p-queue/compare/v6.2.1...v6.3.0</a></p> <h2>v6.2.1</h2> <ul> <li>Fix problem with <code>TimeoutError</code> import (<a href="https://github-redirect.dependabot.com/sindresorhus/p-queue/issues/88">#88</a>) db039dd</li> </ul> <p><a href="https://github.com/sindresorhus/p-queue/compare/v6.2.0...v6.2.1">https://github.com/sindresorhus/p-queue/compare/v6.2.0...v6.2.1</a></p> <h2>v6.2.0</h2> <ul> <li>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.</li> </ul> <p><a href="https://github.com/sindresorhus/p-queue/compare/v6.1.1...v6.2.0">https://github.com/sindresorhus/p-queue/compare/v6.1.1...v6.2.0</a></p> <h2>v6.1.1</h2> <ul> <li>Fix typo in options logic when adding a task (<a href="https://github-redirect.dependabot.com/sindresorhus/p-queue/issues/81">#81</a>) 90acaf2</li> </ul> <p><a href="https://github.com/sindresorhus/p-queue/compare/v6.1.0...v6.1.1">https://github.com/sindresorhus/p-queue/compare/v6.1.0...v6.1.1</a></p> <h2>v6.1.0</h2> <p>Enhancements:</p> <ul> <li>Add ability to update concurrency (<a href="https://github-redirect.dependabot.com/sindresorhus/p-queue/issues/52">#52</a>) bc75c25</li> <li>Make <code>.start()</code> return the instance (<a href="https://github-redirect.dependabot.com/sindresorhus/p-queue/issues/63">#63</a>) a347a6c</li> </ul> <p>Fixes:</p> <ul> <li>Correct the documented default for the <code>throwOnTimeout</code> option (<a href="https://github-redirect.dependabot.com/sindresorhus/p-queue/issues/75">#75</a>) 5e3f629</li> </ul> <p><a href="https://github.com/sindresorhus/p-queue/compare/v6.0.2...v6.1.0">https://github.com/sindresorhus/p-queue/compare/v6.0.2...v6.1.0</a></p> <h2>v6.0.2</h2> <ul> <li>TypeScript - Properly export interfaces (<a href="https://github-redirect.dependabot.com/sindresorhus/p-queue/issues/72">#72</a>) 6082a01</li> <li>TypeScript - Fix import for dependencies with no default export (<a href="https://github-redirect.dependabot.com/sindresorhus/p-queue/issues/73">#73</a>) 6ba29dd</li> </ul> <p><a href="https://github.com/sindresorhus/p-queue/compare/v6.0.1...v6.0.2">https://github.com/sindresorhus/p-queue/compare/v6.0.1...v6.0.2</a></p> <h2>v6.0.1</h2> <ul> <li>Add missing package.json main field (<a href="https://github-redirect.dependabot.com/sindresorhus/p-queue/issues/69">#69</a>) ed606e8</li> </ul> <p><a href="https://github.com/sindresorhus/p-queue/compare/v6.0.0...v6.0.1">https://github.com/sindresorhus/p-queue/compare/v6.0.0...v6.0.1</a></p> <h2>v6.0.0</h2> <p>Breaking:</p> <ul> <li>Rewrite in TypeScript (<a href="https://github-redirect.dependabot.com/sindresorhus/p-queue/issues/60">#60</a>) a9d3ad9 <strong>Note</strong>: This means that CommonJS users needs to import the package using: <code>const {default: pQueue} = require('p-queue');</code></li> </ul> <p>Enhancements:</p> </tr></table> ... (truncated) </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/sindresorhus/p-queue/commit/2af8cf9c5dc6343c8bf1344f4c59683c49684163"><code>2af8cf9</code></a> 6.3.0</li> <li><a href="https://github.com/sindresorhus/p-queue/commit/a9f57787d80bfff93df621058d34be6212a91fd2"><code>a9f5778</code></a> Add <code>.sizeBy()</code> method to find queue size by priority (<a href="https://github-redirect.dependabot.com/sindresorhus/p-queue/issues/94">#94</a>)</li> <li><a href="https://github.com/sindresorhus/p-queue/commit/c2e768f540dd22380bdf84c8cbd5a794ccac5e02"><code>c2e768f</code></a> Fix Travis</li> <li><a href="https://github.com/sindresorhus/p-queue/commit/a578dc41a6248eba1432921f75f43ae73749eb93"><code>a578dc4</code></a> 6.2.1</li> <li><a href="https://github.com/sindresorhus/p-queue/commit/6e84797ab771e8019a409ae4131e58d5d924ea28"><code>6e84797</code></a> Upgrade dev dependencies</li> <li><a href="https://github.com/sindresorhus/p-queue/commit/db039ddcb821023581cd08d44ca9c1b107cac367"><code>db039dd</code></a> Fix importing <code>TimeoutError</code> (<a href="https://github-redirect.dependabot.com/sindresorhus/p-queue/issues/88">#88</a>)</li> <li><a href="https://github.com/sindresorhus/p-queue/commit/f1f7fb9ac318f7f29c9543f1923de58a48588ae7"><code>f1f7fb9</code></a> 6.2.0</li> <li><a href="https://github.com/sindresorhus/p-queue/commit/f79384bc68f1e6488b5449382a2e39a1e13659d9"><code>f79384b</code></a> Upgrade dependencies</li> <li><a href="https://github.com/sindresorhus/p-queue/commit/83a166cea1797015457c910b6c37a50187e3be9b"><code>83a166c</code></a> Tidelift tasks</li> <li><a href="https://github.com/sindresorhus/p-queue/commit/144d0ad54c9940d8b53359bd4566be89d8437df5"><code>144d0ad</code></a> 6.1.1</li> <li>Additional commits viewable in <a href="https://github.com/sindresorhus/p-queue/compare/v5.0.0...v6.3.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=p-queue&package-manager=npm_and_yarn&previous-version=5.0.0&new-version=6.3.0)](https://dependabot.com/compatibility-score/?dependency-name=p-queue&package-manager=npm_and_yarn&previous-version=5.0.0&new-version=6.3.0) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-25 22:40:40 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/floccus#1579
No description provided.