v0.10.6
OpenBMB/UltraRAGv0.10.6Jan 16, 2024by github-actions[bot]
AI Summary
This release was originally intended to be version 1.0.0 but was downgraded due to stability concerns. It introduces configuration file support, custom subprocess adapters, and a complete migration to an asynchronous codebase.
Key Highlights
- Configurable `rga` via a config file (~/.config/ripgrep-all/config.jsonc) with schema generation.
- Support for custom subprocess-spawning adapters and sharing external adapters with the community.
- Migration of the entire codebase to an asynchronous architecture.
- Switch to SQLite for the cache database to improve robustness.
Breaking Changes
- Adapter interface changed from synchronous `(&Read, &Write) -> ()` to asynchronous `AsyncRead -> AsyncRead`.
- Whole code base changed to be async.
New Features
- Mbox adapter added.
- Cross-platform rga-fzf binary.
- Auto-generation of parts of the README.
- Enhanced debug logs and performance timings when `--debug` is used.
- Better error messages via the `anyhow` crate.
Full Release Notes
# 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 `--debug` is 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) -> ()` to `AsyncRead -> AsyncRead` to allow chaining of adapters