gagoar / use-herald-action

GitHub action to add reviewers, subscribers, labels, and assignees to your PR. You can validate your PR template as well.
https://gagoar.github.io/use-herald-action/
MIT License
53 stars 7 forks source link

Update dependency fast-glob to v3.2.7 #456

Closed renovate[bot] closed 2 years ago

renovate[bot] commented 2 years ago

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
fast-glob 3.2.5 -> 3.2.7 age adoption passing confidence

Release Notes

mrmlnc/fast-glob ### [`v3.2.7`](https://togithub.com/mrmlnc/fast-glob/releases/3.2.7) [Compare Source](https://togithub.com/mrmlnc/fast-glob/compare/3.2.6...3.2.7) #### πŸ› Bug fixes The previous release ([`3.2.6`](https://togithub.com/mrmlnc/fast-glob/releases/tag/3.2.6)) introduced a regression, thanks to which negative patterns were not applied to patterns outside the current directory. This release fixes the issue. ### [`v3.2.6`](https://togithub.com/mrmlnc/fast-glob/releases/3.2.6) [Compare Source](https://togithub.com/mrmlnc/fast-glob/compare/3.2.5...3.2.6) #### πŸ› Bug fixes - Now you can use patterns related to the parent directory along with the regular ones. ([#​310](https://togithub.com/mrmlnc/fast-glob/issues/310), [#​316](https://togithub.com/mrmlnc/fast-glob/issues/316)) ```js // Patterns inside current directory β†’ ['*', './*.js'] // Patterns outside current directory β†’ ['../*', './../*.js'] // Previously you could specify a patterns outside current directory. fg.sync(['../*.txt']) β†’ ['../file.txt'] // But when the pattern inside current directory was added to them, the behavior broke down. fg.sync(['*.md', '../*.txt']) β†’ ['file.md'] // The '../file.txt' file exists // After this fix you can mix both kinds of patterns. fg.sync(['*.md', '../*.txt']) β†’ ['file.md', '../file.txt'] // Right now we do not support patterns like '{.,..}/*.md'. ``` #### πŸ“– Documentation - Added clarifications for the `followSymbolicLinks` option. #### βš™οΈ Infrastructure - The `glob-parent` package has been updated to fix vulnerabilities. ([#​304](https://togithub.com/mrmlnc/fast-glob/issues/304)) - The `micromatch` package has been updated to eliminate dependency on the `picomatch` package from this package. ([#​256](https://togithub.com/mrmlnc/fast-glob/issues/256)) - Node.js 16 has been added to the CI configuration to run tests and benchmarks. Now benchmarks will run only on this version. ([#​311](https://togithub.com/mrmlnc/fast-glob/issues/311)) - The `tiny-glob` package has been added to the synchronous product benchmarks. ([#​323](https://togithub.com/mrmlnc/fast-glob/issues/323)) - The `fdir` package has been added to synchronous and asynchronous product benchmarks. The latest [launch](https://togithub.com/mrmlnc/fast-glob/actions/runs/976394835). ([#​322](https://togithub.com/mrmlnc/fast-glob/issues/322)) - The `.npmignore` file has been replaced by the `files` field in the `package.json` file. ([#​321](https://togithub.com/mrmlnc/fast-glob/issues/321))

Configuration

πŸ“… Schedule: At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

β™» Rebasing: Renovate will not automatically rebase this PR, because other commits have been found.

πŸ”• Ignore: Close this PR and you won't be reminded about this update again.



This PR has been generated by WhiteSource Renovate. View repository job log here.

codecov[bot] commented 2 years ago

Codecov Report

Merging #456 (31965d7) into master (7d90b61) will not change coverage. The diff coverage is n/a.

Impacted file tree graph

@@            Coverage Diff            @@
##            master      #456   +/-   ##
=========================================
  Coverage   100.00%   100.00%           
=========================================
  Files            8         8           
  Lines          342       342           
  Branches        35        35           
=========================================
  Hits           342       342           
Flag Coverage Ξ”
unittests 100.00% <ΓΈ> (ΓΈ)

Flags with carried forward coverage won't be shown. Click here to find out more.


Continue to review full report at Codecov.

Legend - Click here to learn more Ξ” = absolute <relative> (impact), ΓΈ = not affected, ? = missing data Powered by Codecov. Last update 7d90b61...31965d7. Read the comment docs.