| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| ripgrep_all-v0.10.6-x86_64-apple-darwin.tar.gz | 2024-01-16 | 7.0 MB | |
| ripgrep_all-v0.10.6-x86_64-pc-windows-msvc.zip | 2024-01-16 | 7.4 MB | |
| ripgrep_all-v0.10.6-arm-unknown-linux-gnueabihf.tar.gz | 2024-01-16 | 6.4 MB | |
| ripgrep_all-v0.10.6-x86_64-unknown-linux-musl.tar.gz | 2024-01-16 | 7.5 MB | |
| README.md | 2024-01-16 | 1.0 kB | |
| v0.10.6 source code.tar.gz | 2024-01-16 | 9.5 MB | |
| v0.10.6 source code.zip | 2024-01-16 | 9.5 MB | |
| Totals: 7 Items | 47.4 MB | 2 | |
0.10.6
This was originally supposed to be version 1.0.0, but I don't feel confident enough in the stability to call it that.
Highlights:
- rga is now configurable via a config file (~/.config/ripgrep-all/config.jsonc) that is generated on first use, including schema.
- Custom subprocess-spawning adapters can be defined via config file. See https://github.com/phiresky/ripgrep-all/wiki
- External adapters can be shared with the community at https://github.com/phiresky/ripgrep-all/discussions
Others:
- cache database is now sqlite for inspectability and robustness
- mbox adapter (@FliegendeWurst https://github.com/phiresky/ripgrep-all/pull/104)
- auto generate parts of the readme
- add loads of debug logs and performance timings when
--debugis used - better error messages via
anyhow - add cross-platform rga-fzf binary
- change whole code base to be async
- change adapter interface from
(&Read, &Write) -> ()toAsyncRead -> AsyncReadto allow chaining of adapters