autocomplete-paths
autocomplete-paths copied to clipboard
fix(deps): update dependencies
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| chokidar | 3.5.2 -> 3.5.3 |
||||
| fast-glob | 3.2.7 -> 3.3.1 |
||||
| globify-gitignore | ^0.2.1 -> ^1.0.0 |
||||
| slash | ^4.0.0 -> ^5.0.0 |
||||
| underscore (source) | 1.13.1 -> 1.13.6 |
Release Notes
paulmillr/chokidar (chokidar)
v3.5.3
What's Changed
- types: use correct type def for ignored option by @iheyunfei in https://github.com/paulmillr/chokidar/pull/1140
- Update chokidar-cli link in README.md by @mcecode in https://github.com/paulmillr/chokidar/pull/1142
- handle promise rejection when a symlink's target does not exist. Fixe… by @nicks in https://github.com/paulmillr/chokidar/pull/1010
- fix: improve
addandunwatchTypeScript definitions by @alan-agius4 in https://github.com/paulmillr/chokidar/pull/1157 - Enable dtslinting by @alan-agius4 in https://github.com/paulmillr/chokidar/pull/1158
- style: delete yarn.lock by @alan-agius4 in https://github.com/paulmillr/chokidar/pull/1159
New Contributors
- @iheyunfei made their first contribution in https://github.com/paulmillr/chokidar/pull/1140
- @mcecode made their first contribution in https://github.com/paulmillr/chokidar/pull/1142
- @nicks made their first contribution in https://github.com/paulmillr/chokidar/pull/1010
- @alan-agius4 made their first contribution in https://github.com/paulmillr/chokidar/pull/1157
Full Changelog: https://github.com/paulmillr/chokidar/compare/3.5.2...3.5.3
mrmlnc/fast-glob (fast-glob)
v3.3.1
Full Changelog: https://github.com/mrmlnc/fast-glob/compare/3.3.0...3.3.1
This release fixes a regression for cases where the ignore option is used with a string (#403, #404).
The public interface of this package does not support a string as the value for the ignore option since 2018 year (release).
So, in the next major release, we will reintroduce method implementations that do not involve strings in the ignore option.
v3.3.0
Full Changelog: https://github.com/mrmlnc/fast-glob/compare/3.2.12...3.3.0
🚀 Improvements
Method aliases
New methods (glob, globSync, globStream) have been added in addition to the current methods (default import, sync, stream), which eliminate the need to rename the method when importing. In addition, an async alias has been added for the default import, which makes it possible to use this packet with ESM.
Method to convert paths to globs
A new method (convertPathToPattern) has been added in this release to convert a path to a pattern. The primary goal is to enable users to avoid processing Windows paths in each location where this package is used by utilities from third-party packages.
See more details in the pull request.
🐛 Bug fixes
- In the past, we mishandled patterns that contained slashes when the
baseNameMatchoption was enabled, which went against the documented behavior. (#312) - Several problems with matching patterns that contain brace expansion have been resolved. The primary issue solved is when the pattern has duplicate slashes after it is expanded (#394), or the
micromatchpackage does not correctly generate a regular expression (#365). - All negative patterns will now have the
dotoption enabled when matching paths. Previously, the!**/*patterns did not exclude hidden files (start with a dot). (#343) - The issue that led to duplicates in the results when overlapping or duplicate patterns were present among the patterns has been fixed. At the moment, we are only talking about leading dot. Other cases are not included. For example, running with the patterns
['./file.md', 'file.md', '*']will now only includefile.mdonce in the results. (#190)
📖 Documentation
A clarifying note has been added for the concurrency option, which provides more detailed information about the Thread Pool utilization.
⚙️ Infrastructure
- The benchmark in CI is now running on Node.js 20.
- The benchmark now uses the public package bencho instead of an in-house implementation. You may want to try this solution for your packages and provide feedback.
🥇 New Contributors
- @josh-hemphill made their first contribution in https://github.com/mrmlnc/fast-glob/pull/383
- @mairaw made their first contribution in https://github.com/mrmlnc/fast-glob/pull/401
v3.2.12
Full Changelog: https://github.com/mrmlnc/fast-glob/compare/3.2.11...3.2.12
🐛 Bug fixes
Fixed an issue introduced in 3.2.7 related to incorrect application of patterns to entries with a trailing slash when the entry is not a directory.
Before changes:
fg.sync('**/!(*.md)')
// ['file.md', 'a/file.md', 'a/file.txt']
After fix:
fg.sync('**/!(*.md)')
// ['a/file.txt']
Thanks @AgentEnder for the issue (#357).
🚀 Improvements
This release includes performance improvements for the asynchronous method. For this method we now use an asynchronous directory traversal interface instead of using a streaming interface. This gives up to 15% acceleration for medium and large directories. The result depends a lot on hardware.
You can find the benchmark results for this release in CI here.
Here are a few of measurements on my laptop:
===> Benchmark pattern "*" with 100 launches (regression, async)
===> Max stdev: 7 | Retries: 3 | Options: {}
Name Time, ms Time stdev, % Memory, MB Memory stdev, % Entries Errors Retries
--------------------- -------- ------------- ---------- --------------- ------- ------ -------
fast-glob-current.js 4.390 0.252 6.253 0.015 4 0 1
fast-glob-previous.js 5.653 0.633 6.051 0.056 4 0 1
===> Benchmark pattern "**" with 100 launches (regression, async)
===> Max stdev: 7 | Retries: 3 | Options: {}
Name Time, ms Time stdev, % Memory, MB Memory stdev, % Entries Errors Retries
--------------------- -------- ------------- ---------- --------------- ------- ------ -------
fast-glob-current.js 34.587 1.287 10.654 0.607 11835 0 1
fast-glob-previous.js 41.972 2.086 10.236 1.224 11835 0 1
v3.2.11
Full Changelog: https://github.com/mrmlnc/fast-glob/compare/3.2.10...3.2.11
🐛 Bug fixes
Yeap, this is another release aimed at fixing problems with detecting brace expansions in patterns. This time, patterns like abc/{a.txt,b.js} was not marked as a dynamic pattern. So, now the regex has been rewritten to a generalized solution as a function to avoid future problems due to the complexity of the regular expression.
Thanks @MurzNN for the report of this problem (#351).
v3.2.10
Full Changelog: https://github.com/mrmlnc/fast-glob/compare/3.2.9...3.2.10
🐛 Bug fixes
- Fixed a regression in
3.2.8when the{a,b,c}pattern no longer considered a dynamic pattern (thanks @amitdahan, #347).
🥇 New Contributors
- @amitdahan made their first contribution in https://github.com/mrmlnc/fast-glob/pull/348
v3.2.9
Full Changelog: https://github.com/mrmlnc/fast-glob/compare/3.2.8...3.2.9
🐛 Bug fixes
- Fixed a regression in
3.2.8with invalid regular expression on older node.js versions (#345).
v3.2.8
Full Changelog: https://github.com/mrmlnc/fast-glob/compare/3.2.7...3.2.8
🐛 Bug fixes
Fix directory matching with trailing slashes (#290)
Thanks @Trott for investigating the problem and the detailed description.
Previously the src/*/ pattern did not work as expected (like src/*).
Double-slash in the middle of the pattern is not collapsed (#330)
Starting from this release, patterns like src//* will work like similar patterns without duplicate slashes. This was done for continuity with other solutions (glob, ls src//*, python, golang, …).
Adjust inefficient regular expressions (#336, #342, #344)
Thanks @Trott for fixing bugs and @XhmikosR for adding the CodeQL action to CI pipeline.
📖 Documentation
- Some documentation improvements (#327, thanks @MarcelloTheArcane).
⚙️ Infrastructure
- The CodeQL action has been added to CI pipeline (#338, thanks @XhmikosR).
🥇 New Contributors
- @MarcelloTheArcane made their first contribution in https://github.com/mrmlnc/fast-glob/pull/327
- @Trott made their first contribution in https://github.com/mrmlnc/fast-glob/pull/336
- @XhmikosR made their first contribution in https://github.com/mrmlnc/fast-glob/pull/338
aminya/globify-gitignore (globify-gitignore)
v1.0.3
Full Changelog: https://github.com/aminya/globify-gitignore/compare/v1.0.2...v1.0.3
v1.0.2
Full Changelog: https://github.com/aminya/globify-gitignore/compare/v1.0.1...v1.0.2
v1.0.1
Full Changelog: https://github.com/aminya/globify-gitignore/compare/v1.0.0...v1.0.1
v1.0.0
What's Changed
- feat: return an object to indicate inclusion + use relative globs by @aminya in https://github.com/aminya/globify-gitignore/pull/1
Breaking Changes
-
the return is now an object. The glob patterns are included in the
globproperty. Theincludedproperty shows if the file is an inclusion or an exclusion. -
the result is now relative by default. Use the
absoluteparameter to make the patterns absolute
New Contributors
- @aminya made their first contribution in https://github.com/aminya/globify-gitignore/pull/1
Full Changelog: https://github.com/aminya/globify-gitignore/compare/v0.2.1...v1.0.0
Configuration
📅 Schedule: Branch creation - "every weekend" (UTC), 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.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
- [ ] If you want to rebase/retry this PR, check this box
This PR has been generated by Mend Renovate. View repository job log here.
Breaking change: backslashes are no longer considered path separators.
We should make sure this is not a problem before merging this.