sharkdp/fd (sharkdp/fd)
### [`v10.1.0`](https://togithub.com/sharkdp/fd/releases/tag/v10.1.0)
[Compare Source](https://togithub.com/sharkdp/fd/compare/v10.0.0...v10.1.0)
##### Features
- Allow passing an optional argument to `--strip-cwd-prefix` of "always", "never", or "auto". to force whether the cwd prefix is stripped or not.
- Add a `--format` option which allows using a format template for direct ouput similar to the template used for `--exec`. ([#1043](https://togithub.com/sharkdp/fd/issues/1043))
##### Bugfixes
- Fix aarch64 page size again. This time it should actually work. ([#1085](https://togithub.com/sharkdp/fd/issues/1085), [#1549](https://togithub.com/sharkdp/fd/issues/1549)) ([@tavianator](https://togithub.com/tavianator))
##### Other
- aarch64-apple-darwin target added to builds on the release page. Note that this is a tier 2 rust target.
### [`v10.0.0`](https://togithub.com/sharkdp/fd/blob/HEAD/CHANGELOG.md#v1000)
[Compare Source](https://togithub.com/sharkdp/fd/compare/v9.0.0...v10.0.0)
#### Features
- Add `dir` as an alias to `directory` when using `-t` \ `--type`, see [#1460](https://togithub.com/sharkdp/fd/issues/1460) and [#1464](https://togithub.com/sharkdp/fd/issues/1464) ([@Ato2207](https://togithub.com/Ato2207)).
- Add support for @%s date format in time filters similar to GNU date (seconds since Unix epoch for --older/--newer), see [#1493](https://togithub.com/sharkdp/fd/issues/1493) ([@nabellows](https://togithub.com/nabellows))
- Breaking: No longer automatically ignore `.git` when using `--hidden` with vcs ignore enabled. This reverts the change in v9.0.0. While this feature
was often useful, it also broke some existing workflows, and there wasn't a good way to opt out of it. And there isn't really a good way for us to add
a way to opt out of it. And you can easily get similar behavior by adding `.git/` to your global fdignore file.
See [#1457](https://togithub.com/sharkdp/fd/issues/1457).
#### Bugfixes
- Respect NO_COLOR environment variable with `--list-details` option. ([#1455](https://togithub.com/sharkdp/fd/issues/1455))
- Fix bug that would cause hidden files to be included despite gitignore rules
if search path is "." ([#1461](https://togithub.com/sharkdp/fd/issues/1461), [BurntSushi/ripgrep#2711](https://togithub.com/BurntSushi/ripgrep/issues/2711)).
- aarch64 builds now use 64k page sizes with jemalloc. This fixes issues on some systems, such as ARM Macs that
have a larger system page size than the system that the binary was built on. ([#1547](https://togithub.com/sharkdp/fd/issues/1547))
- Address [CVE-2024-24576](https://blog.rust-lang.org/2024/04/09/cve-2024-24576.html), by increasing minimum rust version.
#### Changes
- Minimum supported rust version is now 1.77.2
### [`v9.0.0`](https://togithub.com/sharkdp/fd/blob/HEAD/CHANGELOG.md#v900)
[Compare Source](https://togithub.com/sharkdp/fd/compare/v8.7.1...v9.0.0)
#### Performance
- Performance has been *significantly improved*, both due to optimizations in the underlying `ignore`
crate ([#1429](https://togithub.com/sharkdp/fd/issues/1429)), and in `fd` itself ([#1422](https://togithub.com/sharkdp/fd/issues/1422), [#1408](https://togithub.com/sharkdp/fd/issues/1408), [#1362](https://togithub.com/sharkdp/fd/issues/1362)) - [@tavianator](https://togithub.com/tavianator).
[Benchmarks results](https://gist.github.com/tavianator/32edbe052f33ef60570cf5456b59de81) show gains
of 6-8x for full traversals of smaller directories (100k files) and up to 13x for larger directories (1M files).
- The default number of threads is now constrained to be at most 64. This should improve startup time on
systems with many CPU cores. ([#1203](https://togithub.com/sharkdp/fd/issues/1203), [#1410](https://togithub.com/sharkdp/fd/issues/1410), [#1412](https://togithub.com/sharkdp/fd/issues/1412), [#1431](https://togithub.com/sharkdp/fd/issues/1431)) - [@tmccombs](https://togithub.com/tmccombs) and [@tavianator](https://togithub.com/tavianator)
- New flushing behavior when writing output to stdout, providing better performance for TTY and non-TTY
use cases, see [#1452](https://togithub.com/sharkdp/fd/issues/1452) and [#1313](https://togithub.com/sharkdp/fd/issues/1313) ([@tavianator](https://togithub.com/tavianator)).
#### Features
- Support character and block device file types, see [#1213](https://togithub.com/sharkdp/fd/issues/1213) and [#1336](https://togithub.com/sharkdp/fd/issues/1336) ([@cgzones](https://togithub.com/cgzones))
- Breaking: `.git/` is now ignored by default when using `--hidden` / `-H`, use `--no-ignore` / `-I` or
`--no-ignore-vcs` to override, see [#1387](https://togithub.com/sharkdp/fd/issues/1387) and [#1396](https://togithub.com/sharkdp/fd/issues/1396) ([@skoriop](https://togithub.com/skoriop))
#### Bugfixes
- Fix `NO_COLOR` support, see [#1421](https://togithub.com/sharkdp/fd/issues/1421) ([@acuteenvy](https://togithub.com/acuteenvy))
#### Other
- Fixed documentation typos, see [#1409](https://togithub.com/sharkdp/fd/issues/1409) ([@marcospb19](https://togithub.com/marcospb19))
#### Thanks
Special thanks to [@tavianator](https://togithub.com/tavianator) for his incredible work on performance in the `ignore` crate and `fd` itself.
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ 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 contains the following updates:
8.7.1
->10.1.0
Release Notes
sharkdp/fd (sharkdp/fd)
### [`v10.1.0`](https://togithub.com/sharkdp/fd/releases/tag/v10.1.0) [Compare Source](https://togithub.com/sharkdp/fd/compare/v10.0.0...v10.1.0) ##### Features - Allow passing an optional argument to `--strip-cwd-prefix` of "always", "never", or "auto". to force whether the cwd prefix is stripped or not. - Add a `--format` option which allows using a format template for direct ouput similar to the template used for `--exec`. ([#1043](https://togithub.com/sharkdp/fd/issues/1043)) ##### Bugfixes - Fix aarch64 page size again. This time it should actually work. ([#1085](https://togithub.com/sharkdp/fd/issues/1085), [#1549](https://togithub.com/sharkdp/fd/issues/1549)) ([@tavianator](https://togithub.com/tavianator)) ##### Other - aarch64-apple-darwin target added to builds on the release page. Note that this is a tier 2 rust target. ### [`v10.0.0`](https://togithub.com/sharkdp/fd/blob/HEAD/CHANGELOG.md#v1000) [Compare Source](https://togithub.com/sharkdp/fd/compare/v9.0.0...v10.0.0) #### Features - Add `dir` as an alias to `directory` when using `-t` \ `--type`, see [#1460](https://togithub.com/sharkdp/fd/issues/1460) and [#1464](https://togithub.com/sharkdp/fd/issues/1464) ([@Ato2207](https://togithub.com/Ato2207)). - Add support for @%s date format in time filters similar to GNU date (seconds since Unix epoch for --older/--newer), see [#1493](https://togithub.com/sharkdp/fd/issues/1493) ([@nabellows](https://togithub.com/nabellows)) - Breaking: No longer automatically ignore `.git` when using `--hidden` with vcs ignore enabled. This reverts the change in v9.0.0. While this feature was often useful, it also broke some existing workflows, and there wasn't a good way to opt out of it. And there isn't really a good way for us to add a way to opt out of it. And you can easily get similar behavior by adding `.git/` to your global fdignore file. See [#1457](https://togithub.com/sharkdp/fd/issues/1457). #### Bugfixes - Respect NO_COLOR environment variable with `--list-details` option. ([#1455](https://togithub.com/sharkdp/fd/issues/1455)) - Fix bug that would cause hidden files to be included despite gitignore rules if search path is "." ([#1461](https://togithub.com/sharkdp/fd/issues/1461), [BurntSushi/ripgrep#2711](https://togithub.com/BurntSushi/ripgrep/issues/2711)). - aarch64 builds now use 64k page sizes with jemalloc. This fixes issues on some systems, such as ARM Macs that have a larger system page size than the system that the binary was built on. ([#1547](https://togithub.com/sharkdp/fd/issues/1547)) - Address [CVE-2024-24576](https://blog.rust-lang.org/2024/04/09/cve-2024-24576.html), by increasing minimum rust version. #### Changes - Minimum supported rust version is now 1.77.2 ### [`v9.0.0`](https://togithub.com/sharkdp/fd/blob/HEAD/CHANGELOG.md#v900) [Compare Source](https://togithub.com/sharkdp/fd/compare/v8.7.1...v9.0.0) #### Performance - Performance has been *significantly improved*, both due to optimizations in the underlying `ignore` crate ([#1429](https://togithub.com/sharkdp/fd/issues/1429)), and in `fd` itself ([#1422](https://togithub.com/sharkdp/fd/issues/1422), [#1408](https://togithub.com/sharkdp/fd/issues/1408), [#1362](https://togithub.com/sharkdp/fd/issues/1362)) - [@tavianator](https://togithub.com/tavianator). [Benchmarks results](https://gist.github.com/tavianator/32edbe052f33ef60570cf5456b59de81) show gains of 6-8x for full traversals of smaller directories (100k files) and up to 13x for larger directories (1M files). - The default number of threads is now constrained to be at most 64. This should improve startup time on systems with many CPU cores. ([#1203](https://togithub.com/sharkdp/fd/issues/1203), [#1410](https://togithub.com/sharkdp/fd/issues/1410), [#1412](https://togithub.com/sharkdp/fd/issues/1412), [#1431](https://togithub.com/sharkdp/fd/issues/1431)) - [@tmccombs](https://togithub.com/tmccombs) and [@tavianator](https://togithub.com/tavianator) - New flushing behavior when writing output to stdout, providing better performance for TTY and non-TTY use cases, see [#1452](https://togithub.com/sharkdp/fd/issues/1452) and [#1313](https://togithub.com/sharkdp/fd/issues/1313) ([@tavianator](https://togithub.com/tavianator)). #### Features - Support character and block device file types, see [#1213](https://togithub.com/sharkdp/fd/issues/1213) and [#1336](https://togithub.com/sharkdp/fd/issues/1336) ([@cgzones](https://togithub.com/cgzones)) - Breaking: `.git/` is now ignored by default when using `--hidden` / `-H`, use `--no-ignore` / `-I` or `--no-ignore-vcs` to override, see [#1387](https://togithub.com/sharkdp/fd/issues/1387) and [#1396](https://togithub.com/sharkdp/fd/issues/1396) ([@skoriop](https://togithub.com/skoriop)) #### Bugfixes - Fix `NO_COLOR` support, see [#1421](https://togithub.com/sharkdp/fd/issues/1421) ([@acuteenvy](https://togithub.com/acuteenvy)) #### Other - Fixed documentation typos, see [#1409](https://togithub.com/sharkdp/fd/issues/1409) ([@marcospb19](https://togithub.com/marcospb19)) #### Thanks Special thanks to [@tavianator](https://togithub.com/tavianator) for his incredible work on performance in the `ignore` crate and `fd` itself.Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ 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 has been generated by Renovate Bot.