Skip to content

Commit 738a340

Browse files
chore(deps): update ⬆️ aqua-packages (#651)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [casey/just](https://redirect.github.com/casey/just) | minor | `1.45.0` → `1.46.0` | | [gohugoio/hugo](https://redirect.github.com/gohugoio/hugo) | minor | `v0.153.5` → `v0.154.2` | | [jdx/mise](https://redirect.github.com/jdx/mise) | patch | `v2025.12.12` → `v2025.12.13` | | [jdx/usage](https://redirect.github.com/jdx/usage) | minor | `v2.9.0` → `v2.11.0` | --- ### Release Notes <details> <summary>casey/just (casey/just)</summary> ### [`v1.46.0`](https://redirect.github.com/casey/just/blob/HEAD/CHANGELOG.md#1460---2026-01-01) [Compare Source](https://redirect.github.com/casey/just/compare/1.45.0...1.46.0) ##### Fixed - Don't leak signal handler pipe into child processes ([#&#8203;3035](https://redirect.github.com/casey/just/pull/3035) by [rjmac](https://redirect.github.com/rjmac)) ##### Added - Allow `long` to default to to parameter name ([#&#8203;3041](https://redirect.github.com/casey/just/pull/3041) by [casey](https://redirect.github.com/casey)) - Allow const expressions in all settings ([#&#8203;3037](https://redirect.github.com/casey/just/pull/3037) by [casey](https://redirect.github.com/casey)) - Allow const expressions in `working-directory` ([#&#8203;3033](https://redirect.github.com/casey/just/pull/3033) by [casey](https://redirect.github.com/casey)) - Add --usage subcommand and argument help strings ([#&#8203;3031](https://redirect.github.com/casey/just/pull/3031) by [casey](https://redirect.github.com/casey)) - Add flags without values ([#&#8203;3029](https://redirect.github.com/casey/just/pull/3029) by [casey](https://redirect.github.com/casey)) - Allow passing arguments as short `-x` options ([#&#8203;3028](https://redirect.github.com/casey/just/pull/3028) by [casey](https://redirect.github.com/casey)) - Allow recipes to take `--long` options ([#&#8203;3026](https://redirect.github.com/casey/just/pull/3026) by [casey](https://redirect.github.com/casey)) ##### Misc - Add original token to string literal ([#&#8203;3042](https://redirect.github.com/casey/just/pull/3042) by [casey](https://redirect.github.com/casey)) - Remove string literal lifetime ([#&#8203;3036](https://redirect.github.com/casey/just/pull/3036) by [casey](https://redirect.github.com/casey)) - Move overrides into config ([#&#8203;3032](https://redirect.github.com/casey/just/pull/3032) by [casey](https://redirect.github.com/casey)) - Test that options are passed as positional arguments ([#&#8203;3030](https://redirect.github.com/casey/just/pull/3030) by [casey](https://redirect.github.com/casey)) - Group arguments by parameter ([#&#8203;3025](https://redirect.github.com/casey/just/pull/3025) by [casey](https://redirect.github.com/casey)) - Add OpenBSD package to readme ([#&#8203;2900](https://redirect.github.com/casey/just/pull/2900) by [vext01](https://redirect.github.com/vext01)) - Re-enable mdbook-linkcheck ([#&#8203;3011](https://redirect.github.com/casey/just/pull/3011) by [casey](https://redirect.github.com/casey)) - Disable dependabot ([#&#8203;3010](https://redirect.github.com/casey/just/pull/3010) by [casey](https://redirect.github.com/casey)) - Fix pre-release check in pages deploy job ([#&#8203;3009](https://redirect.github.com/casey/just/pull/3009) by [casey](https://redirect.github.com/casey)) </details> <details> <summary>gohugoio/hugo (gohugoio/hugo)</summary> ### [`v0.154.2`](https://redirect.github.com/gohugoio/hugo/releases/tag/v0.154.2) [Compare Source](https://redirect.github.com/gohugoio/hugo/compare/v0.154.1...v0.154.2) ##### What's Changed - Fix alpha/fuzzy border issue with new webp decoder for images with with transparent background [`e9b9b36`](https://redirect.github.com/gohugoio/hugo/commit/e9b9b36f) [@&#8203;bep](https://redirect.github.com/bep) [#&#8203;14339](https://redirect.github.com/gohugoio/hugo/issues/14339) ### [`v0.154.1`](https://redirect.github.com/gohugoio/hugo/releases/tag/v0.154.1) [Compare Source](https://redirect.github.com/gohugoio/hugo/compare/v0.154.0...v0.154.1) ##### What's Changed - Add WASM licensing information to README [`8f3527f`](https://redirect.github.com/gohugoio/hugo/commit/8f3527f6) [@&#8203;bep](https://redirect.github.com/bep) - Fix partial decorator detection in partial with blocks with outer range break or continue [`09048aa`](https://redirect.github.com/gohugoio/hugo/commit/09048aad) [@&#8203;bep](https://redirect.github.com/bep) [#&#8203;14333](https://redirect.github.com/gohugoio/hugo/issues/14333) ### [`v0.154.0`](https://redirect.github.com/gohugoio/hugo/releases/tag/v0.154.0) [Compare Source](https://redirect.github.com/gohugoio/hugo/compare/v0.153.5...v0.154.0) Hugo `v0.154.0` is the **14th release** this year (not counting patch releases) and introduces [partial decorators](https://gohugo.io/quick-reference/glossary/#partial-decorator), or “partials with a twist.” This is a very powerful construct that I, [@&#8203;bep](https://redirect.github.com/bep), have always wanted to have in Hugo, but I could never wrap my head around an implementation. Until now. A small and not very useful example: ```handlebars {{ with partial "b.html" "World" }}Hello {{ . }}{{ end }} {{ define "_partials/b.html" }}<b>{{ inner . }}</b>{{ end }} ``` The above renders to: ```handlebars <b>Hello World</b> ``` - The new `inner` keyword can be used zero or more times in a partial template, typically with different data (e.g. pages in a range), and its presence signals a reversal of the execution -- the callee becomes the caller. - Decorators can be deeply nested, see [this PR](https://redirect.github.com/gohugoio/hugoDocs/pull/3330) for an example. This release also brings some new utility funcs in the [reflect](https://gohugo.io/functions/reflect/) package to identify the core types in Hugo. For example, to identify an [processable image](https://gohugo.io/quick-reference/glossary/#processable-image) hasn't been trivial, now it is: ```handlebars {{ $obj := . }} {{ if reflect.IsResource $obj }} {{ if reflect.IsImageResource $obj }} // It has width/height and we can process it. {{ else }} // Just link to it. {{ end }} {{ end }} ``` ##### Bug fixes - tpl/collections: Fix apply to work with built-in funcs like len [`5c7fad2`](https://redirect.github.com/gohugoio/hugo/commit/5c7fad23) [@&#8203;bep](https://redirect.github.com/bep) [#&#8203;13418](https://redirect.github.com/gohugoio/hugo/issues/13418) - Revert "resources/page: Fix slugorcontentbasename for section pages" [`bf1d20d`](https://redirect.github.com/gohugoio/hugo/commit/bf1d20d7) [@&#8203;bep](https://redirect.github.com/bep) [#&#8203;14104](https://redirect.github.com/gohugoio/hugo/issues/14104) [#&#8203;14325](https://redirect.github.com/gohugoio/hugo/issues/14325) ##### Improvements - helpers: Limit verbose watch output for better readability [`d3b5d47`](https://redirect.github.com/gohugoio/hugo/commit/d3b5d47a) [@&#8203;majiayu000](https://redirect.github.com/majiayu000) [#&#8203;14277](https://redirect.github.com/gohugoio/hugo/issues/14277) - tpl/reflect: Make the IsImageResource implementation less technical [`86cd183`](https://redirect.github.com/gohugoio/hugo/commit/86cd1838) [@&#8203;bep](https://redirect.github.com/bep) - internal/warpc: Increase WebP memory limit to 384 MiB [`871da33`](https://redirect.github.com/gohugoio/hugo/commit/871da337) [@&#8203;jmooring](https://redirect.github.com/jmooring) [#&#8203;14309](https://redirect.github.com/gohugoio/hugo/issues/14309) - Update tpl/reflect/reflect.go [`1deec99`](https://redirect.github.com/gohugoio/hugo/commit/1deec99b) [@&#8203;bep](https://redirect.github.com/bep) - Add reflect.Is{Page,Site,Resource,ImageResource} [`b7bb557`](https://redirect.github.com/gohugoio/hugo/commit/b7bb557c) [@&#8203;bep](https://redirect.github.com/bep) [#&#8203;14307](https://redirect.github.com/gohugoio/hugo/issues/14307) - Allow partials to work as decorators [`7c19c19`](https://redirect.github.com/gohugoio/hugo/commit/7c19c196) [@&#8203;bep](https://redirect.github.com/bep) [#&#8203;13193](https://redirect.github.com/gohugoio/hugo/issues/13193) ##### Dependency Updates - build(deps): bump github.com/tetratelabs/wazero from 1.10.1 to 1.11.0 [`2637aa1`](https://redirect.github.com/gohugoio/hugo/commit/2637aa15) [@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] </details> <details> <summary>jdx/mise (jdx/mise)</summary> ### [`v2025.12.13`](https://redirect.github.com/jdx/mise/releases/tag/v2025.12.13) [Compare Source](https://redirect.github.com/jdx/mise/compare/v2025.12.12...vfox-v2025.12.13) ##### 🚀 Features - **(ruby)** set PKG\_CONFIG\_PATH for native gem extensions by [@&#8203;jdx](https://redirect.github.com/jdx) in [#&#8203;7457](https://redirect.github.com/jdx/mise/pull/7457) - **(tera)** add haiku() function for random name generation by [@&#8203;jdx](https://redirect.github.com/jdx) in [#&#8203;7399](https://redirect.github.com/jdx/mise/pull/7399) - **(vfox)** pass tool options to EnvKeys hook by [@&#8203;jdx](https://redirect.github.com/jdx) in [#&#8203;7447](https://redirect.github.com/jdx/mise/pull/7447) - implement independent versioning for subcrates by [@&#8203;jdx](https://redirect.github.com/jdx) in [#&#8203;7402](https://redirect.github.com/jdx/mise/pull/7402) - Move iTerm to OSC9;4 supported terminals by [@&#8203;Maks3w](https://redirect.github.com/Maks3w) in [#&#8203;7485](https://redirect.github.com/jdx/mise/pull/7485) ##### 🐛 Bug Fixes - **(ci)** improve GHA cache efficiency and fix registry-ci bug by [@&#8203;jdx](https://redirect.github.com/jdx) in [#&#8203;7404](https://redirect.github.com/jdx/mise/pull/7404) - **(ci)** use !cancelled() instead of always() for registry-ci by [@&#8203;jdx](https://redirect.github.com/jdx) in [#&#8203;7435](https://redirect.github.com/jdx/mise/pull/7435) - **(ci)** bump taiki-e/install-action 2.61.10 to 2.65.5 by [@&#8203;kvokka](https://redirect.github.com/kvokka) in [#&#8203;7496](https://redirect.github.com/jdx/mise/pull/7496) - **(e2e)** use explicit asdf backend for zprint in plugin\_install test by [@&#8203;jdx](https://redirect.github.com/jdx) in [#&#8203;7440](https://redirect.github.com/jdx/mise/pull/7440) - **(github)** use GITHUB\_TOKEN for attestation verification by [@&#8203;jdx](https://redirect.github.com/jdx) in [#&#8203;7446](https://redirect.github.com/jdx/mise/pull/7446) - **(go)** filter out go pre-release versions in ls-remote by [@&#8203;roele](https://redirect.github.com/roele) in [#&#8203;7488](https://redirect.github.com/jdx/mise/pull/7488) - **(hooks)** revert per-tool hook execution by [@&#8203;just-be-dev](https://redirect.github.com/just-be-dev) in [#&#8203;7509](https://redirect.github.com/jdx/mise/pull/7509) - **(release)** sync subcrate versions and use YYYY.MM.0 calver by [@&#8203;jdx](https://redirect.github.com/jdx) in [#&#8203;7516](https://redirect.github.com/jdx/mise/pull/7516) - **(schema)** add shell\_alias definition by [@&#8203;anp](https://redirect.github.com/anp) in [#&#8203;7441](https://redirect.github.com/jdx/mise/pull/7441) - **(schema)** add prepare config by [@&#8203;risu729](https://redirect.github.com/risu729) in [#&#8203;7497](https://redirect.github.com/jdx/mise/pull/7497) - **(test)** update backend\_arg test to use clojure instead of poetry by [@&#8203;jdx](https://redirect.github.com/jdx) in [#&#8203;7436](https://redirect.github.com/jdx/mise/pull/7436) - use vfox backend for poetry and fix related tests by [@&#8203;jdx](https://redirect.github.com/jdx) in [#&#8203;7445](https://redirect.github.com/jdx/mise/pull/7445) ##### 📚 Documentation - **(prepare)** add all source files to sources by [@&#8203;risu729](https://redirect.github.com/risu729) in [#&#8203;7498](https://redirect.github.com/jdx/mise/pull/7498) - add link to COPR package page for Fedora/RHEL by [@&#8203;jdx](https://redirect.github.com/jdx) in [bc8ac73](https://redirect.github.com/jdx/mise/commit/bc8ac732e3bdecfd12affd7b8c54cdebcdb87da1) - improve installation documentation by [@&#8203;jdx](https://redirect.github.com/jdx) in [#&#8203;7403](https://redirect.github.com/jdx/mise/pull/7403) - add comprehensive glossary by [@&#8203;jdx](https://redirect.github.com/jdx) in [#&#8203;7401](https://redirect.github.com/jdx/mise/pull/7401) - use `mise run` uniformly in its examples by [@&#8203;muzimuzhi](https://redirect.github.com/muzimuzhi) in [#&#8203;7444](https://redirect.github.com/jdx/mise/pull/7444) - update source file for asset autodetection by [@&#8203;muzimuzhi](https://redirect.github.com/muzimuzhi) in [#&#8203;7513](https://redirect.github.com/jdx/mise/pull/7513) ##### 🧪 Testing - **(ci)** validate GitHub token from pool with API call by [@&#8203;jdx](https://redirect.github.com/jdx) in [#&#8203;7459](https://redirect.github.com/jdx/mise/pull/7459) - rename duplicate 'ci' job names for clarity by [@&#8203;jdx](https://redirect.github.com/jdx) in [#&#8203;7398](https://redirect.github.com/jdx/mise/pull/7398) - add token pool integration for rate limit distribution by [@&#8203;jdx](https://redirect.github.com/jdx) in [#&#8203;7397](https://redirect.github.com/jdx/mise/pull/7397) ##### 📦️ Dependency Updates - replace dependency [@&#8203;tsconfig/node18](https://redirect.github.com/tsconfig/node18) with [@&#8203;tsconfig/node20](https://redirect.github.com/tsconfig/node20) by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7450](https://redirect.github.com/jdx/mise/pull/7450) - pin rui314/setup-mold action to [`725a879`](https://redirect.github.com/jdx/mise/commit/725a879) by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7449](https://redirect.github.com/jdx/mise/pull/7449) ##### 📦 Registry - add github backend for swiftformat by [@&#8203;jdx](https://redirect.github.com/jdx) in [#&#8203;7396](https://redirect.github.com/jdx/mise/pull/7396) - use pipx backend for azure-cli by [@&#8203;jdx](https://redirect.github.com/jdx) in [#&#8203;7406](https://redirect.github.com/jdx/mise/pull/7406) - use pipx backend for dvc by [@&#8203;jdx](https://redirect.github.com/jdx) in [#&#8203;7413](https://redirect.github.com/jdx/mise/pull/7413) - add github backend for zprint by [@&#8203;jdx](https://redirect.github.com/jdx) in [#&#8203;7410](https://redirect.github.com/jdx/mise/pull/7410) - use gem backend for cocoapods by [@&#8203;jdx](https://redirect.github.com/jdx) in [#&#8203;7411](https://redirect.github.com/jdx/mise/pull/7411) - use pipx backend for gallery-dl by [@&#8203;jdx](https://redirect.github.com/jdx) in [#&#8203;7409](https://redirect.github.com/jdx/mise/pull/7409) - add aqua backends for HashiCorp tools by [@&#8203;jdx](https://redirect.github.com/jdx) in [#&#8203;7408](https://redirect.github.com/jdx/mise/pull/7408) - use npm backend for danger-js by [@&#8203;jdx](https://redirect.github.com/jdx) in [#&#8203;7407](https://redirect.github.com/jdx/mise/pull/7407) - use pipx backend for pipenv by [@&#8203;jdx](https://redirect.github.com/jdx) in [#&#8203;7415](https://redirect.github.com/jdx/mise/pull/7415) - use pipx backend for poetry by [@&#8203;jdx](https://redirect.github.com/jdx) in [#&#8203;7416](https://redirect.github.com/jdx/mise/pull/7416) - add github backend for xcodegen ([github:yonaskolb/XcodeGen](https://redirect.github.com/yonaskolb/XcodeGen)) by [@&#8203;jdx](https://redirect.github.com/jdx) in [#&#8203;7417](https://redirect.github.com/jdx/mise/pull/7417) - use npm backend for heroku by [@&#8203;jdx](https://redirect.github.com/jdx) in [#&#8203;7418](https://redirect.github.com/jdx/mise/pull/7418) - add aqua backend for setup-envtest by [@&#8203;jdx](https://redirect.github.com/jdx) in [#&#8203;7421](https://redirect.github.com/jdx/mise/pull/7421) - add github backend for xcresultparser ([github:a7ex/xcresultparser](https://redirect.github.com/a7ex/xcresultparser)) by [@&#8203;jdx](https://redirect.github.com/jdx) in [#&#8203;7422](https://redirect.github.com/jdx/mise/pull/7422) - add aqua backend for tomcat by [@&#8203;jdx](https://redirect.github.com/jdx) in [#&#8203;7423](https://redirect.github.com/jdx/mise/pull/7423) - use npm backend for serverless by [@&#8203;jdx](https://redirect.github.com/jdx) in [#&#8203;7424](https://redirect.github.com/jdx/mise/pull/7424) - add github backend for daytona ([github:daytonaio/daytona](https://redirect.github.com/daytonaio/daytona)) by [@&#8203;jdx](https://redirect.github.com/jdx) in [#&#8203;7412](https://redirect.github.com/jdx/mise/pull/7412) - add github backend for flyway ([github:flyway/flyway](https://redirect.github.com/flyway/flyway)) by [@&#8203;jdx](https://redirect.github.com/jdx) in [#&#8203;7414](https://redirect.github.com/jdx/mise/pull/7414) - add github backend for schemacrawler ([github:schemacrawler/SchemaCrawler](https://redirect.github.com/schemacrawler/SchemaCrawler)) by [@&#8203;jdx](https://redirect.github.com/jdx) in [#&#8203;7419](https://redirect.github.com/jdx/mise/pull/7419) - add github backend for codeql by [@&#8203;jdx](https://redirect.github.com/jdx) in [#&#8203;7420](https://redirect.github.com/jdx/mise/pull/7420) - use pipx backend for mitmproxy by [@&#8203;jdx](https://redirect.github.com/jdx) in [#&#8203;7425](https://redirect.github.com/jdx/mise/pull/7425) - use pipx backend for sshuttle by [@&#8203;jdx](https://redirect.github.com/jdx) in [#&#8203;7426](https://redirect.github.com/jdx/mise/pull/7426) - add github backend for quarkus by [@&#8203;jdx](https://redirect.github.com/jdx) in [#&#8203;7428](https://redirect.github.com/jdx/mise/pull/7428) - add github backend for smithy by [@&#8203;jdx](https://redirect.github.com/jdx) in [#&#8203;7430](https://redirect.github.com/jdx/mise/pull/7430) - add github backend for xchtmlreport ([github:XCTestHTMLReport/XCTestHTMLReport](https://redirect.github.com/XCTestHTMLReport/XCTestHTMLReport)) by [@&#8203;jdx](https://redirect.github.com/jdx) in [#&#8203;7431](https://redirect.github.com/jdx/mise/pull/7431) - add github backend for grails by [@&#8203;jdx](https://redirect.github.com/jdx) in [#&#8203;7429](https://redirect.github.com/jdx/mise/pull/7429) - use npm backend for esy by [@&#8203;jdx](https://redirect.github.com/jdx) in [#&#8203;7434](https://redirect.github.com/jdx/mise/pull/7434) - add github backend for micronaut by [@&#8203;jdx](https://redirect.github.com/jdx) in [#&#8203;7433](https://redirect.github.com/jdx/mise/pull/7433) - add github backend for dome by [@&#8203;jdx](https://redirect.github.com/jdx) in [#&#8203;7432](https://redirect.github.com/jdx/mise/pull/7432) - use vfox backend for poetry by [@&#8203;jdx](https://redirect.github.com/jdx) in [#&#8203;7438](https://redirect.github.com/jdx/mise/pull/7438) - add vfox backend for pipenv by [@&#8203;jdx](https://redirect.github.com/jdx) in [#&#8203;7439](https://redirect.github.com/jdx/mise/pull/7439) - use github backend for xchtmlreport by [@&#8203;jdx](https://redirect.github.com/jdx) in [#&#8203;7442](https://redirect.github.com/jdx/mise/pull/7442) - use npm backend for purty by [@&#8203;jdx](https://redirect.github.com/jdx) in [#&#8203;7443](https://redirect.github.com/jdx/mise/pull/7443) - add micromamba tool definition by [@&#8203;x9xhack](https://redirect.github.com/x9xhack) in [#&#8203;7475](https://redirect.github.com/jdx/mise/pull/7475) - add github backend for rumdl by [@&#8203;kvokka](https://redirect.github.com/kvokka) in [#&#8203;7494](https://redirect.github.com/jdx/mise/pull/7494) - add github backend for ty by [@&#8203;kvokka](https://redirect.github.com/kvokka) in [#&#8203;7495](https://redirect.github.com/jdx/mise/pull/7495) - add kopia by [@&#8203;ldrouard](https://redirect.github.com/ldrouard) in [#&#8203;7501](https://redirect.github.com/jdx/mise/pull/7501) - add d2 by [@&#8203;icholy](https://redirect.github.com/icholy) in [#&#8203;7514](https://redirect.github.com/jdx/mise/pull/7514) ##### Chore - **(docker)** add Node LTS to mise Docker image by [@&#8203;jdx](https://redirect.github.com/jdx) in [#&#8203;7405](https://redirect.github.com/jdx/mise/pull/7405) - rename mise-tools to mise-versions by [@&#8203;jdx](https://redirect.github.com/jdx) in [ab3e1b8](https://redirect.github.com/jdx/mise/commit/ab3e1b8e64c2aa881c43af7636d6b492c6001e6f) - s/mise task/mise tasks/g in docs and tests by [@&#8203;muzimuzhi](https://redirect.github.com/muzimuzhi) in [#&#8203;7400](https://redirect.github.com/jdx/mise/pull/7400) - update singular/plural forms for word "task" by [@&#8203;muzimuzhi](https://redirect.github.com/muzimuzhi) in [#&#8203;7448](https://redirect.github.com/jdx/mise/pull/7448) ##### New Contributors - [@&#8203;icholy](https://redirect.github.com/icholy) made their first contribution in [#&#8203;7514](https://redirect.github.com/jdx/mise/pull/7514) - [@&#8203;Maks3w](https://redirect.github.com/Maks3w) made their first contribution in [#&#8203;7485](https://redirect.github.com/jdx/mise/pull/7485) - [@&#8203;muzimuzhi](https://redirect.github.com/muzimuzhi) made their first contribution in [#&#8203;7513](https://redirect.github.com/jdx/mise/pull/7513) - [@&#8203;just-be-dev](https://redirect.github.com/just-be-dev) made their first contribution in [#&#8203;7509](https://redirect.github.com/jdx/mise/pull/7509) - [@&#8203;kvokka](https://redirect.github.com/kvokka) made their first contribution in [#&#8203;7495](https://redirect.github.com/jdx/mise/pull/7495) - [@&#8203;x9xhack](https://redirect.github.com/x9xhack) made their first contribution in [#&#8203;7475](https://redirect.github.com/jdx/mise/pull/7475) - [@&#8203;anp](https://redirect.github.com/anp) made their first contribution in [#&#8203;7441](https://redirect.github.com/jdx/mise/pull/7441) </details> <details> <summary>jdx/usage (jdx/usage)</summary> ### [`v2.11.0`](https://redirect.github.com/jdx/usage/releases/tag/v2.11.0) [Compare Source](https://redirect.github.com/jdx/usage/compare/v2.10.0...v2.11.0) #### \[2.11.0] - 2025-12-31 ### [`v2.10.0`](https://redirect.github.com/jdx/usage/releases/tag/v2.10.0) [Compare Source](https://redirect.github.com/jdx/usage/compare/v2.9.0...v2.10.0) #### \[2.10.0] - 2025-12-19 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "after 4pm on thursday" in timezone America/Los_Angeles, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/scottames/dots). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi42OS4xIiwidXBkYXRlZEluVmVyIjoiNDIuNjkuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: scottames-github-bot[bot] <162828115+scottames-github-bot[bot]@users.noreply.github.com>
1 parent 251cf7f commit 738a340

File tree

2 files changed

+32
-32
lines changed

2 files changed

+32
-32
lines changed

aqua/aqua-checksums.json

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -96,23 +96,23 @@
9696
"algorithm": "sha256"
9797
},
9898
{
99-
"id": "github_release/github.com/casey/just/1.45.0/just-1.45.0-aarch64-apple-darwin.tar.gz",
100-
"checksum": "5BCFFD1E4B2B24F71A2ACFF52A604E9DA03615679C0B3045A8C921C95CF1532C",
99+
"id": "github_release/github.com/casey/just/1.46.0/just-1.46.0-aarch64-apple-darwin.tar.gz",
100+
"checksum": "438EAF6468A115AA7DB93E501CC7E3272F453F6B7083BE3863ADFAB546B23358",
101101
"algorithm": "sha256"
102102
},
103103
{
104-
"id": "github_release/github.com/casey/just/1.45.0/just-1.45.0-aarch64-unknown-linux-musl.tar.gz",
105-
"checksum": "E9D629D3903EA2B6B2BBCB569E69D62BC80B0E6ADCCE280094C8FFB6DBDF83D2",
104+
"id": "github_release/github.com/casey/just/1.46.0/just-1.46.0-aarch64-unknown-linux-musl.tar.gz",
105+
"checksum": "B81970C8247FA64CFB30D2A3DA0E487E4253F9F2D01865ED5E7D53CDC7B02188",
106106
"algorithm": "sha256"
107107
},
108108
{
109-
"id": "github_release/github.com/casey/just/1.45.0/just-1.45.0-x86_64-apple-darwin.tar.gz",
110-
"checksum": "913C4FDD5B15B9A74529ECEC80D06EB21A2FF8936B2DEEBC69C0F4D495126553",
109+
"id": "github_release/github.com/casey/just/1.46.0/just-1.46.0-x86_64-apple-darwin.tar.gz",
110+
"checksum": "EC54DD60AC876261B7318F1852EF9C0319FEDE1E5A73C14F56D908A8EDF595B8",
111111
"algorithm": "sha256"
112112
},
113113
{
114-
"id": "github_release/github.com/casey/just/1.45.0/just-1.45.0-x86_64-unknown-linux-musl.tar.gz",
115-
"checksum": "DC3F958AAF8C6506DD90426E9B03F86DD15E74A6467EE0E54929F750AF3D9E49",
114+
"id": "github_release/github.com/casey/just/1.46.0/just-1.46.0-x86_64-unknown-linux-musl.tar.gz",
115+
"checksum": "79966E6E353F535EE7D1C6221641BCC8E3381C55B0D0A6DC6E54B34F9DB36EAA",
116116
"algorithm": "sha256"
117117
},
118118
{
@@ -426,18 +426,18 @@
426426
"algorithm": "sha256"
427427
},
428428
{
429-
"id": "github_release/github.com/gohugoio/hugo/v0.153.5/hugo_0.153.5_darwin-universal.pkg",
430-
"checksum": "CF6AFC9BAFEFF65DAB368EF3B5F168119D79B80572A5EC2A42653EE9110A2428",
429+
"id": "github_release/github.com/gohugoio/hugo/v0.154.2/hugo_0.154.2_darwin-universal.pkg",
430+
"checksum": "32AB14BCFDC2C7CE39723939791E4112E33CD7465D3FD167E0BEA1CB718FA71A",
431431
"algorithm": "sha256"
432432
},
433433
{
434-
"id": "github_release/github.com/gohugoio/hugo/v0.153.5/hugo_0.153.5_linux-amd64.tar.gz",
435-
"checksum": "16439F42EC6EB3699BBB8BFDDE29E18211C7287A096246136B0D50CCCC0A7195",
434+
"id": "github_release/github.com/gohugoio/hugo/v0.154.2/hugo_0.154.2_linux-amd64.tar.gz",
435+
"checksum": "6473B8FE2FF0A5B13AF217EB780F3A03AA34D43BA4506314C6156F11074A418D",
436436
"algorithm": "sha256"
437437
},
438438
{
439-
"id": "github_release/github.com/gohugoio/hugo/v0.153.5/hugo_0.153.5_linux-arm64.tar.gz",
440-
"checksum": "95462A0013D65B6B149CD093EB0AA56889E08FC04E11736DEA59CFAF756D29EE",
439+
"id": "github_release/github.com/gohugoio/hugo/v0.154.2/hugo_0.154.2_linux-arm64.tar.gz",
440+
"checksum": "C4123651DD226484D360FCCF84429C441254A1553894C2A8A5D0AB71FFBD8F2D",
441441
"algorithm": "sha256"
442442
},
443443
{
@@ -521,38 +521,38 @@
521521
"algorithm": "sha256"
522522
},
523523
{
524-
"id": "github_release/github.com/jdx/mise/v2025.12.12/mise-v2025.12.12-linux-arm64-musl.tar.gz",
525-
"checksum": "8875845EAF270E174D63C41C1FE629D893B7CC78BC9BE494B2F81F8F1B98217B",
524+
"id": "github_release/github.com/jdx/mise/v2025.12.13/mise-v2025.12.13-linux-arm64-musl.tar.gz",
525+
"checksum": "574954F475EE0B069B0A56D1F39E4656EC9EA9351A14BD47131220DD5203ADFE",
526526
"algorithm": "sha256"
527527
},
528528
{
529-
"id": "github_release/github.com/jdx/mise/v2025.12.12/mise-v2025.12.12-linux-x64-musl.tar.gz",
530-
"checksum": "F4BAC31B7317690F421184B10FB7920AE43D71316889B0DF8A7A10FBB3E0B844",
529+
"id": "github_release/github.com/jdx/mise/v2025.12.13/mise-v2025.12.13-linux-x64-musl.tar.gz",
530+
"checksum": "FDC80F994D17E28C4DD1497723FCE771FDC4134A92A3A2C9B69D4E608BDAA2CE",
531531
"algorithm": "sha256"
532532
},
533533
{
534-
"id": "github_release/github.com/jdx/mise/v2025.12.12/mise-v2025.12.12-macos-arm64.tar.gz",
535-
"checksum": "2A44DAD05D75A2D2539AA6B5B57F9A6DC68937A359EFBD312DD6A12997D6DF84",
534+
"id": "github_release/github.com/jdx/mise/v2025.12.13/mise-v2025.12.13-macos-arm64.tar.gz",
535+
"checksum": "9AFD3D73355307B2708EACB060D10E8FE344603510D7AA47CDB2F4DD29F872C8",
536536
"algorithm": "sha256"
537537
},
538538
{
539-
"id": "github_release/github.com/jdx/mise/v2025.12.12/mise-v2025.12.12-macos-x64.tar.gz",
540-
"checksum": "96EB9E0C05EDA0DD2520BD56425C0202C889C947BADFE8E9EFF54A5EEC71EE61",
539+
"id": "github_release/github.com/jdx/mise/v2025.12.13/mise-v2025.12.13-macos-x64.tar.gz",
540+
"checksum": "95FFF48912EC9E10A221076541F5ED0AFA3FF6843D352AF3D2AB46CADAF74A6A",
541541
"algorithm": "sha256"
542542
},
543543
{
544-
"id": "github_release/github.com/jdx/usage/v2.9.0/usage-aarch64-unknown-linux-musl.tar.gz",
545-
"checksum": "C4D47DAD7271BEDD45E643FDF07BFD5B8B409E053D29EA25646010CE2D185D64",
544+
"id": "github_release/github.com/jdx/usage/v2.11.0/usage-aarch64-unknown-linux-musl.tar.gz",
545+
"checksum": "850D04145EC52D859FCC5EFDCAB178A697155CF904FD8DDA24C127DE67AE0C69",
546546
"algorithm": "sha256"
547547
},
548548
{
549-
"id": "github_release/github.com/jdx/usage/v2.9.0/usage-universal-apple-darwin.tar.gz",
550-
"checksum": "F91655ABAC0EFDC56D608D2A846671F31DCC00A5304D64F99A095B0449BB7076",
549+
"id": "github_release/github.com/jdx/usage/v2.11.0/usage-universal-apple-darwin.tar.gz",
550+
"checksum": "FA1A8F1D8BE4D4D2D3F0C49FA95265C170546EFFB322B2C7BCA25E2BC3B8B916",
551551
"algorithm": "sha256"
552552
},
553553
{
554-
"id": "github_release/github.com/jdx/usage/v2.9.0/usage-x86_64-unknown-linux-musl.tar.gz",
555-
"checksum": "186AC8AAEEBD5CAE856AC048C4DA8AA20F4E81DEBE065A03DB5082439647B8F9",
554+
"id": "github_release/github.com/jdx/usage/v2.11.0/usage-x86_64-unknown-linux-musl.tar.gz",
555+
"checksum": "B8AB78820A5E07CE0A2413A1E86C653B4E0781E472EA47D09B07948BE1069055",
556556
"algorithm": "sha256"
557557
},
558558
{

aqua/aqua.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ packages:
118118
# https://github.com/nektos/act
119119
- name: nektos/act@v0.2.84
120120
# https://github.com/casey/just
121-
- name: casey/just@1.45.0
121+
- name: casey/just@1.46.0
122122
# go version manager
123123
# https://github.com/kevincobain2000/gobrew
124124
- name: kevincobain2000/gobrew@v1.10.15
@@ -209,10 +209,10 @@ packages:
209209
- name: lasantosr/intelli-shell@v3.3.1
210210
# The world’s fastest framework for building websites.
211211
# https://github.com/gohugoio/hugo
212-
- name: gohugoio/hugo@v0.153.5
212+
- name: gohugoio/hugo@v0.154.2
213213
# dev tools, env vars, task runner
214214
# https://github.com/jdx/mise
215-
- name: jdx/mise@v2025.12.12
215+
- name: jdx/mise@v2025.12.13
216216
# A specification for CLIs
217217
# https://github.com/jdx/usage
218-
- name: jdx/usage@v2.9.0
218+
- name: jdx/usage@v2.11.0

0 commit comments

Comments
 (0)