Skip to content

chore: update aube tool version#501

Merged
jdx merged 2 commits into
mainfrom
chore/update-aube-latest
May 31, 2026
Merged

chore: update aube tool version#501
jdx merged 2 commits into
mainfrom
chore/update-aube-latest

Conversation

@jdx

@jdx jdx commented May 31, 2026

Copy link
Copy Markdown
Owner

Summary

  • set aube to latest in mise.toml
  • refresh mise.lock so aube@latest resolves to 1.16.1
  • fix lockfile URL typos reported in review

Test

  • mise install --locked aube
  • mise x aube -- aube --version

@gemini-code-assist gemini-code-assist Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request updates the aube tool version to latest in mise.toml and updates the lockfile mise.lock. However, two critical typos were introduced in mise.lock: a typo in the hostname (githu.com instead of github.com) for the linux-x64 platform of aube, and a typo in the repository owner (jjdx instead of jdx) for the linux-x64-musl platform of communique. Both issues will cause installation failures on their respective platforms and must be corrected.

Comment thread mise.lock Outdated
url_api = "https://api.github.com/repos/endevco/aube/releases/assets/420696179"
provenance = "github-attestations"
checksum = "sha256:3f3d183d6a9644391ffa3ac521c010c90cebc4fd6ab208aa9aa552c70986a357"
url = "https://githu.com/endevco/aube/releases/download/v1.16.1/aube-v1.16.1-x86_64-unknown-linux-gnu.tar.gz"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

There is a typo in the hostname of the URL: githu.com instead of github.com. This will cause download and installation failures for the linux-x64 platform. Please correct it to github.com.

url = "https://github.com/endevco/aube/releases/download/v1.16.1/aube-v1.16.1-x86_64-unknown-linux-gnu.tar.gz"

Comment thread mise.lock Outdated
[tools.communique."platforms.linux-x64-musl"]
checksum = "sha256:01a6a8b49e635a5a209fdaf6c7b2e976374debc2db1c846c033f567fdba0d86c"
url = "https://github.com/jdx/communique/releases/download/v1.1.2/communique-x86_64-unknown-linux-musl.tar.gz"
url = "https://github.com/jjdx/communique/releases/download/v1.1.2/communique-x86_64-unknown-linux-musl.tar.gz"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

There is a typo in the repository owner name: jjdx instead of jdx. This will break the installation of communique on linux-x64-musl platforms. Please revert this change or correct it to jdx.

url = "https://github.com/jdx/communique/releases/download/v1.1.2/communique-x86_64-unknown-linux-musl.tar.gz"

@cursor cursor Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cursor Bugbot has reviewed your changes and found 2 potential issues.

Fix All in Cursor

❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.

Reviewed by Cursor Bugbot for commit 94744bc. Configure here.

Comment thread mise.lock Outdated
url_api = "https://api.github.com/repos/endevco/aube/releases/assets/420696179"
provenance = "github-attestations"
checksum = "sha256:3f3d183d6a9644391ffa3ac521c010c90cebc4fd6ab208aa9aa552c70986a357"
url = "https://githu.com/endevco/aube/releases/download/v1.16.1/aube-v1.16.1-x86_64-unknown-linux-gnu.tar.gz"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wrong aube linux-x64 URL

High Severity

The linux-x64 aube download URL uses githu.com instead of github.com, so mise install --locked aube on x86_64 Linux cannot fetch the artifact even though the checksum and API asset id look correct.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 94744bc. Configure here.

Comment thread mise.lock Outdated
[tools.communique."platforms.linux-x64-musl"]
checksum = "sha256:01a6a8b49e635a5a209fdaf6c7b2e976374debc2db1c846c033f567fdba0d86c"
url = "https://github.com/jdx/communique/releases/download/v1.1.2/communique-x86_64-unknown-linux-musl.tar.gz"
url = "https://github.com/jjdx/communique/releases/download/v1.1.2/communique-x86_64-unknown-linux-musl.tar.gz"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wrong communique musl URL host

Medium Severity

The communique linux-x64-musl artifact URL points at github.com/jjdx/communique while the backend and url_api still reference jdx/communique, so locked installs on musl x64 likely 404 or pull from the wrong org.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 94744bc. Configure here.

@greptile-apps

greptile-apps Bot commented May 31, 2026

Copy link
Copy Markdown

Greptile Summary

Updates aube from the pinned v1.15.0 to latest in mise.toml and regenerates mise.lock so the locked resolution points to 1.16.1.

  • All six platform entries in mise.lock (linux-arm64, linux-arm64-musl, linux-x64, linux-x64-musl, macos-arm64, windows-x64) are consistently updated with correct github.com release URLs, fresh sha256 checksums, new url_api asset IDs, and provenance = "github-attestations".
  • No other tools (communique, git-cliff, gh, etc.) are touched in this update.

Confidence Score: 5/5

Lockfile-only tooling update with all platform entries looking consistent and correct; safe to merge.

All six platform URLs point to the correct github.com/endevco/aube release for v1.16.1, every entry carries a provenance field, and no other tool entries were modified. Previously flagged URL typos are not present in this diff.

No files require special attention.

Important Files Changed

Filename Overview
mise.toml Changes aube pin from v1.15.0 to latest; all other tools unchanged
mise.lock Regenerated aube entries from 1.14.1 → 1.16.1; all six platform entries have correct github.com URLs, fresh checksums, and provenance fields; no other tools changed

Reviews (2): Last reviewed commit: "chore: fix aube lock urls" | Re-trigger Greptile

Comment thread mise.lock
Comment thread mise.lock Outdated

jdx commented May 31, 2026

Copy link
Copy Markdown
Owner Author

Fixed in f5ea7f9: corrected the aube linux-x64 URL, restored its provenance field, and corrected the communique linux-x64-musl URL back to jdx.

This comment was generated by an AI coding assistant.

@jdx jdx merged commit e47eed9 into main May 31, 2026
18 checks passed
@jdx jdx deleted the chore/update-aube-latest branch May 31, 2026 14:20
This was referenced May 31, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant