Skip to content

docs: add releases nav and aube lock#849

Merged
jdx merged 4 commits intomainfrom
codex/docs-releases-aube
Apr 19, 2026
Merged

docs: add releases nav and aube lock#849
jdx merged 4 commits intomainfrom
codex/docs-releases-aube

Conversation

@jdx
Copy link
Copy Markdown
Owner

@jdx jdx commented Apr 19, 2026

Summary

  • add a Releases link to the docs nav
  • switch docs and CI JS installs from bun to aube via mise
  • replace bun.lock with aube-lock.yaml, add docs/aube-lock.yaml, and ignore .aube/

Validation

  • git diff --check
  • mise run docs:build

Note

Medium Risk
Moderate risk because it changes the CI/autofix dependency installation command and replaces the JS lockfile, which could break builds if aube or lock resolution differs from bun. Product/runtime code is otherwise unaffected aside from a small docs nav change.

Overview
Switches CI and autofix workflows from running bun i to mise x -- aube install for JavaScript dependency installation.

Replaces bun.lock with a new aube-lock.yaml (and ignores the .aube/ directory), and adds a docs-only navigation link to GitHub Releases in docs/.vitepress/config.mts.

Reviewed by Cursor Bugbot for commit 0ec9137. Bugbot is set up for automated code reviews on this repo. Configure here.

@greptile-apps
Copy link
Copy Markdown

greptile-apps Bot commented Apr 19, 2026

Greptile Summary

This PR migrates the project's JS dependency management from bun to aube (a pnpm-compatible tool managed via mise), replacing bun.lock with aube-lock.yaml lockfiles and updating all CI, autofix, hook, and task runner references accordingly. It also adds a Releases link to the VitePress docs nav.

  • The new aube-lock.yaml at the repo root matches the *.yaml prettier glob defined in hk.pkl, but .prettierignore has not been updated to exclude it — the pre-commit hook will run Prettier over the lockfile on any commit that stages it.

Confidence Score: 4/5

Safe to merge after adding lockfiles to .prettierignore to prevent the pre-commit hook from corrupting them.

One P1 finding: the new aube-lock.yaml files are not excluded from the Prettier pre-commit hook, which could reformat and corrupt them on the next relevant commit. All other changes are straightforward toolchain swaps with no logic impact.

.prettierignore — needs entries for aube-lock.yaml and docs/aube-lock.yaml.

Important Files Changed

Filename Overview
.github/workflows/ci.yml Replaces all four mise x -- bun i install steps with mise x -- aube install; no other logic changes.
.github/workflows/autofix.yml Switches install command from mise x -- bun i to mise x -- aube install; straightforward one-line change.
docs/.vitepress/config.mts Adds a Releases nav entry pointing to the GitHub releases page; no logic changes.
.prettierignore Not updated to exclude the new aube-lock.yaml files; the *.yaml glob in the Prettier hook will pick them up on commit.
mise.toml Adds aube = "latest" to managed tools; bun is no longer listed.
hk.pkl ESLint step prefix updated to aube run, consistent with the toolchain switch.
aube-lock.yaml New pnpm-v9-format lockfile for root workspace dependencies, replacing bun.lock.
docs/aube-lock.yaml Separate lockfile used when aube install is run from within the docs/ directory via mise task.

Flowchart

%%{init: {'theme': 'neutral'}}%%
flowchart TD
    A[Developer commits] --> B{Staged files match *.yaml glob?}
    B -- Yes --> C[hk.pkl prettier step runs]
    B -- No --> G[Skip prettier]
    C --> D{aube-lock.yaml in .prettierignore?}
    D -- No current --> E[Prettier reformats aube-lock.yaml]
    D -- Yes fix --> F[Lockfile skipped]
    E --> H[Potentially corrupted lockfile committed]
    F --> I[Lockfile unchanged]
Loading

Comments Outside Diff (1)

  1. .prettierignore, line 4 (link)

    P1 Lockfile exposed to Prettier reformatting

    The root aube-lock.yaml matches the *.yaml glob used by the Prettier step in hk.pkl. On any commit that stages aube-lock.yaml, the pre-commit hook will run Prettier over it, which may alter formatting and produce a lockfile that aube rejects (or silently differ from what aube generates). Adding both lockfiles to .prettierignore prevents this.

    Fix in Claude Code

Fix All in Claude Code

Reviews (4): Last reviewed commit: "docs: match workspace importer to manife..." | Re-trigger Greptile

Copy link
Copy Markdown
Contributor

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

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 migrates the project's dependency management from Bun to Aube, which includes introducing new lockfiles, updating task definitions, and adjusting tool configurations. It also adds a 'Releases' link to the documentation site. The review feedback highlights that the updated package.json manifest files were omitted from the PR; these files are necessary to maintain consistency with the new lockfiles and ensure proper dependency resolution across environments.

Comment thread aube-lock.yaml Outdated
@@ -0,0 +1,509 @@
lockfileVersion: '9.0'
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

high

