Conversation
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 finalizes the release of Highlights
Changelog
Activity
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. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request updates the version to 2026.3.0 across the codebase for a new release. The changes are mostly straightforward version bumps.
I've identified a maintainability improvement in the shell completion scripts. Currently, they contain hardcoded version numbers for generating completion spec files. This requires manual updates for every release. I've suggested dynamically determining the version within the scripts to automate this process and reduce future maintenance overhead.
| fi | ||
|
|
||
| local spec_file="${TMPDIR:-/tmp}/usage__usage_spec_mise_2026_2_24.spec" | ||
| local spec_file="${TMPDIR:-/tmp}/usage__usage_spec_mise_2026_3_0.spec" |
There was a problem hiding this comment.
To improve maintainability and avoid having to update this file on every release, the version number for the spec file can be determined dynamically. This will make the completion script more robust and reduce manual work during releases.
local spec_file="${TMPDIR:-/tmp}/usage__usage_spec_mise_$(mise --version | tail -n1 | cut -d' ' -f1).spec"
There was a problem hiding this comment.
Для повышения удобства сопровождения и во избежание необходимости обновления этого файла при каждом релизе, номер версии для файла спецификации может определяться динамически. Это сделает скрипт автодополнения более надежным и сократит объем ручной работы во время релизов.
local spec_file="${TMPDIR:-/tmp}/usage__usage_spec_mise_$(mise --version | tail -n1 | cut -d' ' -f1).spec"
| local cur prev words cword was_split comp_args | ||
| _comp_initialize -n : -- "$@" || return | ||
| local spec_file="${TMPDIR:-/tmp}/usage__usage_spec_mise_2026_2_24.spec" | ||
| local spec_file="${TMPDIR:-/tmp}/usage__usage_spec_mise_2026_3_0.spec" |
There was a problem hiding this comment.
To improve maintainability and avoid having to update this file on every release, the version number for the spec file can be determined dynamically. This will make the completion script more robust and reduce manual work during releases.
local spec_file="${TMPDIR:-/tmp}/usage__usage_spec_mise_$(mise --version | tail -n1 | cut -d' ' -f1).spec"
| end | ||
| set -l tmpdir (if set -q TMPDIR; echo $TMPDIR; else; echo /tmp; end) | ||
| set -l spec_file "$tmpdir/usage__usage_spec_mise_2026_2_24.spec" | ||
| set -l spec_file "$tmpdir/usage__usage_spec_mise_2026_3_0.spec" |
There was a problem hiding this comment.
To improve maintainability and avoid having to update this file on every release, the version number for the spec file can be determined dynamically. This will make the completion script more robust and reduce manual work during releases.
set -l spec_file "$tmpdir/usage__usage_spec_mise_"(mise --version | tail -n1 | cut -d' ' -f1)".spec"
|
|
||
| $tmpDir = if ($env:TEMP) { $env:TEMP } else { [System.IO.Path]::GetTempPath() } | ||
| $specFile = Join-Path $tmpDir "usage__usage_spec_mise_2026_2_24.kdl" | ||
| $specFile = Join-Path $tmpDir "usage__usage_spec_mise_2026_3_0.kdl" |
There was a problem hiding this comment.
To improve maintainability and avoid having to update this file on every release, the version number for the spec file can be determined dynamically. This will make the completion script more robust and reduce manual work during releases.
$specFile = Join-Path $tmpDir "usage__usage_spec_mise_$(((mise --version | Select-Object -Last 1).Split(' '))[0]).kdl"
Greptile SummaryStandard release PR that bumps mise from version 2026.2.24 to 2026.3.0. All version references are consistently updated across package manifests (Cargo, RPM, Snap, Nix), completion scripts, and documentation.
Confidence Score: 5/5
Important Files Changed
Last reviewed commit: c9f1fd5 |
Hyperfine Performance
|
| Command | Mean [ms] | Min [ms] | Max [ms] | Relative |
|---|---|---|---|---|
mise-2026.2.24 x -- echo |
28.4 ± 1.1 | 27.2 | 44.6 | 1.19 ± 0.05 |
mise x -- echo |
23.8 ± 0.6 | 22.9 | 26.7 | 1.00 |
✅ Performance improvement for x -- echo is 19% |
mise env
| Command | Mean [ms] | Min [ms] | Max [ms] | Relative |
|---|---|---|---|---|
mise-2026.2.24 env |
28.0 ± 1.0 | 26.8 | 37.6 | 1.19 ± 0.05 |
mise env |
23.6 ± 0.6 | 22.5 | 26.3 | 1.00 |
✅ Performance improvement for env is 19% |
mise hook-env
| Command | Mean [ms] | Min [ms] | Max [ms] | Relative |
|---|---|---|---|---|
mise-2026.2.24 hook-env |
28.9 ± 0.7 | 27.6 | 30.7 | 1.19 ± 0.05 |
mise hook-env |
24.3 ± 0.9 | 23.1 | 27.7 | 1.00 |
✅ Performance improvement for hook-env is 19% |
mise ls
| Command | Mean [ms] | Min [ms] | Max [ms] | Relative |
|---|---|---|---|---|
mise-2026.2.24 ls |
23.3 ± 0.5 | 22.5 | 25.2 | 1.04 ± 0.05 |
mise ls |
22.4 ± 0.9 | 21.4 | 35.1 | 1.00 |
xtasks/test/perf
| Command | mise-2026.2.24 | mise | Variance |
|---|---|---|---|
| install (cached) | 164ms | 150ms | +9% |
| ls (cached) | 91ms | 83ms | +9% |
| bin-paths (cached) | 97ms | ✅ 86ms | +12% |
| task-ls (cached) | 836ms | 830ms | +0% |
✅ Performance improvement: bin-paths cached is 12%
e73ec7f to
6eaba15
Compare
🚀 Features
🐛 Bug Fixes
# misetask header syntax by @jdx in #8403🚜 Refactor
📚 Documentation