chore: update minimatch js package to 10.2.4#2314
Conversation
|
Warning You have reached your daily quota limit. Please wait up to 24 hours and I will start processing your requests again! |
There was a problem hiding this comment.
Pull request overview
Updates the minimatch dependency version used by the Playwright E2E test package via npm overrides, and refreshes the lockfile to match.
Changes:
- Bumps the npm
overridesentry forminimatchto^10.2.4. - Updates
package-lock.jsonto resolveminimatch@10.2.4(including updated tarball integrity/metadata).
Reviewed changes
Copilot reviewed 1 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| tests/wp-e2e-playwright/package.json | Updates minimatch override to target newer 10.2.4 release. |
| tests/wp-e2e-playwright/package-lock.json | Locks minimatch resolution to 10.2.4 with updated package metadata. |
Files not reviewed (1)
- tests/wp-e2e-playwright/package-lock.json: Language not supported
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| "overrides": { | ||
| "webpack-dev-server": "5.2.1", | ||
| "minimatch": "10.2.1", | ||
| "minimatch": "^10.2.4", |
There was a problem hiding this comment.
In the overrides block, every other dependency is pinned to an exact version, but minimatch is now a semver range (^10.2.4). Using a range here makes installs less deterministic when the lockfile is regenerated and weakens the intent of an override (pinning a transitive dependency to a specific known-good version). Consider pinning minimatch to an exact version (e.g., 10.2.4) to match the rest of this file, unless there’s a specific reason to allow automatic minor updates.
| "minimatch": "^10.2.4", | |
| "minimatch": "10.2.4", |
|
Resolved by #2313 |
This PR updates
minimatchjs package to^10.2.4using overrides.