Conversation
|
Review the following changes in direct dependencies. Learn more about Socket for GitHub.
|
Summary of ChangesHello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request formally releases version 3.1.1 of the project. The primary motivation for this release is to deliver a crucial bug fix related to Zsh completion descriptions, ensuring proper escaping of special characters. Alongside this fix, various internal dependencies have been updated to maintain project health and leverage the latest improvements. Highlights
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for GitHub and other Google products, sign up here. Footnotes
|
Greptile SummaryThis is a standard release PR bumping all packages from v3.1.0 to v3.2.0. It contains no new source code changes — the two features shipped in this release ( Changes included:
All version strings are consistent across every file — no mismatches detected. Confidence Score: 5/5
Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
A["PR #548 – choices env=... feature"] --> R["Release v3.2.0"]
B["PR #559 – zsh description escaping fix"] --> R
R --> C["Version bumped in Cargo.toml / cli/Cargo.toml / lib/Cargo.toml"]
R --> D["Cargo.lock updated (+ minor dep bumps)"]
R --> E["cli/usage.usage.kdl regenerated"]
R --> F["docs/cli/reference/commands.json regenerated"]
R --> G["docs/cli/reference/index.md updated"]
R --> H["CHANGELOG.md updated"]
R --> I["pnpm-lock.yaml minor dep bumps"]
Reviews (1): Last reviewed commit: "chore: release v3.2.0" | Re-trigger Greptile |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #560 +/- ##
=======================================
Coverage 61.98% 61.98%
=======================================
Files 48 48
Lines 7637 7637
Branches 7637 7637
=======================================
Hits 4734 4734
Misses 1543 1543
Partials 1360 1360 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
There was a problem hiding this comment.
Code Review
This pull request updates various Rust and JavaScript dependencies, consistently bumping the project version to 3.1.1 across multiple configuration files. It also includes a changelog entry for v3.1.1 to address a zsh completion bug. The review feedback points out a discrepancy between the pull request's title/description, which suggests a v3.2.0 release and a new feature, and the actual code changes, which are for v3.1.1 and a bug fix. It is recommended to update the PR title and description to accurately reflect the v3.1.1 release contents.
| @@ -1,5 +1,19 @@ | |||
| # Changelog | |||
|
|
|||
| ## [3.2.0](https://github.com/jdx/usage/compare/v3.1.0..v3.2.0) - 2026-03-23 | |||
There was a problem hiding this comment.
There appears to be a version mismatch. The pull request title indicates a release for v3.2.0, but all version bumps within this PR, including this changelog entry, are for v3.1.1.
Furthermore, the PR description mentions a new feature from PR #548, which is not reflected in the changelog for this v3.1.1 release.
To avoid confusion, please consider updating the PR title and description to accurately reflect the contents of the v3.1.1 release.
🚀 Features
choices env=...by @mustafa0x in #548🐛 Bug Fixes
New Contributors