The PR introduces aube-lock.yaml and docs/aube-lock.yaml but omits the corresponding package.json manifest files. Since the lockfiles show significant changes in the direct dependency lists (e.g., the addition of acorn in the root and numerous packages in docs), the manifests must have been modified. Please include the updated package.json files to ensure consistency and allow for proper dependency resolution by other developers and CI environments.

Comment thread aube-lock.yaml
Copy link
Copy Markdown

@cursor cursor Bot left a comment

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 1 potential issue.

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 0ec9137. Configure here.

Comment thread aube-lock.yaml
dependencies:
acorn:
specifier: ^6.0.0 || ^7.0.0 || ^8.0.0
version: 8.16.0
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Lockfile lists phantom acorn root dependency not in package.json

Low Severity

The aube-lock.yaml importers section for the root workspace lists acorn as a direct dependency with specifier ^6.0.0 || ^7.0.0 || ^8.0.0, but the root package.json only declares eslint and typescript as dependencies. That specifier matches the acorn-jsx peer dependency on acorn, suggesting the lockfile generator incorrectly promoted a transitive peer dependency to a direct root dependency. This creates a mismatch between package.json and the lockfile that could cause confusion or unexpected behavior if the lockfile is used to audit or reproduce dependencies.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 0ec9137. Configure here.

@jdx jdx merged commit 6cce30d into main Apr 19, 2026
22 checks passed
@jdx jdx deleted the codex/docs-releases-aube branch April 19, 2026 18:08
@jdx jdx mentioned this pull request Apr 19, 2026
jdx added a commit that referenced this pull request Apr 23, 2026
### 🚀 Features

- **(check)** implement --plan, --why, and --json by
[@jdx](https://github.com/jdx) in
[#848](#848)
- **(cocogitto)** add cocogitto conventional commits config to hk
builtin config by [@hituzi-no-sippo](https://github.com/hituzi-no-sippo)
in [#838](#838)
- **(git)** support GIT_DIR/GIT_WORK_TREE for bare-repo dotfile managers
by [@jdx](https://github.com/jdx) in
[#847](#847)
- **(install)** use Git 2.54 config-based hooks with --global support by
[@jdx](https://github.com/jdx) in
[#853](#853)

### 🐛 Bug Fixes

- use text progress in CI by [@jdx](https://github.com/jdx) in
[#845](#845)

### 📚 Documentation

- generalize agent guidelines by [@jdx](https://github.com/jdx) in
[#846](#846)
- add releases nav and aube lock by [@jdx](https://github.com/jdx) in
[#849](#849)

### 🔍 Other Changes

- bump communique to 1.0.1 by [@jdx](https://github.com/jdx) in
[#850](#850)

### 📦️ Dependency Updates

- update actions-rust-lang/setup-rust-toolchain digest to 2b1f5e9 by
[@renovate[bot]](https://github.com/renovate[bot]) in
[#832](#832)
- update anthropics/claude-code-action digest to c3d45e8 by
[@renovate[bot]](https://github.com/renovate[bot]) in
[#833](#833)
- update rust crate tokio to v1.52.1 by
[@renovate[bot]](https://github.com/renovate[bot]) in
[#834](#834)
- update actions/upload-pages-artifact action to v5 by
[@renovate[bot]](https://github.com/renovate[bot]) in
[#835](#835)
- update taiki-e/upload-rust-binary-action digest to f0d45ae by
[@renovate[bot]](https://github.com/renovate[bot]) in
[#839](#839)
- update rust crate clx to v2 by
[@renovate[bot]](https://github.com/renovate[bot]) in
[#836](#836)
- update anthropics/claude-code-action digest to 0d2971c by
[@renovate[bot]](https://github.com/renovate[bot]) in
[#841](#841)
- update anthropics/claude-code-action digest to 38ec876 by
[@renovate[bot]](https://github.com/renovate[bot]) in
[#842](#842)
- lock file maintenance by
[@renovate[bot]](https://github.com/renovate[bot]) in
[#851](#851)

<!-- CURSOR_SUMMARY -->
---

> [!NOTE]
> **Low Risk**
> Low risk release bookkeeping: version bumps and doc/CLI artifact
updates, plus minor dependency patch updates in `Cargo.lock`. No
functional Rust source changes are included in this diff.
> 
> **Overview**
> Bumps `hk` to **v1.44.0** and publishes the corresponding release
notes in `CHANGELOG.md`.
> 
> Updates generated/packaged artifacts to match the new version (CLI
docs/specs and Pkl package URLs in docs/examples), and refreshes
`Cargo.lock` for the release (including patch-level updates like
`rustls` and `winnow`).
> 
> <sup>Reviewed by [Cursor Bugbot](https://cursor.com/bugbot) for commit
a36c7a6. Bugbot is set up for automated
code reviews on this repo. Configure
[here](https://www.cursor.com/dashboard/bugbot).</sup>
<!-- /CURSOR_SUMMARY -->

Co-authored-by: mise-en-dev <123107610+mise-en-dev@users.noreply.github.com>
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