Skip to content

chore(deps): update ⬆️ mise-packages to v4 - #998

Merged
scottames merged 2 commits into
mainfrom
renovate/major-mise-packages
Jul 30, 2026
Merged

chore(deps): update ⬆️ mise-packages to v4#998
scottames merged 2 commits into
mainfrom
renovate/major-mise-packages

Conversation

@renovate

@renovate renovate Bot commented Jul 30, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Update Change Pending
usage major 3.6.04.0.0 4.1.0

Release notes are maintained in a PR comment by the renovate-release-notes-comment workflow.


Configuration

📅 Schedule: (in timezone America/Los_Angeles)

  • Branch creation
    • Between 03:00 AM and 05:59 AM (* 3-5 * * *)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled because a matching PR was automerged previously.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate
renovate Bot requested a review from scottames as a code owner July 30, 2026 10:48
@scottames-github-bot

scottames-github-bot Bot commented Jul 30, 2026

Copy link
Copy Markdown
Contributor

Renovate Release Notes

Generated from Renovate's update table by the renovate-release-notes-comment workflow.

Packages that cannot be summarized from GitHub releases are listed explicitly below.

jdx/usage (usage)

v4.0.0: v4.0.0: effect= on flags and args

Compare Source

Extends the effect= annotation from commands down to individual flags and arguments, so specs can express commands whose danger depends on how they are invoked.

