docs: add changelog entry for v0.6.0#55
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 2eaec8377e
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| ## [0.6.0] - 2026-05-12 | ||
|
|
||
| ### Added | ||
| - **Feature-gating**: Five heavy dependencies are now gated behind Cargo features: `syntax-highlight`, `image-preview`, `sftp`, `terminal-panel`, and `auto-update`. The default build is significantly lighter (from ~387 to ~297 transitive crates), making `cargo install zeta` faster. Users can opt into specific features with `cargo install zeta --features feature-name` or all with `--all-features`. |
There was a problem hiding this comment.
Fix incorrect default-build claim in v0.6.0 changelog
This entry says the five heavy components are merely feature-gated and that the default install is lighter, but at this commit Cargo.toml:7 sets default = ["syntax-highlight", "image-preview", "sftp", "terminal-panel", "auto-update"], which enables all five by default. Users following this release note will expect cargo install zeta to be slim when it actually still compiles those features unless --no-default-features is used, so the changelog should be corrected to match current feature defaults.
Useful? React with 👍 / 👎.
Updates CHANGELOG.md with the changes since v0.5.12.