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 primarily focuses on releasing version 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
|
Greptile SummaryThis is a standard automated release PR bumping mise from
Confidence Score: 4/5
Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[aqua version_overrides evaluation] --> B{version <= 0.6.0?}
B -- yes --> C[container-VERSION-installer-signed.pkg]
B -- no --> D{version <= 0.9.0?}
D -- yes --> E[container-installer-signed.pkg]
D -- no --> F[container-VERSION-installer-signed.pkg\nnew catch-all for > 0.9.0]
G[cocogitto version_overrides evaluation] --> H{version <= 5.3.1?}
H -- yes --> I[osx / unknown-linux-musl assets\nrosetta2: true]
H -- no --> J{version <= 5.6.0?}
J -- yes --> K[osx / unknown-linux-musl assets\nrosetta2: true]
J -- no --> L{version == 6.0.0?}
L -- yes --> M[apple-darwin / native overrides\nrosetta2: true]
L -- no --> N{version <= 6.3.0?}
N -- yes --> O[apple-darwin / native overrides\nrosetta2: true]
N -- no --> P[apple-darwin / native overrides\nNO rosetta2 — explicit arm64 override\nnew catch-all for > 6.3.0]
Last reviewed commit: ce43e2c |
There was a problem hiding this comment.
Code Review
This pull request is a release for version 2026.3.9. The changes primarily consist of version bumps across various files and updates to the Aqua Registry, including new packages and modifications to existing ones. My review found one area for improvement in the cocogitto registry file regarding code duplication, which could enhance maintainability. Otherwise, the changes look good for the release.
| - version_constraint: "true" | ||
| asset: cocogitto-{{.Version}}-{{.Arch}}-{{.OS}}.{{.Format}} | ||
| format: tar.gz | ||
| windows_arm_emulation: true | ||
| files: | ||
| - name: cog | ||
| src: "{{.Arch}}-{{.OS}}/cog" | ||
| replacements: | ||
| amd64: x86_64 | ||
| darwin: apple-darwin | ||
| windows: pc-windows-msvc | ||
| overrides: | ||
| - goos: darwin | ||
| goarch: arm64 | ||
| replacements: | ||
| arm64: aarch64 | ||
| - goos: linux | ||
| goarch: amd64 | ||
| replacements: | ||
| linux: unknown-linux-musl | ||
| - goos: linux | ||
| goarch: arm64 | ||
| replacements: | ||
| arm64: aarch64 | ||
| linux: unknown-linux-gnu | ||
| - goos: windows | ||
| files: | ||
| - name: cog | ||
| src: "{{.Arch}}-{{.OS}}/cog.exe" |
There was a problem hiding this comment.
This version_overrides block is very similar to the preceding one for versions <= 6.3.0. This introduces a lot of duplication, which can make future maintenance more difficult. Consider using YAML anchors and aliases to reduce the repeated configuration for files, replacements, and common overrides.
Hyperfine Performance
|
| Command | Mean [ms] | Min [ms] | Max [ms] | Relative |
|---|---|---|---|---|
mise-2026.3.8 x -- echo |
25.5 ± 1.0 | 23.6 | 31.9 | 1.00 |
mise x -- echo |
25.9 ± 1.0 | 24.0 | 32.8 | 1.02 ± 0.05 |
mise env
| Command | Mean [ms] | Min [ms] | Max [ms] | Relative |
|---|---|---|---|---|
mise-2026.3.8 env |
25.3 ± 1.0 | 23.4 | 30.6 | 1.04 ± 0.05 |
mise env |
24.2 ± 0.8 | 23.1 | 32.1 | 1.00 |
mise hook-env
| Command | Mean [ms] | Min [ms] | Max [ms] | Relative |
|---|---|---|---|---|
mise-2026.3.8 hook-env |
25.2 ± 0.9 | 23.5 | 30.0 | 1.00 |
mise hook-env |
26.3 ± 0.9 | 24.3 | 33.0 | 1.05 ± 0.05 |
mise ls
| Command | Mean [ms] | Min [ms] | Max [ms] | Relative |
|---|---|---|---|---|
mise-2026.3.8 ls |
25.2 ± 0.6 | 23.2 | 27.6 | 1.00 |
mise ls |
26.1 ± 0.7 | 24.4 | 31.6 | 1.04 ± 0.04 |
xtasks/test/perf
| Command | mise-2026.3.8 | mise | Variance |
|---|---|---|---|
| install (cached) | 156ms | 158ms | -1% |
| ls (cached) | 85ms | 88ms | -3% |
| bin-paths (cached) | 88ms | 90ms | -2% |
| task-ls (cached) | 837ms | 852ms | -1% |
crates/aqua-registry/aqua-registry/pkgs/callumalpass/mdbase-lsp/registry.yaml
Show resolved
Hide resolved
163dae2 to
328059a
Compare
crates/aqua-registry/aqua-registry/pkgs/callumalpass/mdbase-lsp/registry.yaml
Show resolved
Hide resolved
357cda2 to
e3c693b
Compare
crates/aqua-registry/aqua-registry/pkgs/weedonandscott/trolley/registry.yaml
Show resolved
Hide resolved
5863a0b to
0e09014
Compare
ce322f9 to
9a80cd0
Compare
### 🚀 Features - **(github)** use release latest endpoint to get latest release by @roele in [jdx#8516](jdx#8516) - **(install)** add shared and system install directories by @jdx in [jdx#8581](jdx#8581) - **(vfox)** add provenance metadata to lockfile for tool plugins by @malept in [jdx#8544](jdx#8544) ### 🐛 Bug Fixes - **(aqua)** expose main binary when files field is empty and symlink_bins is enabled by @AlexanderTheGrey in [jdx#8550](jdx#8550) - **(env)** redact secrets in `mise set` listing and task-specific env by @jdx in [jdx#8583](jdx#8583) - **(prepare)** install config tools before running prepare steps by @jdx in [jdx#8582](jdx#8582) - **(task)** allow ctrl-c to interrupt tool downloads during `mise run` by @jdx in [jdx#8571](jdx#8571) - **(tasks)** add file task header parser support for spaces around = by @roele in [jdx#8574](jdx#8574) ### 📚 Documentation - **(task)** add property description for interactive by @roele in [jdx#8562](jdx#8562) - add missing `</bold>` closing tag by @muzimuzhi in [jdx#8564](jdx#8564) - rebrand site with new chef logo and warm culinary palette by @jdx in [jdx#8587](jdx#8587) ### 📦️ Dependency Updates - update ghcr.io/jdx/mise:alpine docker digest to de4657e by @renovate[bot] in [jdx#8577](jdx#8577) - update ghcr.io/jdx/mise:copr docker digest to eef29a2 by @renovate[bot] in [jdx#8578](jdx#8578) - update ghcr.io/jdx/mise:rpm docker digest to 5a96587 by @renovate[bot] in [jdx#8580](jdx#8580) - update ghcr.io/jdx/mise:deb docker digest to 464cf7c by @renovate[bot] in [jdx#8579](jdx#8579) ### 📦 Registry - fix flatc version test mismatch by @jdx in [jdx#8588](jdx#8588) ### Chore - **(registry)** skip spark test-tool by @jdx in [jdx#8572](jdx#8572) ### New Contributors - @AlexanderTheGrey made their first contribution in [jdx#8550](jdx#8550) ## 📦 Aqua Registry Updates #### New Packages (6) - [`bahdotsh/mdterm`](https://github.com/bahdotsh/mdterm) - [`callumalpass/mdbase-lsp`](https://github.com/callumalpass/mdbase-lsp) - [`facebook/ktfmt`](https://github.com/facebook/ktfmt) - [`gurgeous/tennis`](https://github.com/gurgeous/tennis) - [`tektoncd/pipelines-as-code`](https://github.com/tektoncd/pipelines-as-code) - [`weedonandscott/trolley`](https://github.com/weedonandscott/trolley) #### Updated Packages (2) - [`apple/container`](https://github.com/apple/container) - [`cocogitto/cocogitto`](https://github.com/cocogitto/cocogitto)
🚀 Features
🐛 Bug Fixes
mise setlisting and task-specific env by @jdx in #8583mise runby @jdx in #8571📚 Documentation
</bold>closing tag by @muzimuzhi in #8564📦️ Dependency Updates
📦 Registry
Chore
New Contributors
📦 Aqua Registry Updates
New Packages (6)
bahdotsh/mdtermcallumalpass/mdbase-lspfacebook/ktfmtgurgeous/tennistektoncd/pipelines-as-codeweedonandscott/trolleyUpdated Packages (2)
apple/containercocogitto/cocogitto