[PR #1056] [CLOSED] Bump rimraf from 4.1.3 to 4.3.0 #1065

Closed
opened 2025-11-06 12:13:58 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/veggiemonk/awesome-docker/pull/1056
Author: @dependabot[bot]
Created: 3/6/2023
Status: Closed

Base: masterHead: dependabot/npm_and_yarn/rimraf-4.3.0


📝 Commits (1)

  • 27fd466 Bump rimraf from 4.1.3 to 4.3.0

📊 Changes

2 files changed (+150 additions, -8 deletions)

View changed files

📝 package-lock.json (+149 -7)
📝 package.json (+1 -1)

📄 Description

Bumps rimraf from 4.1.3 to 4.3.0.

Changelog

Sourced from rimraf's changelog.

4.3

  • Return boolean indicating whether the path was fully removed
  • Add filter option
  • bin: add --verbose, -v to print files as they are deleted
  • bin: add --no-verbose, -V to not print files as they are deleted
  • bin: add -i --interactive to be prompted on each deletion
  • bin: add -I --no-interactive to not be prompted on each deletion

v4.2

  • Brought back glob support, using the new and improved glob v9

v4.1

  • Improved hybrid module with no need to look at the .default dangly bit. .default preserved as a reference to rimraf for compatibility with anyone who came to rely on it in v4.0.
  • Accept and ignore -rf and -fr arguments to the bin.

v4.0

  • Remove glob dependency entirely. This library now only accepts actual file and folder names to delete.
  • Accept array of paths or single path.
  • Windows performance and reliability improved.
  • All strategies separated into explicitly exported methods.
  • Drop support for Node.js below version 14
  • rewrite in TypeScript
  • ship CJS/ESM hybrid module
  • Error on unknown arguments to the bin. (Previously they were silently ignored.)

v3.0

  • Add --preserve-root option to executable (default true)
  • Drop support for Node.js below version 6

v2.7

  • Make glob an optional dependency

2.6

  • Retry on EBUSY on non-windows platforms as well
  • Make rimraf.sync 10000% more reliable on Windows

2.5

... (truncated)

Commits
  • f923bb0 4.3.0
  • ed7b2a6 test: chmod ordering is nondeterministic
  • 4cb1d47 changelog about bin interactivity
  • 95e13f2 try to make the interactive test less flaky
  • 38e731f bin: add interactive mode
  • ca28abb let the filter option be async for async methods
  • 3b57687 add --verbose, --no-verbose to bin
  • ed3288e add filter option
  • e828fe2 Update v4 glob support in README
  • 80aef8b 4.2.0
  • Additional commits viewable in compare view

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)

🔄 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/veggiemonk/awesome-docker/pull/1056 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 3/6/2023 **Status:** ❌ Closed **Base:** `master` ← **Head:** `dependabot/npm_and_yarn/rimraf-4.3.0` --- ### 📝 Commits (1) - [`27fd466`](https://github.com/veggiemonk/awesome-docker/commit/27fd4664e40b34d6defc0e117063600e888787aa) Bump rimraf from 4.1.3 to 4.3.0 ### 📊 Changes **2 files changed** (+150 additions, -8 deletions) <details> <summary>View changed files</summary> 📝 `package-lock.json` (+149 -7) 📝 `package.json` (+1 -1) </details> ### 📄 Description Bumps [rimraf](https://github.com/isaacs/rimraf) from 4.1.3 to 4.3.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/isaacs/rimraf/blob/main/CHANGELOG.md">rimraf's changelog</a>.</em></p> <blockquote> <h1>4.3</h1> <ul> <li>Return boolean indicating whether the path was fully removed</li> <li>Add filter option</li> <li>bin: add --verbose, -v to print files as they are deleted</li> <li>bin: add --no-verbose, -V to not print files as they are deleted</li> <li>bin: add -i --interactive to be prompted on each deletion</li> <li>bin: add -I --no-interactive to not be prompted on each deletion</li> </ul> <h1>v4.2</h1> <ul> <li>Brought back <code>glob</code> support, using the new and improved glob v9</li> </ul> <h1>v4.1</h1> <ul> <li>Improved hybrid module with no need to look at the <code>.default</code> dangly bit. <code>.default</code> preserved as a reference to <code>rimraf</code> for compatibility with anyone who came to rely on it in v4.0.</li> <li>Accept and ignore <code>-rf</code> and <code>-fr</code> arguments to the bin.</li> </ul> <h1>v4.0</h1> <ul> <li>Remove <code>glob</code> dependency entirely. This library now only accepts actual file and folder names to delete.</li> <li>Accept array of paths or single path.</li> <li>Windows performance and reliability improved.</li> <li>All strategies separated into explicitly exported methods.</li> <li>Drop support for Node.js below version 14</li> <li>rewrite in TypeScript</li> <li>ship CJS/ESM hybrid module</li> <li>Error on unknown arguments to the bin. (Previously they were silently ignored.)</li> </ul> <h1>v3.0</h1> <ul> <li>Add <code>--preserve-root</code> option to executable (default true)</li> <li>Drop support for Node.js below version 6</li> </ul> <h1>v2.7</h1> <ul> <li>Make <code>glob</code> an optional dependency</li> </ul> <h1>2.6</h1> <ul> <li>Retry on EBUSY on non-windows platforms as well</li> <li>Make <code>rimraf.sync</code> 10000% more reliable on Windows</li> </ul> <h1>2.5</h1> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/isaacs/rimraf/commit/f923bb054cad6a63e7816eca8247a50b13d10d07"><code>f923bb0</code></a> 4.3.0</li> <li><a href="https://github.com/isaacs/rimraf/commit/ed7b2a6cd04272a7a84564996c181b5f22e9bdb9"><code>ed7b2a6</code></a> test: chmod ordering is nondeterministic</li> <li><a href="https://github.com/isaacs/rimraf/commit/4cb1d4758f72a153e5a8b1248f8499cc2b99a920"><code>4cb1d47</code></a> changelog about bin interactivity</li> <li><a href="https://github.com/isaacs/rimraf/commit/95e13f2d78b43d97166fe2e1cb156445cc38f121"><code>95e13f2</code></a> try to make the interactive test less flaky</li> <li><a href="https://github.com/isaacs/rimraf/commit/38e731f6dd01bdd8601c0281133526c011f75392"><code>38e731f</code></a> bin: add interactive mode</li> <li><a href="https://github.com/isaacs/rimraf/commit/ca28abba63ad69df1666f55fad40520ef68e57cf"><code>ca28abb</code></a> let the filter option be async for async methods</li> <li><a href="https://github.com/isaacs/rimraf/commit/3b57687ac28c7feee2caae455fb52d1b55e39f92"><code>3b57687</code></a> add --verbose, --no-verbose to bin</li> <li><a href="https://github.com/isaacs/rimraf/commit/ed3288ed31291b3fe82cba3e16ccbb552ad64f7a"><code>ed3288e</code></a> add filter option</li> <li><a href="https://github.com/isaacs/rimraf/commit/e828fe24bc96c547a56ef442b80e75bb4532b8ef"><code>e828fe2</code></a> Update v4 glob support in README</li> <li><a href="https://github.com/isaacs/rimraf/commit/80aef8b8a1f49a68c7fc8db3cb8d281ecf2bdfaf"><code>80aef8b</code></a> 4.2.0</li> <li>Additional commits viewable in <a href="https://github.com/isaacs/rimraf/compare/v4.1.3...v4.3.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=rimraf&package-manager=npm_and_yarn&previous-version=4.1.3&new-version=4.3.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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) </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2025-11-06 12:13:58 -06:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/awesome-docker#1065