Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency fast-glob to v3.3.1 #15001

Merged
merged 4 commits into from Aug 28, 2023
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 2, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
fast-glob 3.2.12 -> 3.3.1 age adoption passing confidence

Release Notes

mrmlnc/fast-glob (fast-glob)

v3.3.1

Compare Source

Full Changelog: mrmlnc/fast-glob@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

Compare Source

Full Changelog: mrmlnc/fast-glob@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 baseNameMatch option 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 micromatch package does not correctly generate a regular expression (#​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)
  • 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)

📖 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


Configuration

📅 Schedule: Branch creation - "after 01:00 on sunday" (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.

🔕 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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot added the dependency Dependency Upgrade label Jul 2, 2023
@github-actions
Copy link

github-actions bot commented Jul 2, 2023

Size Change: +2.73 kB (0%)

Total Size: 8.48 MB

Filename Size Change
./dist/index.mjs 719 kB +2.68 kB (0%)
./dist/internal/cli.mjs 230 kB +52 B (0%)
./dist/LICENSE 244 kB -1 B (0%)
ℹ️ View Unchanged
Filename Size
./dist/bin 4.1 kB
./dist/bin/prettier.cjs 2.14 kB
./dist/doc.d.ts 6.91 kB
./dist/doc.js 51 kB
./dist/doc.mjs 47.3 kB
./dist/index.cjs 33.5 kB
./dist/index.d.ts 26.4 kB
./dist/internal 4.1 kB
./dist/internal/internal.mjs 232 kB
./dist/package.json 6.21 kB
./dist/plugins 4.1 kB
./dist/plugins/acorn.d.ts 109 B
./dist/plugins/acorn.js 150 kB
./dist/plugins/acorn.mjs 149 kB
./dist/plugins/angular.d.ts 177 B
./dist/plugins/angular.js 42.8 kB
./dist/plugins/angular.mjs 42.1 kB
./dist/plugins/babel.d.ts 402 B
./dist/plugins/babel.js 311 kB
./dist/plugins/babel.mjs 311 kB
./dist/plugins/estree.d.ts 11 B
./dist/plugins/estree.js 185 kB
./dist/plugins/estree.mjs 184 kB
./dist/plugins/flow.d.ts 90 B
./dist/plugins/flow.js 680 kB
./dist/plugins/flow.mjs 680 kB
./dist/plugins/glimmer.d.ts 93 B
./dist/plugins/glimmer.js 133 kB
./dist/plugins/glimmer.mjs 132 kB
./dist/plugins/graphql.d.ts 93 B
./dist/plugins/graphql.js 43.7 kB
./dist/plugins/graphql.mjs 43 kB
./dist/plugins/html.d.ts 139 B
./dist/plugins/html.js 138 kB
./dist/plugins/html.mjs 138 kB
./dist/plugins/markdown.d.ts 127 B
./dist/plugins/markdown.js 148 kB
./dist/plugins/markdown.mjs 147 kB
./dist/plugins/meriyah.d.ts 93 B
./dist/plugins/meriyah.js 120 kB
./dist/plugins/meriyah.mjs 120 kB
./dist/plugins/postcss.d.ts 121 B
./dist/plugins/postcss.js 153 kB
./dist/plugins/postcss.mjs 153 kB
./dist/plugins/typescript.d.ts 96 B
./dist/plugins/typescript.js 1.14 MB
./dist/plugins/typescript.mjs 1.14 MB
./dist/plugins/yaml.d.ts 90 B
./dist/plugins/yaml.js 122 kB
./dist/plugins/yaml.mjs 121 kB
./dist/README.md 4.03 kB
./dist/standalone.d.ts 1.42 kB
./dist/standalone.js 73.7 kB
./dist/standalone.mjs 73.5 kB

compressed-size-action

@renovate renovate bot force-pushed the renovate/fast-glob-3.x branch 2 times, most recently from a7dc192 to e76c4ce Compare July 4, 2023 05:54
@renovate renovate bot changed the title chore(deps): update dependency fast-glob to v3.3.0 chore(deps): update dependency fast-glob to v3.3.1 Jul 22, 2023
@renovate renovate bot force-pushed the renovate/fast-glob-3.x branch 2 times, most recently from 066abc6 to e27c645 Compare August 14, 2023 01:39
@adaptly-bot

This comment was marked as spam.

@fisker
Copy link
Member

fisker commented Aug 28, 2023

mrmlnc/fast-glob#422

@fisker fisker mentioned this pull request Aug 28, 2023
4 tasks
@renovate
Copy link
Contributor Author

renovate bot commented Aug 28, 2023

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

Warning: custom changes will be lost.

@fisker fisker merged commit d059644 into main Aug 28, 2023
31 checks passed
@fisker fisker deleted the renovate/fast-glob-3.x branch August 28, 2023 14:05
medikoo pushed a commit to medikoo/prettier-elastic that referenced this pull request Feb 15, 2024
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: fisker <lionkay@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependency Dependency Upgrade
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants