You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 6, 2026. It is now read-only.
This is a very large major version upgrade from v3 to v10, introducing significant breaking changes. Thorough testing is required before merging.
Key Breaking Changes:
ESM Module Syntax: Starting with v10, minimatch or its dependencies have transitioned to pure ESM. This will break any project that uses require('minimatch'). You will need to update your code to use import statements. An issue was reported for v10.0.2 causing ERR_REQUIRE_ESM errors due to this change. [2]
Dropped Node.js Support: Version 10 drops support for Node.js 18. [10] Support for other older, end-of-life Node.js versions was likely dropped in intermediate major versions.
Import/Export Changes (pre-v10): Even before the full ESM transition, changes to the module's exports occurred around v6 that required some TypeScript users to change their import statements from import minimatch from 'minimatch' to import minimatch = require('minimatch'). [11]
Behavioral Changes: The handling of backslashes on Windows platforms has changed since v3. [14] Additionally, new features like POSIX character classes have been added which may alter matching behavior in edge cases. [18]
Recommendation: This upgrade requires significant developer action. Prioritize updating module import statements from require() to import. Verify your project's Node.js version is compatible (>= Node 20). Due to the large version gap and lack of a single comprehensive changelog, extensive testing of all globbing functionality is critical to ensure patterns still match as expected.
Notice 🤖: This content was augmented using artificial intelligence. AI-generated content may contain errors and should be reviewed for accuracy before use.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Snyk has created this PR to fix 1 vulnerabilities in the npm dependencies of this project.
Snyk changed the following file(s):
packages/aura-language-server/src/tern/package.jsonVulnerabilities that will be fixed with an upgrade:
SNYK-JS-MINIMATCH-15309438
Breaking Change Risk
Important
Note: You are seeing this because you or someone else with access to this repository has authorized Snyk to open fix PRs.
For more information:
🧐 View latest project report
📜 Customise PR templates
🛠 Adjust project settings
📚 Read about Snyk's upgrade logic
Learn how to fix vulnerabilities with free interactive lessons:
🦉 Regular Expression Denial of Service (ReDoS)