ampproject / bentojs.dev

Bento Website
Apache License 2.0
49 stars 9 forks source link

Update dependency fast-glob to v3.3.2 #190

Open renovate[bot] opened 1 year ago

renovate[bot] commented 1 year ago

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
fast-glob 3.2.11 -> 3.3.2 age adoption passing confidence

Release Notes

mrmlnc/fast-glob (fast-glob) ### [`v3.3.2`](https://togithub.com/mrmlnc/fast-glob/releases/tag/3.3.2) [Compare Source](https://togithub.com/mrmlnc/fast-glob/compare/3.3.1...3.3.2) > **Full Changelog**: https://github.com/mrmlnc/fast-glob/compare/3.3.1...3.3.2 #### šŸ› Bug fixes - Handle square brackets as a special character on Windows in escape functions ([#​425](https://togithub.com/mrmlnc/fast-glob/issues/425)) - Keep escaping after brace expansion ([#​422](https://togithub.com/mrmlnc/fast-glob/issues/422)) ### [`v3.3.1`](https://togithub.com/mrmlnc/fast-glob/releases/tag/3.3.1) [Compare Source](https://togithub.com/mrmlnc/fast-glob/compare/3.3.0...3.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](https://togithub.com/mrmlnc/fast-glob/issues/403), [#​404](https://togithub.com/mrmlnc/fast-glob/issues/404)). The public interface of this package does not support a string as the value for the [`ignore` option](https://togithub.com/mrmlnc/fast-glob#ignore) since 2018 year ([release](https://togithub.com/mrmlnc/fast-glob/releases/tag/2.0.0)). So, in the next major release, we will reintroduce method implementations that do not involve strings in the `ignore` option. ### [`v3.3.0`](https://togithub.com/mrmlnc/fast-glob/releases/tag/3.3.0) [Compare Source](https://togithub.com/mrmlnc/fast-glob/compare/3.2.12...3.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](https://togithub.com/mrmlnc/fast-glob/pull/392). #### šŸ› Bug fixes - In the past, we mishandled patterns that contained slashes when the `baseNameMatch` option was enabled, which went against the documented behavior. ([#​312](https://togithub.com/mrmlnc/fast-glob/issues/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](https://togithub.com/mrmlnc/fast-glob/issues/394)), or the `micromatch` package does not correctly generate a regular expression ([#​365](https://togithub.com/mrmlnc/fast-glob/issues/365)). - All negative patterns will now have the `dot` option enabled when matching paths. Previously, the `!**/*` patterns did not exclude hidden files (start with a dot). ([#​343](https://togithub.com/mrmlnc/fast-glob/issues/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 include `file.md` once in the results. ([#​190](https://togithub.com/mrmlnc/fast-glob/issues/190)) #### šŸ“– Documentation A [clarifying note](https://togithub.com/mrmlnc/fast-glob/blob/master/README.md#concurrency) 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](https://togithub.com/mrmlnc/bencho) instead of an in-house implementation. You may want to try this solution for your packages and provide feedback. #### šŸ„‡ New Contributors - [@​josh-hemphill](https://togithub.com/josh-hemphill) made their first contribution in [https://github.com/mrmlnc/fast-glob/pull/383](https://togithub.com/mrmlnc/fast-glob/pull/383) - [@​mairaw](https://togithub.com/mairaw) made their first contribution in [https://github.com/mrmlnc/fast-glob/pull/401](https://togithub.com/mrmlnc/fast-glob/pull/401) ### [`v3.2.12`](https://togithub.com/mrmlnc/fast-glob/releases/tag/3.2.12) [Compare Source](https://togithub.com/mrmlnc/fast-glob/compare/3.2.11...3.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: ```js fg.sync('**/!(*.md)') // ['file.md', 'a/file.md', 'a/file.txt'] ``` After fix: ```js fg.sync('**/!(*.md)') // ['a/file.txt'] ``` Thanks [@​AgentEnder](https://togithub.com/AgentEnder) for the issue ([#​357](https://togithub.com/mrmlnc/fast-glob/issues/357)). #### šŸš€ Improvements This release includes performance improvements for [the asynchronous method](https://togithub.com/mrmlnc/fast-glob#asynchronous). For this method we now use an [asynchronous directory traversal interface](https://togithub.com/nodelib/nodelib/tree/master/packages/fs/fs.walk#walkpath-optionsorsettings-callback) instead of using a [streaming interface](https://togithub.com/nodelib/nodelib/tree/master/packages/fs/fs.walk#walkstreampath-optionsorsettings). 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](https://togithub.com/mrmlnc/fast-glob/actions/runs/3020192816). Here are a few of measurements on my laptop: ```js ===> 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 ```

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.



This PR was generated by Mend Renovate. View the repository job log.