Added

  • effect= on flags and args (#742 by @​jdx). A command's danger often depends on how it is invoked: pitchfork logs reads, pitchfork logs --clear deletes; mise settings foo reads, mise settings foo=bar writes. Flags and args can now carry the same effect= annotation that #739 introduced on commands:

    cmd "logs" effect="read" help="Show daemon logs" {
      flag "--clear" effect="destructive" help="Delete stored logs"
      flag "--follow"
    }
    
    cmd "settings" effect="read" {
      arg "[setting]"
      arg "[value]" effect="write"   // `settings foo` reads, `settings foo=bar` writes
    }

    The rule: the effect of an invocation is the maximum of the command's effect and the effect of every flag and argument actually supplied. SpecCommandEffect now implements Ord (read < write < destructive) so the maximum is well defined. Two helpers:

    • SpecCommand::effect_of(flags, args) — for a consumer that parsed the command line.
    • SpecCommand::max_effect() — the pessimistic bound across every declared flag and arg, for one that didn't.

    Effects only ever raise, never lower. --dry-run is deliberately not supported: a bug in a dry-run path would otherwise produce a spec that claims a command is safe when it isn't. Because the rule is monotonic, a consumer that can't parse the invocation can safely fall back to max_effect() and degrade to today's behavior — which is what makes this additive rather than a semantics break on the wire.

    Accepted as either a prop (effect="write") or a child node (effect "write"); unknown values are a parse error with a span. Generated markdown now renders an **Effect**: line beneath each flag that declares one. Most flags should declare nothing — this is for the handful that change what a command does to the world, not an annotation for every option.

  • New builder and constructor helpers (#742 by @​jdx). SpecFlagBuilder and SpecArgBuilder gain .effect(...), .usage(...), and .help_first_line(...). SpecExample, SpecComplete, SpecConfig, SpecConfigProp, and SpecMount all gain a public ::new and chaining setters, so they can be constructed from outside the crate.

Breaking Changes

SpecArg, SpecFlag, SpecExample, SpecComplete, SpecChoices, SpecConfig, SpecConfigProp, and SpecMount are now marked #[non_exhaustive]. Any code that built one of these types with a struct literal outside usage-lib will no longer compile. Use the builders (SpecFlag::builder(), SpecArg::builder()) or the new ::new helpers instead; existing field access is unaffected.

Full Changelog: jdx/usage@v3.6.0...v4.0.0

💚 Sponsor usage

usage is maintained by @​jdx, an open source developer for entire.io, the title sponsor of the jdx.dev open source tools including mise, aube, hk, and more. Work on usage is funded by sponsorships.

If usage powers CLI specs, docs, or completions for a tool you maintain or use, please consider sponsoring at jdx.dev. Every sponsorship helps the project stay independent and moving.

@renovate
renovate Bot force-pushed the renovate/major-mise-packages branch from d14718a to d4ef869 Compare July 30, 2026 12:47
@scottames
scottames merged commit 3984f71 into main Jul 30, 2026
6 checks passed
@scottames
scottames deleted the renovate/major-mise-packages branch July 30, 2026 15:38
scottames pushed a commit that referenced this pull request Aug 7, 2026
🤖 I have created a release *beep* *boop*
---


## [0.50.0](v0.49.0...v0.50.0)
(2026-08-06)


### Updates & Misc Chores

* **agents/pi:** bring nono profile in-line with opencode
([1b3acd9](1b3acd9))
* **deps:** lock file maintenance
([#982](#982))
([379a163](379a163))
* **deps:** update ⬆️ agent extensions
([#988](#988))
([032c73b](032c73b))
* **deps:** update ⬆️ aqua-packages
([#1000](#1000))
([3574482](3574482))
* **deps:** update ⬆️ aqua-packages
([#989](#989))
([39c8f59](39c8f59))
* **deps:** update ⬆️ aqua-packages to v4.540.0
([#993](#993))
([f38e00f](f38e00f))
* **deps:** update ⬆️ container digests to dc2d74b
([#1005](#1005))
([3995f91](3995f91))
* **deps:** update ⬆️ mise-packages
([#1002](#1002))
([fa80d45](fa80d45))
* **deps:** update ⬆️ mise-packages
([#1003](#1003))
([208186a](208186a))
* **deps:** update ⬆️ mise-packages
([#1004](#1004))
([21076bf](21076bf))
* **deps:** update ⬆️ mise-packages
([#980](#980))
([dcb7a0e](dcb7a0e))
* **deps:** update ⬆️ mise-packages
([#985](#985))
([71bff2d](71bff2d))
* **deps:** update ⬆️ mise-packages
([#986](#986))
([87d6146](87d6146))
* **deps:** update ⬆️ mise-packages
([#992](#992))
([6eb700c](6eb700c))
* **deps:** update ⬆️ mise-packages
([#994](#994))
([9b45e8e](9b45e8e))
* **deps:** update ⬆️ mise-packages
([#995](#995))
([8b204dc](8b204dc))
* **deps:** update ⬆️ mise-packages
([#996](#996))
([cea1144](cea1144))
* **deps:** update ⬆️ mise-packages
([#997](#997))
([f0b232b](f0b232b))
* **deps:** update ⬆️ mise-packages to v1.3.0
([#984](#984))
([84f4fc7](84f4fc7))
* **deps:** update ⬆️ mise-packages to v4
([#998](#998))
([3984f71](3984f71))
* **deps:** update github-actions
([#1001](#1001))
([cffdc69](cffdc69))
* **deps:** update github-actions
([#990](#990))
([b40bc47](b40bc47))
* **deps:** update github-actions to v7
([#991](#991))
([9f003d9](9f003d9))
* **mise/herdr:** bump 0.7.4
([8e3ba01](8e3ba01))
* **mise/nono:** bump to 0.69.0 (fixes bug)
([560101f](560101f))
* **mise:** bump herdr + ghtkn
([269c569](269c569))
* upgrade trunk ([#979](#979))
([f995e68](f995e68))
* upgrade trunk ([#987](#987))
([00be077](00be077))
* upgrade trunk ([#999](#999))
([09f8f54](09f8f54))
* **zen-browser:** add keybinds/search from latest releases
([4ca741a](4ca741a))


### Features

* add ink
([4cafd25](4cafd25))
* **agents/pi:** custom theme/keys
([9f0da00](9f0da00))
* **agents/pi:** replace subagent extension
([818271e](818271e))
* **agents:** add pi.dev
([66bc085](66bc085))
* **fish/ghtkn:** add ghtkn agent unlock abbr
([b47df17](b47df17))
* **ghtkn/gh:** leverage ghtkn agent for auth/refresh
([5af247e](5af247e))
* **herdr:** config tweaks for improved copy nav + notifications
([3f0703b](3f0703b))
* **mise:** add linear-cli (+skill)
([583b914](583b914))
* **mise:** add plannotator
([1bf4fec](1bf4fec))
* move to gh-stack as primary stacking mechanism
([40689ac](40689ac))
* **niri:** add play/pause keys
([71242a0](71242a0))
* **nono:** add claude/codex + DRY up
([8bef8f8](8bef8f8))
* **opencode:** hardcode built-in subagent models to gpt5.6-*
([63d70fb](63d70fb))
* **pi:** add web search extension
([1c34ea2](1c34ea2))
* **pi:** scope Nono temporary state
([e5e0d33](e5e0d33))
* **pi:** track tintinweb/pi-subagents
([d04f936](d04f936))


### Bug Fixes

* **agents:** just permissions + nono/pi setting
([5df9b51](5df9b51))
* **chezmoi/herdr:** warn on extension install
([4a76ddf](4a76ddf))
* **chezmoi:** no bat paging
([61b24ce](61b24ce))
* **fish/abbr:** nono opencode overlap
([535129e](535129e))
* **fish/ink:** completions
([9077393](9077393))
* **herdr:** rid of removed config key
([f7602b8](f7602b8))
* **macos:** skip mise pkgs + cleanup
([16327ed](16327ed))
* **mise:** gh-gfm-preview bin name
([e25c669](e25c669))
* **nono:** scope overlap policy to wrapper
([23646c0](23646c0))


### Code Refactoring

* **agents:** rm using-superpowers requirement
([db754cf](db754cf))
* **ghostty:** unbind a few unused keys
([b5ad538](b5ad538))
* **herdr:** reduce panes/tabs for default new layout (from fish)
([8f0270d](8f0270d))
* move ~/bin/* to ~/.local/bin/
([bd84a77](bd84a77))
* **nono:** all more build-related permissions
([78843d4](78843d4))
* **nvim/thts:** adjust picker settings
([1c8ed29](1c8ed29))
* **tuicr:** tweaks to config
([3e08e10](3e08e10))

---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please). See
[documentation](https://github.com/googleapis/release-please#release-please).

Co-authored-by: scottames-github-bot[bot] <162828115+scottames-github-bot[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant