Version: 10.2.0-bp160.1.14
* Sun Sep 01 2024 Sebastian Wagner <sebix@sebix.at>
- _service: use manual instead of disabled as suggested by osc
* Fri Aug 23 2024 sebix@sebix.at
- Update to version 10.2.0:
* Bump dependencies
* Prepare for 10.2.0 release
* docs: documentation link of regular expressions to the latest version
* build(deps): bump clap from 4.5.8 to 4.5.13
* build(deps): bump clap_complete from 4.5.7 to 4.5.8
* build(deps): bump nu-ansi-term from 0.50.0 to 0.50.1
* build(deps): bump version_check from 0.9.4 to 0.9.5
* Fix unused config struct field on Windows
* Fix unused OnceLock import lint on Windows
* Fix Conflicts syntax
* Create fdfind symlinks in deb package
* Refactor creating deb package into separate script
* Note executable name in release debs
* build(deps): bump clap_complete from 4.5.2 to 4.5.7
* build(deps): bump regex from 1.10.4 to 1.10.5
* build(deps): bump regex-syntax from 0.8.3 to 0.8.4
* build(deps): bump clap from 4.5.4 to 4.5.8
* build(deps): bump lscolors from 0.17.0 to 0.18.0
* Fix percent encoding
* docs: Add flox install
* Continue supporting windows 7 with builds
* Update OS versions for github actions
* Change --hyperlink to be an option instead of a flag
* Fix test on windows
* Fix unicode encoding of hyperlinks
* Add hyperlink support to fd
* build(deps): bump libc from 0.2.154 to 0.2.155
* build(deps): bump crossbeam-channel from 0.5.12 to 0.5.13
* build(deps): bump nix from 0.28.0 to 0.29.0
* build(deps): bump anyhow from 1.0.82 to 1.0.86
* Update sponsors.md
* Remove sponsorship message
* Wed May 08 2024 Michael Vetter <mvetter@suse.com>
- Update to version 10.1.0:
* Add --format to help in README
* Prepare for 10.1.0 release
* Implement option for printing custom formats
* docs: Make auto option for --strip-cwd-prefix more clear
* feat: Add option to always include cwd prefix
* Add upcoming to changelog
* Attempt to add aarch64 osx build to CI
* Fix #1085 for real
* Tue May 07 2024 pallaswept@proton.me
- Update to version 10.0.0:
* Prepare for 10.0.0 release
* Add @timestamp to --help
* Add script to automate some of release process.
* ci: Support large page sizes on AArch64
* build(deps): bump libc from 0.2.153 to 0.2.154
* build(deps): bump chrono from 0.4.37 to 0.4.38
* build(deps): bump nix from 0.27.1 to 0.28.0
* Fix typo in CHANGELOG
* Add test for gitignore workaround
* Workaround for bug with gitinored files
* Remove unnecessary sudo in front of commands
* Stop ignore .git folders by default
* filesystem: Remove a redundant as_str()
* Fix deprecation warning.
* Add clippy using latest rust version to CI
* Use 'MAIN_SEPARATOR_STR' instead of '&MAIN_SEPARATOR.to_string()'
* Update MSRV to 1.77.2
* build(deps): bump crossbeam-channel from 0.5.11 to 0.5.12
* build(deps): bump lscolors from 0.16.0 to 0.17.0
* build(deps): bump aho-corasick from 1.1.2 to 1.1.3
* Set default path separator to '/' in MSYS/MSYS2
* refactor: Optimize code based on cargo clippy suggestions
* build(deps): bump softprops/action-gh-release from 1 to 2
* Clean up clippy warnings
* build(deps): bump chrono from 0.4.31 to 0.4.34
* build(deps): bump tempfile from 3.9.0 to 3.10.1
* build(deps): bump libc from 0.2.151 to 0.2.153
* Run formatting
* Add support for @%s time format
* Add installation instructions for more Linux distributions in README
* More whitespace
* Add Terminal Trove sponsorship
* build(deps): bump nu-ansi-term from 0.49.0 to 0.50.0
* build(deps): bump ignore from 0.4.21 to 0.4.22
* build(deps): bump clap_complete from 4.4.6 to 4.4.9
* build(deps): bump crossbeam-channel from 0.5.10 to 0.5.11
* build(deps): bump regex from 1.10.2 to 1.10.3
* Makefile: use `--locked` for build
* Add target aarch64-unknown-linux-musl
* Update clap version
* build(deps): bump tempfile from 3.8.1 to 3.9.0
* build(deps): bump crossbeam-channel from 0.5.8 to 0.5.10
* build(deps): bump filetime from 0.2.22 to 0.2.23
* build(deps): bump clap_complete from 4.4.4 to 4.4.5
* build(deps): bump libc from 0.2.150 to 0.2.151
* Updated CHANGELOG.md, man page and made alias visible in fd -h too
* Added explicit documentation about the possibility of using dir
* Added alias --type dir
* Format notes in Readme
* Fixes typo in README
* fix: Respect NO_COLOR with --list-details option
* CHANGELOG: Fix issue number typo
* Update troubleshooting section
* Update license information
* Add new unreleased section
- Add rust.patch:
* Decrease rust version dependency from 1.77.2 to 1.77.0.
The later version is required to fix a problem specific to Windows and is not
presently available to build in Factory
* Sat Dec 23 2023 Sebastian Wagner <sebix@sebix.at>
- require rust >= 1.70.0 for clap_lex dependency
* Tue Dec 19 2023 mvetter@suse.com
- Update to version 9.0.0:
Performance:
* Performance has been significantly improved, both due to optimizations
in the underlying ignore crate (#1429), and in fd itself (#1422, #1408, #13620).
Benchmarks results 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, #1410, #1412, #1431)
* New flushing behavior when writing output to stdout, providing better performance
for TTY and non-TTY use cases, see #1452 and #1313.
Features:
* Support character and block device file types, see #1213 and #1336
* Breaking: .git/ is now ignored by default when using --hidden / -H, use --no-ignore
/ -I or --no-ignore-vcs to override, see #1387 and #1396
Bugfixes:
* Fix NO_COLOR support, see #1421
Other:
* Fixed documentation typos, see #1409
* Sat Oct 21 2023 mvetter@suse.com
- Update to version 8.7.1:
* -1 properly conflicts with the exec family of options.
* --max-results overrides -1
* --quiet properly conflicts with the exec family of options. This
used to be the case, but broke during the switch to clap-derive
* --changed-within now accepts a space as well as a "T" as the
separator between date and time (due to update of chrono dependency)
* Many dependencies were updated
* Some documentation was updated and fixed
* Wed Nov 02 2022 sebix@sebix.at
- Update to version 8.5.0:
- Features
- --type executable/-t now works on Windows, see #1051 and #1061
- Bugfixes
- Fixed differences between piped / non-piped output. This changes fds behavior back to what we
- had before 8.3.0, i.e. there will be no leading ./ prefixes, unless --exec/-x,
- --exec-batch/-X, or --print0/-0 are used. --strip-cwd-prefix can be used to strip that
- prefix in those cases. See #1046, #1115, and #1121
- fd could previously crash with a panic due to a race condition in Rusts standard library
- (see rust-lang/rust#39364). This has been fixed by switching to a different
- message passing implementation, see #1060 and #1146
- fds memory usage will not grow unboundedly on huge directory trees, see #1146
- fd returns an error when current working directory does not exist while a search path is
- specified, see #1072
- Improved "command not found" error message, see #1083 and #1109
- Preserve command exit codes when using --exec-batch, see #1136 and #1137
- Changes
- No leading ./ prefix for non-interactive results, see above.
- fd now colorizes paths in parallel, significantly improving performance, see #1148
- fd can now avoid stat syscalls even when colorizing paths, as long as the color scheme doesn't
- require metadata, see #1148
- The statically linked musl versions of fd now use jmalloc, leading to a significant performance
- improvement, see #1062
- Other
- Added link back to GitHub in man page and --help text, see #1086
- Major update in how fd handles command line options internally, see #1067
Version: 6.3.0-bp150.1.4
* Sun Mar 18 2018 jengelh@inai.de
- Ensure neutrality of description. Describe the feature
differences to GNU find.
* Tue Mar 13 2018 avindra@opensuse.org
- ship man page and shell completions
- reduce size of tarballs
- neutralize description a bit
- port history to fd.changes
* Sat Mar 10 2018 viktor.saevars@gmail.com
- Updated to version 6.3.0
* Sun Oct 08 2017 viktor.saevars@gmail.com
- Initial packaging @ 4.0.0