Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Feb 2, 2026

This PR contains the following updates:

Package Change Age Confidence
cpy 12.1.013.0.0 age confidence

Release Notes

sindresorhus/cpy (cpy)

v13.0.0

Compare Source

Breaking
  • Dotfiles are no longer included by default. Globs now respect the dot option (default false), so files like .hidden are skipped unless explicitly included.
    • If you relied on dotfiles being copied implicitly, either:
      1. Pass dot: true, or
      2. Add explicit dotfile patterns (for example .hidden or **/.hidden).
  • Add rename source/destination objects 3207310
    • The old single parameter rename function still works, but it will be removed in the next major version, so I recommend migrating.
    • The new two-argument form lets you safely mutate the destination while keeping it within the destination directory.
      • Old:
      await cpy("foo.js", "destination", {
      	rename(basename) {
      		return basename.replace("foo", "bar");
      	}
      });
      • New:
      await cpy("foo.js", "destination", {
      	rename(source, destination) {
      		if (source.nameWithoutExtension === "foo") {
      			destination.nameWithoutExtension = "bar";
      		}
      		// destination.name, destination.extension, or destination.path can be updated here
      	}
      });
Improvements
  • Add dryRun option 247cb9e
  • Add base option for path resolution 28175cb


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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 added the dependencies Pull requests that update a dependency file label Feb 2, 2026
@changeset-bot
Copy link

changeset-bot bot commented Feb 2, 2026

⚠️ No Changeset found

Latest commit: 9a3718e

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@netlify
Copy link

netlify bot commented Feb 2, 2026

Deploy Preview for react-docgen ready!

Name Link
🔨 Latest commit 9a3718e
🔍 Latest deploy log https://app.netlify.com/projects/react-docgen/deploys/698071af0ec46c00081d9963
😎 Deploy Preview https://deploy-preview-1060--react-docgen.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants