Commit 738a340
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
([#​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
([#​3041](https://redirect.github.com/casey/just/pull/3041) by
[casey](https://redirect.github.com/casey))
- Allow const expressions in all settings
([#​3037](https://redirect.github.com/casey/just/pull/3037) by
[casey](https://redirect.github.com/casey))
- Allow const expressions in `working-directory`
([#​3033](https://redirect.github.com/casey/just/pull/3033) by
[casey](https://redirect.github.com/casey))
- Add --usage subcommand and argument help strings
([#​3031](https://redirect.github.com/casey/just/pull/3031) by
[casey](https://redirect.github.com/casey))
- Add flags without values
([#​3029](https://redirect.github.com/casey/just/pull/3029) by
[casey](https://redirect.github.com/casey))
- Allow passing arguments as short `-x` options
([#​3028](https://redirect.github.com/casey/just/pull/3028) by
[casey](https://redirect.github.com/casey))
- Allow recipes to take `--long` options
([#​3026](https://redirect.github.com/casey/just/pull/3026) by
[casey](https://redirect.github.com/casey))
##### Misc
- Add original token to string literal
([#​3042](https://redirect.github.com/casey/just/pull/3042) by
[casey](https://redirect.github.com/casey))
- Remove string literal lifetime
([#​3036](https://redirect.github.com/casey/just/pull/3036) by
[casey](https://redirect.github.com/casey))
- Move overrides into config
([#​3032](https://redirect.github.com/casey/just/pull/3032) by
[casey](https://redirect.github.com/casey))
- Test that options are passed as positional arguments
([#​3030](https://redirect.github.com/casey/just/pull/3030) by
[casey](https://redirect.github.com/casey))
- Group arguments by parameter
([#​3025](https://redirect.github.com/casey/just/pull/3025) by
[casey](https://redirect.github.com/casey))
- Add OpenBSD package to readme
([#​2900](https://redirect.github.com/casey/just/pull/2900) by
[vext01](https://redirect.github.com/vext01))
- Re-enable mdbook-linkcheck
([#​3011](https://redirect.github.com/casey/just/pull/3011) by
[casey](https://redirect.github.com/casey))
- Disable dependabot
([#​3010](https://redirect.github.com/casey/just/pull/3010) by
[casey](https://redirect.github.com/casey))
- Fix pre-release check in pages deploy job
([#​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)
[@​bep](https://redirect.github.com/bep)
[#​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)
[@​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)
[@​bep](https://redirect.github.com/bep)
[#​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,
[@​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)
[@​bep](https://redirect.github.com/bep)
[#​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)
[@​bep](https://redirect.github.com/bep)
[#​14104](https://redirect.github.com/gohugoio/hugo/issues/14104)
[#​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)
[@​majiayu000](https://redirect.github.com/majiayu000)
[#​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)
[@​bep](https://redirect.github.com/bep)
- internal/warpc: Increase WebP memory limit to 384 MiB
[`871da33`](https://redirect.github.com/gohugoio/hugo/commit/871da337)
[@​jmooring](https://redirect.github.com/jmooring)
[#​14309](https://redirect.github.com/gohugoio/hugo/issues/14309)
- Update tpl/reflect/reflect.go
[`1deec99`](https://redirect.github.com/gohugoio/hugo/commit/1deec99b)
[@​bep](https://redirect.github.com/bep)
- Add reflect.Is{Page,Site,Resource,ImageResource}
[`b7bb557`](https://redirect.github.com/gohugoio/hugo/commit/b7bb557c)
[@​bep](https://redirect.github.com/bep)
[#​14307](https://redirect.github.com/gohugoio/hugo/issues/14307)
- Allow partials to work as decorators
[`7c19c19`](https://redirect.github.com/gohugoio/hugo/commit/7c19c196)
[@​bep](https://redirect.github.com/bep)
[#​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)
[@​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
[@​jdx](https://redirect.github.com/jdx) in
[#​7457](https://redirect.github.com/jdx/mise/pull/7457)
- **(tera)** add haiku() function for random name generation by
[@​jdx](https://redirect.github.com/jdx) in
[#​7399](https://redirect.github.com/jdx/mise/pull/7399)
- **(vfox)** pass tool options to EnvKeys hook by
[@​jdx](https://redirect.github.com/jdx) in
[#​7447](https://redirect.github.com/jdx/mise/pull/7447)
- implement independent versioning for subcrates by
[@​jdx](https://redirect.github.com/jdx) in
[#​7402](https://redirect.github.com/jdx/mise/pull/7402)
- Move iTerm to OSC9;4 supported terminals by
[@​Maks3w](https://redirect.github.com/Maks3w) in
[#​7485](https://redirect.github.com/jdx/mise/pull/7485)
##### 🐛 Bug Fixes
- **(ci)** improve GHA cache efficiency and fix registry-ci bug by
[@​jdx](https://redirect.github.com/jdx) in
[#​7404](https://redirect.github.com/jdx/mise/pull/7404)
- **(ci)** use !cancelled() instead of always() for registry-ci by
[@​jdx](https://redirect.github.com/jdx) in
[#​7435](https://redirect.github.com/jdx/mise/pull/7435)
- **(ci)** bump taiki-e/install-action 2.61.10 to 2.65.5 by
[@​kvokka](https://redirect.github.com/kvokka) in
[#​7496](https://redirect.github.com/jdx/mise/pull/7496)
- **(e2e)** use explicit asdf backend for zprint in plugin\_install test
by [@​jdx](https://redirect.github.com/jdx) in
[#​7440](https://redirect.github.com/jdx/mise/pull/7440)
- **(github)** use GITHUB\_TOKEN for attestation verification by
[@​jdx](https://redirect.github.com/jdx) in
[#​7446](https://redirect.github.com/jdx/mise/pull/7446)
- **(go)** filter out go pre-release versions in ls-remote by
[@​roele](https://redirect.github.com/roele) in
[#​7488](https://redirect.github.com/jdx/mise/pull/7488)
- **(hooks)** revert per-tool hook execution by
[@​just-be-dev](https://redirect.github.com/just-be-dev) in
[#​7509](https://redirect.github.com/jdx/mise/pull/7509)
- **(release)** sync subcrate versions and use YYYY.MM.0 calver by
[@​jdx](https://redirect.github.com/jdx) in
[#​7516](https://redirect.github.com/jdx/mise/pull/7516)
- **(schema)** add shell\_alias definition by
[@​anp](https://redirect.github.com/anp) in
[#​7441](https://redirect.github.com/jdx/mise/pull/7441)
- **(schema)** add prepare config by
[@​risu729](https://redirect.github.com/risu729) in
[#​7497](https://redirect.github.com/jdx/mise/pull/7497)
- **(test)** update backend\_arg test to use clojure instead of poetry
by [@​jdx](https://redirect.github.com/jdx) in
[#​7436](https://redirect.github.com/jdx/mise/pull/7436)
- use vfox backend for poetry and fix related tests by
[@​jdx](https://redirect.github.com/jdx) in
[#​7445](https://redirect.github.com/jdx/mise/pull/7445)
##### 📚 Documentation
- **(prepare)** add all source files to sources by
[@​risu729](https://redirect.github.com/risu729) in
[#​7498](https://redirect.github.com/jdx/mise/pull/7498)
- add link to COPR package page for Fedora/RHEL by
[@​jdx](https://redirect.github.com/jdx) in
[bc8ac73](https://redirect.github.com/jdx/mise/commit/bc8ac732e3bdecfd12affd7b8c54cdebcdb87da1)
- improve installation documentation by
[@​jdx](https://redirect.github.com/jdx) in
[#​7403](https://redirect.github.com/jdx/mise/pull/7403)
- add comprehensive glossary by
[@​jdx](https://redirect.github.com/jdx) in
[#​7401](https://redirect.github.com/jdx/mise/pull/7401)
- use `mise run` uniformly in its examples by
[@​muzimuzhi](https://redirect.github.com/muzimuzhi) in
[#​7444](https://redirect.github.com/jdx/mise/pull/7444)
- update source file for asset autodetection by
[@​muzimuzhi](https://redirect.github.com/muzimuzhi) in
[#​7513](https://redirect.github.com/jdx/mise/pull/7513)
##### 🧪 Testing
- **(ci)** validate GitHub token from pool with API call by
[@​jdx](https://redirect.github.com/jdx) in
[#​7459](https://redirect.github.com/jdx/mise/pull/7459)
- rename duplicate 'ci' job names for clarity by
[@​jdx](https://redirect.github.com/jdx) in
[#​7398](https://redirect.github.com/jdx/mise/pull/7398)
- add token pool integration for rate limit distribution by
[@​jdx](https://redirect.github.com/jdx) in
[#​7397](https://redirect.github.com/jdx/mise/pull/7397)
##### 📦️ Dependency Updates
- replace dependency
[@​tsconfig/node18](https://redirect.github.com/tsconfig/node18)
with
[@​tsconfig/node20](https://redirect.github.com/tsconfig/node20)
by [@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​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
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​7449](https://redirect.github.com/jdx/mise/pull/7449)
##### 📦 Registry
- add github backend for swiftformat by
[@​jdx](https://redirect.github.com/jdx) in
[#​7396](https://redirect.github.com/jdx/mise/pull/7396)
- use pipx backend for azure-cli by
[@​jdx](https://redirect.github.com/jdx) in
[#​7406](https://redirect.github.com/jdx/mise/pull/7406)
- use pipx backend for dvc by
[@​jdx](https://redirect.github.com/jdx) in
[#​7413](https://redirect.github.com/jdx/mise/pull/7413)
- add github backend for zprint by
[@​jdx](https://redirect.github.com/jdx) in
[#​7410](https://redirect.github.com/jdx/mise/pull/7410)
- use gem backend for cocoapods by
[@​jdx](https://redirect.github.com/jdx) in
[#​7411](https://redirect.github.com/jdx/mise/pull/7411)
- use pipx backend for gallery-dl by
[@​jdx](https://redirect.github.com/jdx) in
[#​7409](https://redirect.github.com/jdx/mise/pull/7409)
- add aqua backends for HashiCorp tools by
[@​jdx](https://redirect.github.com/jdx) in
[#​7408](https://redirect.github.com/jdx/mise/pull/7408)
- use npm backend for danger-js by
[@​jdx](https://redirect.github.com/jdx) in
[#​7407](https://redirect.github.com/jdx/mise/pull/7407)
- use pipx backend for pipenv by
[@​jdx](https://redirect.github.com/jdx) in
[#​7415](https://redirect.github.com/jdx/mise/pull/7415)
- use pipx backend for poetry by
[@​jdx](https://redirect.github.com/jdx) in
[#​7416](https://redirect.github.com/jdx/mise/pull/7416)
- add github backend for xcodegen
([github:yonaskolb/XcodeGen](https://redirect.github.com/yonaskolb/XcodeGen))
by [@​jdx](https://redirect.github.com/jdx) in
[#​7417](https://redirect.github.com/jdx/mise/pull/7417)
- use npm backend for heroku by
[@​jdx](https://redirect.github.com/jdx) in
[#​7418](https://redirect.github.com/jdx/mise/pull/7418)
- add aqua backend for setup-envtest by
[@​jdx](https://redirect.github.com/jdx) in
[#​7421](https://redirect.github.com/jdx/mise/pull/7421)
- add github backend for xcresultparser
([github:a7ex/xcresultparser](https://redirect.github.com/a7ex/xcresultparser))
by [@​jdx](https://redirect.github.com/jdx) in
[#​7422](https://redirect.github.com/jdx/mise/pull/7422)
- add aqua backend for tomcat by
[@​jdx](https://redirect.github.com/jdx) in
[#​7423](https://redirect.github.com/jdx/mise/pull/7423)
- use npm backend for serverless by
[@​jdx](https://redirect.github.com/jdx) in
[#​7424](https://redirect.github.com/jdx/mise/pull/7424)
- add github backend for daytona
([github:daytonaio/daytona](https://redirect.github.com/daytonaio/daytona))
by [@​jdx](https://redirect.github.com/jdx) in
[#​7412](https://redirect.github.com/jdx/mise/pull/7412)
- add github backend for flyway
([github:flyway/flyway](https://redirect.github.com/flyway/flyway)) by
[@​jdx](https://redirect.github.com/jdx) in
[#​7414](https://redirect.github.com/jdx/mise/pull/7414)
- add github backend for schemacrawler
([github:schemacrawler/SchemaCrawler](https://redirect.github.com/schemacrawler/SchemaCrawler))
by [@​jdx](https://redirect.github.com/jdx) in
[#​7419](https://redirect.github.com/jdx/mise/pull/7419)
- add github backend for codeql by
[@​jdx](https://redirect.github.com/jdx) in
[#​7420](https://redirect.github.com/jdx/mise/pull/7420)
- use pipx backend for mitmproxy by
[@​jdx](https://redirect.github.com/jdx) in
[#​7425](https://redirect.github.com/jdx/mise/pull/7425)
- use pipx backend for sshuttle by
[@​jdx](https://redirect.github.com/jdx) in
[#​7426](https://redirect.github.com/jdx/mise/pull/7426)
- add github backend for quarkus by
[@​jdx](https://redirect.github.com/jdx) in
[#​7428](https://redirect.github.com/jdx/mise/pull/7428)
- add github backend for smithy by
[@​jdx](https://redirect.github.com/jdx) in
[#​7430](https://redirect.github.com/jdx/mise/pull/7430)
- add github backend for xchtmlreport
([github:XCTestHTMLReport/XCTestHTMLReport](https://redirect.github.com/XCTestHTMLReport/XCTestHTMLReport))
by [@​jdx](https://redirect.github.com/jdx) in
[#​7431](https://redirect.github.com/jdx/mise/pull/7431)
- add github backend for grails by
[@​jdx](https://redirect.github.com/jdx) in
[#​7429](https://redirect.github.com/jdx/mise/pull/7429)
- use npm backend for esy by
[@​jdx](https://redirect.github.com/jdx) in
[#​7434](https://redirect.github.com/jdx/mise/pull/7434)
- add github backend for micronaut by
[@​jdx](https://redirect.github.com/jdx) in
[#​7433](https://redirect.github.com/jdx/mise/pull/7433)
- add github backend for dome by
[@​jdx](https://redirect.github.com/jdx) in
[#​7432](https://redirect.github.com/jdx/mise/pull/7432)
- use vfox backend for poetry by
[@​jdx](https://redirect.github.com/jdx) in
[#​7438](https://redirect.github.com/jdx/mise/pull/7438)
- add vfox backend for pipenv by
[@​jdx](https://redirect.github.com/jdx) in
[#​7439](https://redirect.github.com/jdx/mise/pull/7439)
- use github backend for xchtmlreport by
[@​jdx](https://redirect.github.com/jdx) in
[#​7442](https://redirect.github.com/jdx/mise/pull/7442)
- use npm backend for purty by
[@​jdx](https://redirect.github.com/jdx) in
[#​7443](https://redirect.github.com/jdx/mise/pull/7443)
- add micromamba tool definition by
[@​x9xhack](https://redirect.github.com/x9xhack) in
[#​7475](https://redirect.github.com/jdx/mise/pull/7475)
- add github backend for rumdl by
[@​kvokka](https://redirect.github.com/kvokka) in
[#​7494](https://redirect.github.com/jdx/mise/pull/7494)
- add github backend for ty by
[@​kvokka](https://redirect.github.com/kvokka) in
[#​7495](https://redirect.github.com/jdx/mise/pull/7495)
- add kopia by [@​ldrouard](https://redirect.github.com/ldrouard)
in [#​7501](https://redirect.github.com/jdx/mise/pull/7501)
- add d2 by [@​icholy](https://redirect.github.com/icholy) in
[#​7514](https://redirect.github.com/jdx/mise/pull/7514)
##### Chore
- **(docker)** add Node LTS to mise Docker image by
[@​jdx](https://redirect.github.com/jdx) in
[#​7405](https://redirect.github.com/jdx/mise/pull/7405)
- rename mise-tools to mise-versions by
[@​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
[@​muzimuzhi](https://redirect.github.com/muzimuzhi) in
[#​7400](https://redirect.github.com/jdx/mise/pull/7400)
- update singular/plural forms for word "task" by
[@​muzimuzhi](https://redirect.github.com/muzimuzhi) in
[#​7448](https://redirect.github.com/jdx/mise/pull/7448)
##### New Contributors
- [@​icholy](https://redirect.github.com/icholy) made their first
contribution in
[#​7514](https://redirect.github.com/jdx/mise/pull/7514)
- [@​Maks3w](https://redirect.github.com/Maks3w) made their first
contribution in
[#​7485](https://redirect.github.com/jdx/mise/pull/7485)
- [@​muzimuzhi](https://redirect.github.com/muzimuzhi) made their
first contribution in
[#​7513](https://redirect.github.com/jdx/mise/pull/7513)
- [@​just-be-dev](https://redirect.github.com/just-be-dev) made
their first contribution in
[#​7509](https://redirect.github.com/jdx/mise/pull/7509)
- [@​kvokka](https://redirect.github.com/kvokka) made their first
contribution in
[#​7495](https://redirect.github.com/jdx/mise/pull/7495)
- [@​x9xhack](https://redirect.github.com/x9xhack) made their
first contribution in
[#​7475](https://redirect.github.com/jdx/mise/pull/7475)
- [@​anp](https://redirect.github.com/anp) made their first
contribution in
[#​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
2 files changed
+32
-32
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
96 | 96 | | |
97 | 97 | | |
98 | 98 | | |
99 | | - | |
100 | | - | |
| 99 | + | |
| 100 | + | |
101 | 101 | | |
102 | 102 | | |
103 | 103 | | |
104 | | - | |
105 | | - | |
| 104 | + | |
| 105 | + | |
106 | 106 | | |
107 | 107 | | |
108 | 108 | | |
109 | | - | |
110 | | - | |
| 109 | + | |
| 110 | + | |
111 | 111 | | |
112 | 112 | | |
113 | 113 | | |
114 | | - | |
115 | | - | |
| 114 | + | |
| 115 | + | |
116 | 116 | | |
117 | 117 | | |
118 | 118 | | |
| |||
426 | 426 | | |
427 | 427 | | |
428 | 428 | | |
429 | | - | |
430 | | - | |
| 429 | + | |
| 430 | + | |
431 | 431 | | |
432 | 432 | | |
433 | 433 | | |
434 | | - | |
435 | | - | |
| 434 | + | |
| 435 | + | |
436 | 436 | | |
437 | 437 | | |
438 | 438 | | |
439 | | - | |
440 | | - | |
| 439 | + | |
| 440 | + | |
441 | 441 | | |
442 | 442 | | |
443 | 443 | | |
| |||
521 | 521 | | |
522 | 522 | | |
523 | 523 | | |
524 | | - | |
525 | | - | |
| 524 | + | |
| 525 | + | |
526 | 526 | | |
527 | 527 | | |
528 | 528 | | |
529 | | - | |
530 | | - | |
| 529 | + | |
| 530 | + | |
531 | 531 | | |
532 | 532 | | |
533 | 533 | | |
534 | | - | |
535 | | - | |
| 534 | + | |
| 535 | + | |
536 | 536 | | |
537 | 537 | | |
538 | 538 | | |
539 | | - | |
540 | | - | |
| 539 | + | |
| 540 | + | |
541 | 541 | | |
542 | 542 | | |
543 | 543 | | |
544 | | - | |
545 | | - | |
| 544 | + | |
| 545 | + | |
546 | 546 | | |
547 | 547 | | |
548 | 548 | | |
549 | | - | |
550 | | - | |
| 549 | + | |
| 550 | + | |
551 | 551 | | |
552 | 552 | | |
553 | 553 | | |
554 | | - | |
555 | | - | |
| 554 | + | |
| 555 | + | |
556 | 556 | | |
557 | 557 | | |
558 | 558 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
118 | 118 | | |
119 | 119 | | |
120 | 120 | | |
121 | | - | |
| 121 | + | |
122 | 122 | | |
123 | 123 | | |
124 | 124 | | |
| |||
209 | 209 | | |
210 | 210 | | |
211 | 211 | | |
212 | | - | |
| 212 | + | |
213 | 213 | | |
214 | 214 | | |
215 | | - | |
| 215 | + | |
216 | 216 | | |
217 | 217 | | |
218 | | - | |
| 218 | + | |
0 commit comments