Skip to content

feat: get pseudo-version from Go Proxy if no tagged version exists#4422

Merged
suzuki-shunsuke merged 4 commits into
aquaproj:mainfrom
gizmoguy:go-pseudo-versions
Dec 23, 2025
Merged

feat: get pseudo-version from Go Proxy if no tagged version exists#4422
suzuki-shunsuke merged 4 commits into
aquaproj:mainfrom
gizmoguy:go-pseudo-versions

Conversation

@gizmoguy
Copy link
Copy Markdown
Contributor

Check List

This PR fixes #4421 by adding the $module/@v/list go proxy API endpoint if @v/list API response is empty.

After this patch is applied, if you define a local registry like this:

packages:
  - type: go_install
    path: golang.org/x/perf/cmd/benchstat
    go_version_path: golang.org/x/perf

And attempt to install benchstat with:

$ aqua generate -i -g -s local,golang.org/x/perf/cmd/benchstat

We will now get a aqua.yaml that has a version set:

packages:
- name: golang.org/x/perf/cmd/benchstat@v0.0.0-20251208221838-04cf7a2dca90
  registry: local

I also tested and this works for upgrading go packages pinned to a pseudo-version with the aqua update command.

Comment thread pkg/versiongetter/goproxy/client.go Outdated

type InfoPayload struct {
Version string
Time time.Time
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

Suggested change
Time time.Time

Time is unused.

Comment thread pkg/versiongetter/goproxy/client.go Outdated
func (c *Client) List(ctx context.Context, path string) ([]string, error) {
b, err := c.doHTTPRequest(ctx, fmt.Sprintf("https://proxy.golang.org/%s/@v/list", path))
if err != nil {
return nil, err
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

err should be wrapped to distinguish list and latest.

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

I see. When list API returns 404, doHTTPRequest returns an error, so latest API never calls.
We should continue the process while outputting debug log.

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

Ah, no logger is passed to List method as argument.
Hmm.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

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

If the /list API endpoint returns 404, we know the /@latest endpoint will also return 404, so it is not required to query both endpoints.

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

I reverted the change. Thank you. c3473bb

@suzuki-shunsuke
Copy link
Copy Markdown
Member

suzuki-shunsuke commented Dec 23, 2025

Hmm. It doesn't work.

$ go run ./cmd/aqua g golang.org/x/perf/cmd/benchstat
- name: golang.org/x/perf/cmd/benchstat
  version: '[SET PACKAGE VERSION]'

I added go_version_path: golang.org/x/perf/cmd/benchstat to https://github.com/aquaproj/aqua-registry/blob/main/pkgs/golang.org/x/perf/cmd/benchstat/registry.yaml , but the result wasn't changed. 🤔

https://aquaproj.github.io/docs/reference/registry-config/go-version-path/

@suzuki-shunsuke
Copy link
Copy Markdown
Member

$ ~/go/bin/aqua -log-level debug g golang.org/x/perf/cmd/benchstat
DEBU[0000] ignore a package alias in the registry because the alias is duplicate  env=darwin/arm64 package_name= program=aqua program_version=v1.0.0-local registry_name=standard registry_package_alias=&{jreisinger/checkip} registry_package_name=jreisinger/checkip
DEBU[0000] retrieve package versions                     api_endpoint=https://proxy.golang.org/golang.org/x/perf/cmd/benchstat/@v/list env=darwin/arm64 error=unexpected status code: 404 program=aqua program_version=v1.0.0-local repository=/
DEBU[0000] retrieve package versions in 702.626125ms     env=darwin/arm64 program=aqua program_version=v1.0.0-local repository=/
WARN[0000] retrieve package versions                     api_endpoint=https://proxy.golang.org/golang.org/x/perf/cmd/benchstat/@latest env=darwin/arm64 error=list versions: retrieve the latest version: unexpected status code: 404 program=aqua program_version=v1.0.0-local repository=/
- name: golang.org/x/perf/cmd/benchstat
  version: '[SET PACKAGE VERSION]'

https://proxy.golang.org/golang.org/x/perf/cmd/benchstat/@latest returns 404.

@suzuki-shunsuke
Copy link
Copy Markdown
Member

suzuki-shunsuke commented Dec 23, 2025

/@latest doesn't return pseudo-version.

$ curl "https://proxy.golang.org/github.com/suzuki-shunsuke/slog-error/@latest"
{"Version":"v0.2.1","Time":"2025-12-05T05:04:05Z","Origin":{"VCS":"git","URL":"https://github.com/suzuki-shunsuke/slog-error","Hash":"c24c9a12709d742f300f1633c079f661812ecf24","Ref":"refs/tags/v0.2.1"}}%                                                                               

$ curl "https://proxy.golang.org/golang.org/x/perf/cmd/benchstat/@latest"      
not found: module golang.org/x/perf/cmd/benchstat: no matching versions for query "latest"% 

@gizmoguy
Copy link
Copy Markdown
Contributor Author

gizmoguy commented Dec 23, 2025

Hmm. It doesn't work.

$ go run ./cmd/aqua g golang.org/x/perf/cmd/benchstat
- name: golang.org/x/perf/cmd/benchstat
  version: '[SET PACKAGE VERSION]'

I added go_version_path: golang.org/x/perf/cmd/benchstat to https://github.com/aquaproj/aqua-registry/blob/main/pkgs/golang.org/x/perf/cmd/benchstat/registry.yaml , but the result wasn't changed. 🤔

https://aquaproj.github.io/docs/reference/registry-config/go-version-path/

go_version_path must be set to the root go module path, so golang.org/x/perf for golang.org/x/perf/cmd/benchstat

The registry configuration needs to look like:

packages:
  - type: go_install
    path: golang.org/x/perf/cmd/benchstat
    go_version_path: golang.org/x/perf

@suzuki-shunsuke
Copy link
Copy Markdown
Member

Ah, I see.

$ curl "https://proxy.golang.org/golang.org/x/perf/@latest"
{"Version":"v0.0.0-20251208221838-04cf7a2dca90","Time":"2025-12-08T22:18:38Z","Origin":{"VCS":"git","URL":"https://go.googlesource.com/perf","Hash":"04cf7a2dca90064b204731fae32fa4e221671c9a"}}%

@suzuki-shunsuke
Copy link
Copy Markdown
Member

I confirmed it works as expected.

Before:

$ aqua -v
aqua version 2.55.3

$ aqua g golang.org/x/perf/cmd/benchstat
- name: golang.org/x/perf/cmd/benchstat
  version: '[SET PACKAGE VERSION]'

After:

$ ~/go/bin/aqua g golang.org/x/perf/cmd/benchstat
- name: golang.org/x/perf/cmd/benchstat@v0.0.0-20251208221838-04cf7a2dca90

@suzuki-shunsuke suzuki-shunsuke added this to the v2.55.4 milestone Dec 23, 2025
@suzuki-shunsuke suzuki-shunsuke merged commit 7b6162b into aquaproj:main Dec 23, 2025
20 checks passed
@github-project-automation github-project-automation Bot moved this to Done in main Dec 23, 2025
@gizmoguy gizmoguy deleted the go-pseudo-versions branch December 23, 2025 10:14
@suzuki-shunsuke
Copy link
Copy Markdown
Member

@suzuki-shunsuke
Copy link
Copy Markdown
Member

tak848 pushed a commit to tak848/dotfiles that referenced this pull request Dec 25, 2025
This PR contains the following updates:

| Package | Update | Change |
[Age](https://docs.renovatebot.com/merge-confidence/) |
[Confidence](https://docs.renovatebot.com/merge-confidence/) |
|---|---|---|---|---|
| [aquaproj/aqua](https://github.com/aquaproj/aqua) | minor |
`v2.55.3` -> `v2.56.0` |
![age](https://developer.mend.io/api/mc/badges/age/github-releases/aquaproj%2faqua/v2.56.0?slim=true)
|
![confidence](https://developer.mend.io/api/mc/badges/confidence/github-releases/aquaproj%2faqua/v2.55.3/v2.56.0?slim=true)
|
|
[aquaproj/aqua-registry](https://github.com/aquaproj/aqua-registry)
| minor | `v4.446.0` -> `v4.447.1` |
![age](https://developer.mend.io/api/mc/badges/age/github-releases/aquaproj%2faqua-registry/v4.447.1?slim=true)
|
![confidence](https://developer.mend.io/api/mc/badges/confidence/github-releases/aquaproj%2faqua-registry/v4.446.0/v4.447.1?slim=true)
|
| [aws/aws-cli](https://github.com/aws/aws-cli) | patch |
`2.32.22` -> `2.32.23` |
![age](https://developer.mend.io/api/mc/badges/age/github-tags/aws%2faws-cli/2.32.23?slim=true)
|
![confidence](https://developer.mend.io/api/mc/badges/confidence/github-tags/aws%2faws-cli/2.32.22/2.32.23?slim=true)
|
| [go-task/task](https://github.com/go-task/task) | patch |
`v3.46.3` -> `v3.46.4` |
![age](https://developer.mend.io/api/mc/badges/age/github-releases/go-task%2ftask/v3.46.4?slim=true)
|
![confidence](https://developer.mend.io/api/mc/badges/confidence/github-releases/go-task%2ftask/v3.46.3/v3.46.4?slim=true)
|
| [npm:@typescript/native-preview](https://www.typescriptlang.org/)
([source](https://github.com/microsoft/typescript-go)) | patch
| `7.0.0-dev.20251222.1` -> `7.0.0-dev.20251223.1` |
![age](https://developer.mend.io/api/mc/badges/age/npm/@typescript%2fnative-preview/7.0.0-dev.20251223.1?slim=true)
|
![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@typescript%2fnative-preview/7.0.0-dev.20251222.1/7.0.0-dev.20251223.1?slim=true)
|
| [pnpm/pnpm](https://github.com/pnpm/pnpm) | patch |
`v10.26.1` -> `v10.26.2` |
![age](https://developer.mend.io/api/mc/badges/age/github-releases/pnpm%2fpnpm/v10.26.2?slim=true)
|
![confidence](https://developer.mend.io/api/mc/badges/confidence/github-releases/pnpm%2fpnpm/v10.26.1/v10.26.2?slim=true)
|

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Release Notes

<details>
<summary>aquaproj/aqua (aquaproj/aqua)</summary>

###
[`v2.56.0`](https://github.com/aquaproj/aqua/releases/tag/v2.56.0)

[Compare
Source](https://github.com/aquaproj/aqua/compare/v2.55.3...v2.56.0)

#### Features

[#&#8203;4422](https://github.com/aquaproj/aqua/issues/4422)
Get pseudo-versions from Go Proxy if no tagged version exists
[@&#8203;gizmoguy](https://github.com/gizmoguy)

#### Fixes

[#&#8203;4401](https://github.com/aquaproj/aqua/issues/4401)
Add YAML tags [@&#8203;Shion1305](https://github.com/Shion1305)
[#&#8203;4404](https://github.com/aquaproj/aqua/issues/4404)
Update golangci-lint to v2.7.2, with lint fixes
[@&#8203;Shion1305](https://github.com/Shion1305)

#### Dependency Updates

[#&#8203;4402](https://github.com/aquaproj/aqua/issues/4402)
Update goreleaser to v2.13.1
[#&#8203;4405](https://github.com/aquaproj/aqua/issues/4405)
Update anchore/syft to v1.38.2
[#&#8203;4406](https://github.com/aquaproj/aqua/issues/4406)
Update Cosign to v3.0.3
[#&#8203;4420](https://github.com/aquaproj/aqua/issues/4420)
Update expr to v1.17.7
[#&#8203;4424](https://github.com/aquaproj/aqua/issues/4424)
Update goccy/go-yaml to v1.19.1

</details>

<details>
<summary>aquaproj/aqua-registry (aquaproj/aqua-registry)</summary>

###
[`v4.447.1`](https://github.com/aquaproj/aqua-registry/releases/tag/v4.447.1)

[Compare
Source](https://github.com/aquaproj/aqua-registry/compare/v4.447.0...v4.447.1)


[Issues](https://github.com/aquaproj/aqua-registry/issues?q=is%3Aissue+milestone%3Av4.447.1)
| [Pull
Requests](https://github.com/aquaproj/aqua-registry/pulls?q=is%3Apr+milestone%3Av4.447.1)
|
<aquaproj/aqua-registry@v4.447.0...v4.447.1>

#### Improvement

Enable arm64 for psf/black
[#&#8203;46216](https://github.com/aquaproj/aqua-registry/issues/46216)
[@&#8203;jinnatar](https://github.com/jinnatar)

#### Fixes


[#&#8203;46235](https://github.com/aquaproj/aqua-registry/issues/46235)
saucelabs/forwarder: Support v1.4.1 or later

[#&#8203;46234](https://github.com/aquaproj/aqua-registry/issues/46234)
gsamokovarov/jump: Support jump v0.67.0
fix(kubescape/kubescape): support kubescape v3.0.47
[#&#8203;46232](https://github.com/aquaproj/aqua-registry/issues/46232)
fix(fission/fission): support fission v1.22.0
[#&#8203;46231](https://github.com/aquaproj/aqua-registry/issues/46231)
Re-scaffold aquasecurity/starboard
[#&#8203;46230](https://github.com/aquaproj/aqua-registry/issues/46230)
fix(cri-o/cri-o): support cri-o v1.35.0
[#&#8203;46229](https://github.com/aquaproj/aqua-registry/issues/46229)
fix(haskell/cabal/cabal-install): support v3.16.1.0
[#&#8203;46225](https://github.com/aquaproj/aqua-registry/issues/46225)
fix(cubefs/cubefs): remove cfs-preload
[#&#8203;46222](https://github.com/aquaproj/aqua-registry/issues/46222)

[#&#8203;46233](https://github.com/aquaproj/aqua-registry/issues/46233)
folbricht/desync: Mark v1.0.0 as no asset
fix(mistakenelf/fm): mark v1.2.0 as no asset
[#&#8203;46226](https://github.com/aquaproj/aqua-registry/issues/46226)

###
[`v4.447.0`](https://github.com/aquaproj/aqua-registry/releases/tag/v4.447.0)

[Compare
Source](https://github.com/aquaproj/aqua-registry/compare/v4.446.0...v4.447.0)


[Issues](https://github.com/aquaproj/aqua-registry/issues?q=is%3Aissue+milestone%3Av4.447.0)
| [Pull
Requests](https://github.com/aquaproj/aqua-registry/pulls?q=is%3Apr+milestone%3Av4.447.0)
|
<aquaproj/aqua-registry@v4.446.0...v4.447.0>

#### 🎉 New Packages


[#&#8203;45755](https://github.com/aquaproj/aqua-registry/issues/45755)
[tuist/tuist](https://github.com/tuist/tuist) - A toolchain to
generate Xcode projects from Swift packages
[@&#8203;jdx](https://github.com/jdx)

[#&#8203;46040](https://github.com/aquaproj/aqua-registry/issues/46040)
[jamf/Notifier](https://github.com/jamf/Notifier) - Swift
project which can post macOS alert or banner notifications on 10.15+
clients [@&#8203;TyceHerrman](https://github.com/TyceHerrman)

[#&#8203;45738](https://github.com/aquaproj/aqua-registry/issues/45738)
[nektro/zigmod](https://github.com/nektro/zigmod) - Zig package
manager [@&#8203;jdx](https://github.com/jdx)

#### Improvement


[#&#8203;46162](https://github.com/aquaproj/aqua-registry/issues/46162)
golang.org/x/perf/cmd/benchstat: Set `go_version_path`


[aquaproj/aqua#4422](https://github.com/aquaproj/aqua/pull/4422)

#### Fixes


[#&#8203;46166](https://github.com/aquaproj/aqua-registry/issues/46166)
Re-scaffold gohugoio/hugo

[#&#8203;46167](https://github.com/aquaproj/aqua-registry/issues/46167)
Re-scaffold gohugoio/hugo/hugo-extended

[#&#8203;46168](https://github.com/aquaproj/aqua-registry/issues/46168)
Re-scaffold steveyegge/beads

[#&#8203;46169](https://github.com/aquaproj/aqua-registry/issues/46169)
stackrox/kube-linter: Fix cosign settings

[#&#8203;46173](https://github.com/aquaproj/aqua-registry/issues/46173)
Fix redpanda-data/connect

[#&#8203;46198](https://github.com/aquaproj/aqua-registry/issues/46198)
Re-scaffold maxpert/marmot

[#&#8203;46200](https://github.com/aquaproj/aqua-registry/issues/46200)
mas-cli/mas: Support mas v4.0.0 or later

[#&#8203;46199](https://github.com/aquaproj/aqua-registry/issues/46199)
Fix rest-sh/restish

</details>

<details>
<summary>aws/aws-cli (aws/aws-cli)</summary>

###
[`v2.32.23`](https://github.com/aws/aws-cli/compare/2.32.22...2.32.23)

[Compare
Source](https://github.com/aws/aws-cli/compare/2.32.22...2.32.23)

</details>

<details>
<summary>go-task/task (go-task/task)</summary>

###
[`v3.46.4`](https://github.com/go-task/task/blob/HEAD/CHANGELOG.md#v3464---2025-12-24)

[Compare
Source](https://github.com/go-task/task/compare/v3.46.3...v3.46.4)

- Fixed regressions in completion script for Fish
([#&#8203;2591](https://github.com/go-task/task/issues/2591),
[#&#8203;2604](https://github.com/go-task/task/issues/2604),
[#&#8203;2592](https://github.com/go-task/task/issues/2592) by
  [@&#8203;WinkelCode](https://github.com/WinkelCode)).

</details>

<details>
<summary>microsoft/typescript-go
(npm:@&#8203;typescript/native-preview)</summary>

###
[`v7.0.0-dev.20251223.1`](https://github.com/microsoft/typescript-go/compare/d9178cc1fef3cedc3c1a48a652e63dd83310ea20...d9178cc1fef3cedc3c1a48a652e63dd83310ea20)

[Compare
Source](https://github.com/microsoft/typescript-go/compare/d9178cc1fef3cedc3c1a48a652e63dd83310ea20...d9178cc1fef3cedc3c1a48a652e63dd83310ea20)

</details>

<details>
<summary>pnpm/pnpm (pnpm/pnpm)</summary>

###
[`v10.26.2`](https://github.com/pnpm/pnpm/releases/tag/v10.26.2):
pnpm 10.26.2

[Compare
Source](https://github.com/pnpm/pnpm/compare/v10.26.1...v10.26.2)

#### Patch Changes

- Improve error message when a package version exists but does not meet
the `minimumReleaseAge` constraint. The error now clearly states that
the version exists and shows a human-readable time since release (e.g.,
"released 6 hours ago")
[#&#8203;10307](https://github.com/pnpm/pnpm/issues/10307).

- Fix installation of Git dependencies using annotated tags
[#&#8203;10335](https://github.com/pnpm/pnpm/issues/10335).

Previously, pnpm would store the annotated tag object's SHA in the
lockfile instead of the actual commit SHA. This caused
`ERR_PNPM_GIT_CHECKOUT_FAILED` errors because the checked-out commit
hash didn't match the stored tag object hash.

- Binaries of runtime engines (Node.js, Deno, Bun) are written to
`node_modules/.bin` before lifecycle scripts (install, postinstall,
prepare) are executed
[#&#8203;10244](https://github.com/pnpm/pnpm/issues/10244).

- Try to avoid making network calls with preferOffline
[#&#8203;10334](https://github.com/pnpm/pnpm/pull/10334).

#### Platinum Sponsors

<table>
  <tbody>
    <tr>
      <td align="center" valign="middle">
<a href="https://bit.dev/?utm_source=pnpm&utm_medium=release_notes"
target="_blank"><img src="https://pnpm.io/img/users/bit.svg" width="80"
alt="Bit"></a>
      </td>
    </tr>
  </tbody>
</table>

#### Gold Sponsors

<table>
  <tbody>
    <tr>
      <td align="center" valign="middle">
<a href="https://discord.com/?utm_source=pnpm&utm_medium=release_notes"
target="_blank">
          <picture>
<source media="(prefers-color-scheme: light)"
srcset="https://pnpm.io/img/users/discord.svg" />
<source media="(prefers-color-scheme: dark)"
srcset="https://pnpm.io/img/users/discord_light.svg" />
<img src="https://pnpm.io/img/users/discord.svg" width="220"
alt="Discord" />
          </picture>
        </a>
      </td>
      <td align="center" valign="middle">
<a
href="https://coderabbit.ai/?utm_source=pnpm&utm_medium=release_notes"
target="_blank">
          <picture>
<source media="(prefers-color-scheme: light)"
srcset="https://pnpm.io/img/users/coderabbit.svg" />
<source media="(prefers-color-scheme: dark)"
srcset="https://pnpm.io/img/users/coderabbit_light.svg" />
<img src="https://pnpm.io/img/users/coderabbit.svg" width="220"
alt="CodeRabbit" />
          </picture>
        </a>
      </td>
      <td align="center" valign="middle">
<a href="https://workleap.com/?utm_source=pnpm&utm_medium=release_notes"
target="_blank">
          <picture>
<source media="(prefers-color-scheme: light)"
srcset="https://pnpm.io/img/users/workleap.svg" />
<source media="(prefers-color-scheme: dark)"
srcset="https://pnpm.io/img/users/workleap_light.svg" />
<img src="https://pnpm.io/img/users/workleap.svg" width="190"
alt="Workleap" />
          </picture>
        </a>
      </td>
    </tr>
    <tr>
      <td align="center" valign="middle">
<a
href="https://stackblitz.com/?utm_source=pnpm&utm_medium=release_notes"
target="_blank">
          <picture>
<source media="(prefers-color-scheme: light)"
srcset="https://pnpm.io/img/users/stackblitz.svg" />
<source media="(prefers-color-scheme: dark)"
srcset="https://pnpm.io/img/users/stackblitz_light.svg" />
<img src="https://pnpm.io/img/users/stackblitz.svg" width="190"
alt="Stackblitz" />
          </picture>
        </a>
      </td>
      <td align="center" valign="middle">
<a href="https://vite.dev/?utm_source=pnpm&utm_medium=release_notes"
target="_blank">
<img src="https://pnpm.io/img/users/vitejs.svg" width="42" alt="Vite">
        </a>
      </td>
    </tr>
  </tbody>
</table>

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config
help](https://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/tak848/dotfiles).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi41OS4wIiwidXBkYXRlZEluVmVyIjoiNDIuNTkuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsicmVub3ZhdGUiXX0=-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
renovate Bot added a commit to scottames/containers that referenced this pull request Dec 26, 2025
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [aquaproj/aqua](https://github.com/aquaproj/aqua) | minor |
`v2.55.3` -> `v2.56.0` |
|
[aquaproj/aqua-registry](https://github.com/aquaproj/aqua-registry)
| minor | `v4.446.0` -> `v4.448.0` |

---

### Release Notes

<details>
<summary>aquaproj/aqua (aquaproj/aqua)</summary>

###
[`v2.56.0`](https://github.com/aquaproj/aqua/releases/tag/v2.56.0)

[Compare
Source](https://github.com/aquaproj/aqua/compare/v2.55.3...v2.56.0)

##### Features

[#&#8203;4422](https://github.com/aquaproj/aqua/issues/4422)
Get pseudo-versions from Go Proxy if no tagged version exists
[@&#8203;gizmoguy](https://github.com/gizmoguy)

##### Fixes

[#&#8203;4401](https://github.com/aquaproj/aqua/issues/4401)
Add YAML tags [@&#8203;Shion1305](https://github.com/Shion1305)
[#&#8203;4404](https://github.com/aquaproj/aqua/issues/4404)
Update golangci-lint to v2.7.2, with lint fixes
[@&#8203;Shion1305](https://github.com/Shion1305)

##### Dependency Updates

[#&#8203;4402](https://github.com/aquaproj/aqua/issues/4402)
Update goreleaser to v2.13.1
[#&#8203;4405](https://github.com/aquaproj/aqua/issues/4405)
Update anchore/syft to v1.38.2
[#&#8203;4406](https://github.com/aquaproj/aqua/issues/4406)
Update Cosign to v3.0.3
[#&#8203;4420](https://github.com/aquaproj/aqua/issues/4420)
Update expr to v1.17.7
[#&#8203;4424](https://github.com/aquaproj/aqua/issues/4424)
Update goccy/go-yaml to v1.19.1

</details>

<details>
<summary>aquaproj/aqua-registry (aquaproj/aqua-registry)</summary>

###
[`v4.448.0`](https://github.com/aquaproj/aqua-registry/releases/tag/v4.448.0)

[Compare
Source](https://github.com/aquaproj/aqua-registry/compare/v4.447.1...v4.448.0)


[Issues](https://github.com/aquaproj/aqua-registry/issues?q=is%3Aissue+milestone%3Av4.448.0)
| [Pull
Requests](https://github.com/aquaproj/aqua-registry/pulls?q=is%3Apr+milestone%3Av4.448.0)
|
<aquaproj/aqua-registry@v4.447.1...v4.448.0>

#### 🎉 New Packages


[#&#8203;46252](https://github.com/aquaproj/aqua-registry/issues/46252)
[astral-sh/ty](https://github.com/astral-sh/ty) - An extremely
fast Python type checker and language server, written in Rust
[@&#8203;joonas](https://github.com/joonas)

[#&#8203;46260](https://github.com/aquaproj/aqua-registry/issues/46260)
[golangci/golines](https://github.com/golangci/golines): A
golang formatter that fixes long lines

#### Fixes


[#&#8203;46245](https://github.com/aquaproj/aqua-registry/issues/46245)
[#&#8203;46258](https://github.com/aquaproj/aqua-registry/issues/46258)
suzuki-shunsuke/rgo: Support Go version

rgo was rewritten in Go.

###
[`v4.447.1`](https://github.com/aquaproj/aqua-registry/releases/tag/v4.447.1)

[Compare
Source](https://github.com/aquaproj/aqua-registry/compare/v4.447.0...v4.447.1)


[Issues](https://github.com/aquaproj/aqua-registry/issues?q=is%3Aissue+milestone%3Av4.447.1)
| [Pull
Requests](https://github.com/aquaproj/aqua-registry/pulls?q=is%3Apr+milestone%3Av4.447.1)
|
<aquaproj/aqua-registry@v4.447.0...v4.447.1>

#### Improvement

Enable arm64 for psf/black
[#&#8203;46216](https://github.com/aquaproj/aqua-registry/issues/46216)
[@&#8203;jinnatar](https://github.com/jinnatar)

#### Fixes


[#&#8203;46235](https://github.com/aquaproj/aqua-registry/issues/46235)
saucelabs/forwarder: Support v1.4.1 or later

[#&#8203;46234](https://github.com/aquaproj/aqua-registry/issues/46234)
gsamokovarov/jump: Support jump v0.67.0
fix(kubescape/kubescape): support kubescape v3.0.47
[#&#8203;46232](https://github.com/aquaproj/aqua-registry/issues/46232)
fix(fission/fission): support fission v1.22.0
[#&#8203;46231](https://github.com/aquaproj/aqua-registry/issues/46231)
Re-scaffold aquasecurity/starboard
[#&#8203;46230](https://github.com/aquaproj/aqua-registry/issues/46230)
fix(cri-o/cri-o): support cri-o v1.35.0
[#&#8203;46229](https://github.com/aquaproj/aqua-registry/issues/46229)
fix(haskell/cabal/cabal-install): support v3.16.1.0
[#&#8203;46225](https://github.com/aquaproj/aqua-registry/issues/46225)
fix(cubefs/cubefs): remove cfs-preload
[#&#8203;46222](https://github.com/aquaproj/aqua-registry/issues/46222)

[#&#8203;46233](https://github.com/aquaproj/aqua-registry/issues/46233)
folbricht/desync: Mark v1.0.0 as no asset
fix(mistakenelf/fm): mark v1.2.0 as no asset
[#&#8203;46226](https://github.com/aquaproj/aqua-registry/issues/46226)

###
[`v4.447.0`](https://github.com/aquaproj/aqua-registry/releases/tag/v4.447.0)

[Compare
Source](https://github.com/aquaproj/aqua-registry/compare/v4.446.0...v4.447.0)


[Issues](https://github.com/aquaproj/aqua-registry/issues?q=is%3Aissue+milestone%3Av4.447.0)
| [Pull
Requests](https://github.com/aquaproj/aqua-registry/pulls?q=is%3Apr+milestone%3Av4.447.0)
|
<aquaproj/aqua-registry@v4.446.0...v4.447.0>

#### 🎉 New Packages


[#&#8203;45755](https://github.com/aquaproj/aqua-registry/issues/45755)
[tuist/tuist](https://github.com/tuist/tuist) - A toolchain to
generate Xcode projects from Swift packages
[@&#8203;jdx](https://github.com/jdx)

[#&#8203;46040](https://github.com/aquaproj/aqua-registry/issues/46040)
[jamf/Notifier](https://github.com/jamf/Notifier) - Swift
project which can post macOS alert or banner notifications on 10.15+
clients [@&#8203;TyceHerrman](https://github.com/TyceHerrman)

[#&#8203;45738](https://github.com/aquaproj/aqua-registry/issues/45738)
[nektro/zigmod](https://github.com/nektro/zigmod) - Zig package
manager [@&#8203;jdx](https://github.com/jdx)

#### Improvement


[#&#8203;46162](https://github.com/aquaproj/aqua-registry/issues/46162)
golang.org/x/perf/cmd/benchstat: Set `go_version_path`


[aquaproj/aqua#4422](https://github.com/aquaproj/aqua/pull/4422)

#### Fixes


[#&#8203;46166](https://github.com/aquaproj/aqua-registry/issues/46166)
Re-scaffold gohugoio/hugo

[#&#8203;46167](https://github.com/aquaproj/aqua-registry/issues/46167)
Re-scaffold gohugoio/hugo/hugo-extended

[#&#8203;46168](https://github.com/aquaproj/aqua-registry/issues/46168)
Re-scaffold steveyegge/beads

[#&#8203;46169](https://github.com/aquaproj/aqua-registry/issues/46169)
stackrox/kube-linter: Fix cosign settings

[#&#8203;46173](https://github.com/aquaproj/aqua-registry/issues/46173)
Fix redpanda-data/connect

[#&#8203;46198](https://github.com/aquaproj/aqua-registry/issues/46198)
Re-scaffold maxpert/marmot

[#&#8203;46200](https://github.com/aquaproj/aqua-registry/issues/46200)
mas-cli/mas: Support mas v4.0.0 or later

[#&#8203;46199](https://github.com/aquaproj/aqua-registry/issues/46199)
Fix rest-sh/restish

</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://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/containers).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi41OS4wIiwidXBkYXRlZEluVmVyIjoiNDIuNTkuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19-->

---------

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>
renovate Bot added a commit to scottames/daggerverse that referenced this pull request Dec 26, 2025
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [aquaproj/aqua](https://github.com/aquaproj/aqua) | minor |
`v2.55.3` -> `v2.56.0` |
|
[aquaproj/aqua-registry](https://github.com/aquaproj/aqua-registry)
| minor | `v4.446.0` -> `v4.448.0` |

---

### Release Notes

<details>
<summary>aquaproj/aqua (aquaproj/aqua)</summary>

###
[`v2.56.0`](https://github.com/aquaproj/aqua/releases/tag/v2.56.0)

[Compare
Source](https://github.com/aquaproj/aqua/compare/v2.55.3...v2.56.0)

##### Features

[#&#8203;4422](https://github.com/aquaproj/aqua/issues/4422)
Get pseudo-versions from Go Proxy if no tagged version exists
[@&#8203;gizmoguy](https://github.com/gizmoguy)

##### Fixes

[#&#8203;4401](https://github.com/aquaproj/aqua/issues/4401)
Add YAML tags [@&#8203;Shion1305](https://github.com/Shion1305)
[#&#8203;4404](https://github.com/aquaproj/aqua/issues/4404)
Update golangci-lint to v2.7.2, with lint fixes
[@&#8203;Shion1305](https://github.com/Shion1305)

##### Dependency Updates

[#&#8203;4402](https://github.com/aquaproj/aqua/issues/4402)
Update goreleaser to v2.13.1
[#&#8203;4405](https://github.com/aquaproj/aqua/issues/4405)
Update anchore/syft to v1.38.2
[#&#8203;4406](https://github.com/aquaproj/aqua/issues/4406)
Update Cosign to v3.0.3
[#&#8203;4420](https://github.com/aquaproj/aqua/issues/4420)
Update expr to v1.17.7
[#&#8203;4424](https://github.com/aquaproj/aqua/issues/4424)
Update goccy/go-yaml to v1.19.1

</details>

<details>
<summary>aquaproj/aqua-registry (aquaproj/aqua-registry)</summary>

###
[`v4.448.0`](https://github.com/aquaproj/aqua-registry/releases/tag/v4.448.0)

[Compare
Source](https://github.com/aquaproj/aqua-registry/compare/v4.447.1...v4.448.0)


[Issues](https://github.com/aquaproj/aqua-registry/issues?q=is%3Aissue+milestone%3Av4.448.0)
| [Pull
Requests](https://github.com/aquaproj/aqua-registry/pulls?q=is%3Apr+milestone%3Av4.448.0)
|
<aquaproj/aqua-registry@v4.447.1...v4.448.0>

#### 🎉 New Packages


[#&#8203;46252](https://github.com/aquaproj/aqua-registry/issues/46252)
[astral-sh/ty](https://github.com/astral-sh/ty) - An extremely
fast Python type checker and language server, written in Rust
[@&#8203;joonas](https://github.com/joonas)

[#&#8203;46260](https://github.com/aquaproj/aqua-registry/issues/46260)
[golangci/golines](https://github.com/golangci/golines): A
golang formatter that fixes long lines

#### Fixes


[#&#8203;46245](https://github.com/aquaproj/aqua-registry/issues/46245)
[#&#8203;46258](https://github.com/aquaproj/aqua-registry/issues/46258)
suzuki-shunsuke/rgo: Support Go version

rgo was rewritten in Go.

###
[`v4.447.1`](https://github.com/aquaproj/aqua-registry/releases/tag/v4.447.1)

[Compare
Source](https://github.com/aquaproj/aqua-registry/compare/v4.447.0...v4.447.1)


[Issues](https://github.com/aquaproj/aqua-registry/issues?q=is%3Aissue+milestone%3Av4.447.1)
| [Pull
Requests](https://github.com/aquaproj/aqua-registry/pulls?q=is%3Apr+milestone%3Av4.447.1)
|
<aquaproj/aqua-registry@v4.447.0...v4.447.1>

#### Improvement

Enable arm64 for psf/black
[#&#8203;46216](https://github.com/aquaproj/aqua-registry/issues/46216)
[@&#8203;jinnatar](https://github.com/jinnatar)

#### Fixes


[#&#8203;46235](https://github.com/aquaproj/aqua-registry/issues/46235)
saucelabs/forwarder: Support v1.4.1 or later

[#&#8203;46234](https://github.com/aquaproj/aqua-registry/issues/46234)
gsamokovarov/jump: Support jump v0.67.0
fix(kubescape/kubescape): support kubescape v3.0.47
[#&#8203;46232](https://github.com/aquaproj/aqua-registry/issues/46232)
fix(fission/fission): support fission v1.22.0
[#&#8203;46231](https://github.com/aquaproj/aqua-registry/issues/46231)
Re-scaffold aquasecurity/starboard
[#&#8203;46230](https://github.com/aquaproj/aqua-registry/issues/46230)
fix(cri-o/cri-o): support cri-o v1.35.0
[#&#8203;46229](https://github.com/aquaproj/aqua-registry/issues/46229)
fix(haskell/cabal/cabal-install): support v3.16.1.0
[#&#8203;46225](https://github.com/aquaproj/aqua-registry/issues/46225)
fix(cubefs/cubefs): remove cfs-preload
[#&#8203;46222](https://github.com/aquaproj/aqua-registry/issues/46222)

[#&#8203;46233](https://github.com/aquaproj/aqua-registry/issues/46233)
folbricht/desync: Mark v1.0.0 as no asset
fix(mistakenelf/fm): mark v1.2.0 as no asset
[#&#8203;46226](https://github.com/aquaproj/aqua-registry/issues/46226)

###
[`v4.447.0`](https://github.com/aquaproj/aqua-registry/releases/tag/v4.447.0)

[Compare
Source](https://github.com/aquaproj/aqua-registry/compare/v4.446.0...v4.447.0)


[Issues](https://github.com/aquaproj/aqua-registry/issues?q=is%3Aissue+milestone%3Av4.447.0)
| [Pull
Requests](https://github.com/aquaproj/aqua-registry/pulls?q=is%3Apr+milestone%3Av4.447.0)
|
<aquaproj/aqua-registry@v4.446.0...v4.447.0>

#### 🎉 New Packages


[#&#8203;45755](https://github.com/aquaproj/aqua-registry/issues/45755)
[tuist/tuist](https://github.com/tuist/tuist) - A toolchain to
generate Xcode projects from Swift packages
[@&#8203;jdx](https://github.com/jdx)

[#&#8203;46040](https://github.com/aquaproj/aqua-registry/issues/46040)
[jamf/Notifier](https://github.com/jamf/Notifier) - Swift
project which can post macOS alert or banner notifications on 10.15+
clients [@&#8203;TyceHerrman](https://github.com/TyceHerrman)

[#&#8203;45738](https://github.com/aquaproj/aqua-registry/issues/45738)
[nektro/zigmod](https://github.com/nektro/zigmod) - Zig package
manager [@&#8203;jdx](https://github.com/jdx)

#### Improvement


[#&#8203;46162](https://github.com/aquaproj/aqua-registry/issues/46162)
golang.org/x/perf/cmd/benchstat: Set `go_version_path`


[aquaproj/aqua#4422](https://github.com/aquaproj/aqua/pull/4422)

#### Fixes


[#&#8203;46166](https://github.com/aquaproj/aqua-registry/issues/46166)
Re-scaffold gohugoio/hugo

[#&#8203;46167](https://github.com/aquaproj/aqua-registry/issues/46167)
Re-scaffold gohugoio/hugo/hugo-extended

[#&#8203;46168](https://github.com/aquaproj/aqua-registry/issues/46168)
Re-scaffold steveyegge/beads

[#&#8203;46169](https://github.com/aquaproj/aqua-registry/issues/46169)
stackrox/kube-linter: Fix cosign settings

[#&#8203;46173](https://github.com/aquaproj/aqua-registry/issues/46173)
Fix redpanda-data/connect

[#&#8203;46198](https://github.com/aquaproj/aqua-registry/issues/46198)
Re-scaffold maxpert/marmot

[#&#8203;46200](https://github.com/aquaproj/aqua-registry/issues/46200)
mas-cli/mas: Support mas v4.0.0 or later

[#&#8203;46199](https://github.com/aquaproj/aqua-registry/issues/46199)
Fix rest-sh/restish

</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://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/daggerverse).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi41OS4wIiwidXBkYXRlZEluVmVyIjoiNDIuNTkuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19-->

---------

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>
renovate Bot added a commit to scottames/dots that referenced this pull request Dec 26, 2025
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[aquaproj/aqua-registry](https://github.com/aquaproj/aqua-registry)
| minor | `v4.446.0` -> `v4.448.0` |
| [homeport/dyff](https://github.com/homeport/dyff) | patch |
`v1.10.2` -> `v1.10.3` |
| [sst/opencode](https://github.com/sst/opencode) | patch |
`v1.0.193` -> `v1.0.201` |

---

### Release Notes

<details>
<summary>aquaproj/aqua-registry (aquaproj/aqua-registry)</summary>

###
[`v4.448.0`](https://github.com/aquaproj/aqua-registry/releases/tag/v4.448.0)

[Compare
Source](https://github.com/aquaproj/aqua-registry/compare/v4.447.1...v4.448.0)


[Issues](https://github.com/aquaproj/aqua-registry/issues?q=is%3Aissue+milestone%3Av4.448.0)
| [Pull
Requests](https://github.com/aquaproj/aqua-registry/pulls?q=is%3Apr+milestone%3Av4.448.0)
|
<aquaproj/aqua-registry@v4.447.1...v4.448.0>

#### 🎉 New Packages


[#&#8203;46252](https://github.com/aquaproj/aqua-registry/issues/46252)
[astral-sh/ty](https://github.com/astral-sh/ty) - An extremely
fast Python type checker and language server, written in Rust
[@&#8203;joonas](https://github.com/joonas)

[#&#8203;46260](https://github.com/aquaproj/aqua-registry/issues/46260)
[golangci/golines](https://github.com/golangci/golines): A
golang formatter that fixes long lines

#### Fixes


[#&#8203;46245](https://github.com/aquaproj/aqua-registry/issues/46245)
[#&#8203;46258](https://github.com/aquaproj/aqua-registry/issues/46258)
suzuki-shunsuke/rgo: Support Go version

rgo was rewritten in Go.

###
[`v4.447.1`](https://github.com/aquaproj/aqua-registry/releases/tag/v4.447.1)

[Compare
Source](https://github.com/aquaproj/aqua-registry/compare/v4.447.0...v4.447.1)


[Issues](https://github.com/aquaproj/aqua-registry/issues?q=is%3Aissue+milestone%3Av4.447.1)
| [Pull
Requests](https://github.com/aquaproj/aqua-registry/pulls?q=is%3Apr+milestone%3Av4.447.1)
|
<aquaproj/aqua-registry@v4.447.0...v4.447.1>

#### Improvement

Enable arm64 for psf/black
[#&#8203;46216](https://github.com/aquaproj/aqua-registry/issues/46216)
[@&#8203;jinnatar](https://github.com/jinnatar)

#### Fixes


[#&#8203;46235](https://github.com/aquaproj/aqua-registry/issues/46235)
saucelabs/forwarder: Support v1.4.1 or later

[#&#8203;46234](https://github.com/aquaproj/aqua-registry/issues/46234)
gsamokovarov/jump: Support jump v0.67.0
fix(kubescape/kubescape): support kubescape v3.0.47
[#&#8203;46232](https://github.com/aquaproj/aqua-registry/issues/46232)
fix(fission/fission): support fission v1.22.0
[#&#8203;46231](https://github.com/aquaproj/aqua-registry/issues/46231)
Re-scaffold aquasecurity/starboard
[#&#8203;46230](https://github.com/aquaproj/aqua-registry/issues/46230)
fix(cri-o/cri-o): support cri-o v1.35.0
[#&#8203;46229](https://github.com/aquaproj/aqua-registry/issues/46229)
fix(haskell/cabal/cabal-install): support v3.16.1.0
[#&#8203;46225](https://github.com/aquaproj/aqua-registry/issues/46225)
fix(cubefs/cubefs): remove cfs-preload
[#&#8203;46222](https://github.com/aquaproj/aqua-registry/issues/46222)

[#&#8203;46233](https://github.com/aquaproj/aqua-registry/issues/46233)
folbricht/desync: Mark v1.0.0 as no asset
fix(mistakenelf/fm): mark v1.2.0 as no asset
[#&#8203;46226](https://github.com/aquaproj/aqua-registry/issues/46226)

###
[`v4.447.0`](https://github.com/aquaproj/aqua-registry/releases/tag/v4.447.0)

[Compare
Source](https://github.com/aquaproj/aqua-registry/compare/v4.446.0...v4.447.0)


[Issues](https://github.com/aquaproj/aqua-registry/issues?q=is%3Aissue+milestone%3Av4.447.0)
| [Pull
Requests](https://github.com/aquaproj/aqua-registry/pulls?q=is%3Apr+milestone%3Av4.447.0)
|
<aquaproj/aqua-registry@v4.446.0...v4.447.0>

#### 🎉 New Packages


[#&#8203;45755](https://github.com/aquaproj/aqua-registry/issues/45755)
[tuist/tuist](https://github.com/tuist/tuist) - A toolchain to
generate Xcode projects from Swift packages
[@&#8203;jdx](https://github.com/jdx)

[#&#8203;46040](https://github.com/aquaproj/aqua-registry/issues/46040)
[jamf/Notifier](https://github.com/jamf/Notifier) - Swift
project which can post macOS alert or banner notifications on 10.15+
clients [@&#8203;TyceHerrman](https://github.com/TyceHerrman)

[#&#8203;45738](https://github.com/aquaproj/aqua-registry/issues/45738)
[nektro/zigmod](https://github.com/nektro/zigmod) - Zig package
manager [@&#8203;jdx](https://github.com/jdx)

#### Improvement


[#&#8203;46162](https://github.com/aquaproj/aqua-registry/issues/46162)
golang.org/x/perf/cmd/benchstat: Set `go_version_path`


[aquaproj/aqua#4422](https://github.com/aquaproj/aqua/pull/4422)

#### Fixes


[#&#8203;46166](https://github.com/aquaproj/aqua-registry/issues/46166)
Re-scaffold gohugoio/hugo

[#&#8203;46167](https://github.com/aquaproj/aqua-registry/issues/46167)
Re-scaffold gohugoio/hugo/hugo-extended

[#&#8203;46168](https://github.com/aquaproj/aqua-registry/issues/46168)
Re-scaffold steveyegge/beads

[#&#8203;46169](https://github.com/aquaproj/aqua-registry/issues/46169)
stackrox/kube-linter: Fix cosign settings

[#&#8203;46173](https://github.com/aquaproj/aqua-registry/issues/46173)
Fix redpanda-data/connect

[#&#8203;46198](https://github.com/aquaproj/aqua-registry/issues/46198)
Re-scaffold maxpert/marmot

[#&#8203;46200](https://github.com/aquaproj/aqua-registry/issues/46200)
mas-cli/mas: Support mas v4.0.0 or later

[#&#8203;46199](https://github.com/aquaproj/aqua-registry/issues/46199)
Fix rest-sh/restish

</details>

<details>
<summary>homeport/dyff (homeport/dyff)</summary>

###
[`v1.10.3`](https://github.com/homeport/dyff/releases/tag/v1.10.3):
dyff release v1.10.3

[Compare
Source](https://github.com/homeport/dyff/compare/v1.10.2...v1.10.3)

#### What's Changed

- build(deps): bump actions/checkout from 4 to 5 by
[@&#8203;dependabot](https://github.com/dependabot)\[bot] in
[#&#8203;522](https://github.com/homeport/dyff/pull/522)
- build(deps): bump github.com/onsi/ginkgo/v2 from 2.23.4 to 2.24.0 by
[@&#8203;dependabot](https://github.com/dependabot)\[bot] in
[#&#8203;523](https://github.com/homeport/dyff/pull/523)
- build(deps): bump github.com/Masterminds/semver/v3 from 3.3.1 to 3.4.0
by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in
[#&#8203;524](https://github.com/homeport/dyff/pull/524)
- build(deps): bump github.com/onsi/ginkgo/v2 from 2.24.0 to 2.25.1 by
[@&#8203;dependabot](https://github.com/dependabot)\[bot] in
[#&#8203;528](https://github.com/homeport/dyff/pull/528)
- build(deps): bump github.com/stretchr/testify from 1.10.0 to 1.11.0 by
[@&#8203;dependabot](https://github.com/dependabot)\[bot] in
[#&#8203;532](https://github.com/homeport/dyff/pull/532)
- build(deps): bump github.com/onsi/gomega from 1.38.0 to 1.38.2 by
[@&#8203;dependabot](https://github.com/dependabot)\[bot] in
[#&#8203;533](https://github.com/homeport/dyff/pull/533)
- build(deps): bump github.com/stretchr/testify from 1.11.0 to 1.11.1 by
[@&#8203;dependabot](https://github.com/dependabot)\[bot] in
[#&#8203;535](https://github.com/homeport/dyff/pull/535)
- build(deps): bump github.com/onsi/ginkgo/v2 from 2.25.1 to 2.25.2 by
[@&#8203;dependabot](https://github.com/dependabot)\[bot] in
[#&#8203;536](https://github.com/homeport/dyff/pull/536)
- build(deps): bump github.com/spf13/pflag from 1.0.7 to 1.0.10 by
[@&#8203;dependabot](https://github.com/dependabot)\[bot] in
[#&#8203;537](https://github.com/homeport/dyff/pull/537)
- build(deps): bump github.com/onsi/ginkgo/v2 from 2.25.2 to 2.25.3 by
[@&#8203;dependabot](https://github.com/dependabot)\[bot] in
[#&#8203;539](https://github.com/homeport/dyff/pull/539)
- build(deps): bump github.com/spf13/cobra from 1.9.1 to 1.10.1 by
[@&#8203;dependabot](https://github.com/dependabot)\[bot] in
[#&#8203;538](https://github.com/homeport/dyff/pull/538)
- build(deps): bump actions/setup-go from 5 to 6 by
[@&#8203;dependabot](https://github.com/dependabot)\[bot] in
[#&#8203;540](https://github.com/homeport/dyff/pull/540)
- build(deps): bump github.com/lucasb-eyer/go-colorful from 1.2.0 to
1.3.0 by
[@&#8203;dependabot](https://github.com/dependabot)\[bot] in
[#&#8203;543](https://github.com/homeport/dyff/pull/543)
- build(deps): bump github.com/onsi/ginkgo/v2 from 2.25.3 to 2.26.0 by
[@&#8203;dependabot](https://github.com/dependabot)\[bot] in
[#&#8203;548](https://github.com/homeport/dyff/pull/548)
- build(deps): bump github.com/onsi/ginkgo/v2 from 2.26.0 to 2.27.1 by
[@&#8203;dependabot](https://github.com/dependabot)\[bot] in
[#&#8203;557](https://github.com/homeport/dyff/pull/557)
- build(deps): bump github.com/onsi/ginkgo/v2 from 2.27.1 to 2.27.2 by
[@&#8203;dependabot](https://github.com/dependabot)\[bot] in
[#&#8203;559](https://github.com/homeport/dyff/pull/559)
- build(deps): bump golangci/golangci-lint-action from 8 to 9 by
[@&#8203;dependabot](https://github.com/dependabot)\[bot] in
[#&#8203;562](https://github.com/homeport/dyff/pull/562)
- build(deps): bump actions/checkout from 5 to 6 by
[@&#8203;dependabot](https://github.com/dependabot)\[bot] in
[#&#8203;568](https://github.com/homeport/dyff/pull/568)
- build(deps): bump github.com/spf13/cobra from 1.10.1 to 1.10.2 by
[@&#8203;dependabot](https://github.com/dependabot)\[bot] in
[#&#8203;569](https://github.com/homeport/dyff/pull/569)
- build(deps): bump github.com/onsi/gomega from 1.38.2 to 1.38.3 by
[@&#8203;dependabot](https://github.com/dependabot)\[bot] in
[#&#8203;571](https://github.com/homeport/dyff/pull/571)
- build(deps): bump github.com/onsi/ginkgo/v2 from 2.27.2 to 2.27.3 by
[@&#8203;dependabot](https://github.com/dependabot)\[bot] in
[#&#8203;576](https://github.com/homeport/dyff/pull/576)
- build(deps): bump github.com/BurntSushi/toml from 1.5.0 to 1.6.0 by
[@&#8203;dependabot](https://github.com/dependabot)\[bot] in
[#&#8203;581](https://github.com/homeport/dyff/pull/581)
- Fix build linter warning and update dependencies by
[@&#8203;HeavyWombat](https://github.com/HeavyWombat) in
[#&#8203;582](https://github.com/homeport/dyff/pull/582)
- fix: Deterministic sort list in output to avoid random order by
[@&#8203;tonur](https://github.com/tonur) in
[#&#8203;527](https://github.com/homeport/dyff/pull/527)
- Add test case for issue 525 by
[@&#8203;HeavyWombat](https://github.com/HeavyWombat) in
[#&#8203;583](https://github.com/homeport/dyff/pull/583)
- docs(README): add mise alternative method installation by
[@&#8203;jylenhof](https://github.com/jylenhof) in
[#&#8203;579](https://github.com/homeport/dyff/pull/579)

#### New Contributors

- [@&#8203;tonur](https://github.com/tonur) made their first
contribution in
[#&#8203;527](https://github.com/homeport/dyff/pull/527)
- [@&#8203;jylenhof](https://github.com/jylenhof) made their
first contribution in
[#&#8203;579](https://github.com/homeport/dyff/pull/579)

**Full Changelog**:
<homeport/dyff@v1.10.2...v1.10.3>

</details>

<details>
<summary>sst/opencode (sst/opencode)</summary>

###
[`v1.0.201`](https://github.com/sst/opencode/releases/tag/v1.0.201)

[Compare
Source](https://github.com/sst/opencode/compare/v1.0.200...v1.0.201)

- Fixed prompt input issues
- Removed list tool

###
[`v1.0.200`](https://github.com/sst/opencode/releases/tag/v1.0.200)

[Compare
Source](https://github.com/sst/opencode/compare/v1.0.199...v1.0.200)

- Fixed scroll jank in session turn and review
- Fixed override agent model
- Fixed reconcile session diff updates

###
[`v1.0.199`](https://github.com/sst/opencode/releases/tag/v1.0.199)

[Compare
Source](https://github.com/sst/opencode/compare/v1.0.198...v1.0.199)

- Fixed server connection failure display
- Fixed Content-Type headers for static assets on app.opencode.ai
([@&#8203;sourman](https://github.com/sourman))
- Disabled tips display in home route

**Thank you to 3 community contributors:**

- [@&#8203;robbtolli](https://github.com/robbtolli):
- docs: Corrected the number of built-in subagents in documentation
([#&#8203;6133](https://github.com/sst/opencode/issues/6133))
- [@&#8203;connorads](https://github.com/connorads):
- docs: update skills to use canonical `~/.config/opencode` location
([#&#8203;6132](https://github.com/sst/opencode/issues/6132))
- [@&#8203;sourman](https://github.com/sourman):
- fix: correct Content-Type headers for static assets on app.opencode.ai
([#&#8203;6113](https://github.com/sst/opencode/issues/6113))

###
[`v1.0.198`](https://github.com/sst/opencode/releases/tag/v1.0.198)

[Compare
Source](https://github.com/sst/opencode/compare/v1.0.195...v1.0.198)

- revert responsive UI changes

###
[`v1.0.195`](https://github.com/sst/opencode/releases/tag/v1.0.195)

[Compare
Source](https://github.com/sst/opencode/compare/v1.0.194...v1.0.195)

No notable changes

###
[`v1.0.194`](https://github.com/sst/opencode/releases/tag/v1.0.194)

[Compare
Source](https://github.com/sst/opencode/compare/v1.0.193...v1.0.194)

- Added "Did you know?" start screen tips
- Added prompt stashing
([@&#8203;RhysSullivan](https://github.com/RhysSullivan))
- Handle tools/list\_changed notifications in MCP
([@&#8203;seuros](https://github.com/seuros))
- Console copy-to-clipboard via opentui
([@&#8203;edlsh](https://github.com/edlsh))
- Fixed textarea resizing when pasting prompt less than 150 characters
([@&#8203;OpeOginni](https://github.com/OpeOginni))
- Prevented keybinds from executing when dialog is open
([@&#8203;anntnzrb](https://github.com/anntnzrb))
- Fixed favorites and recents stay visible when filtering models
([@&#8203;DanielFGray](https://github.com/DanielFGray))
- Updated current todo style
- Updated import and PR commands to use new share link URL
- Made "The socket connection was closed unexpectedly" errors retryable
- Improved error retry logic
- Fixed session sort when multiple active
- Fixed an issue where text selection was disabled
- Excluded deprecated models
- Conditionally show review pane toggle
- Fixed GitHub Pull Request event handling
([@&#8203;dbpolito](https://github.com/dbpolito))
- Added Cloudflare AI Gateway provider
([@&#8203;elithrar](https://github.com/elithrar))

**Thank you to 12 community contributors:**

- [@&#8203;dbpolito](https://github.com/dbpolito):
- Fix Github Pull Request Event
([#&#8203;6037](https://github.com/sst/opencode/issues/6037))
- [@&#8203;RhysSullivan](https://github.com/RhysSullivan):
- \[feat]: prompt stashing
([#&#8203;6021](https://github.com/sst/opencode/issues/6021))
- [@&#8203;anntnzrb](https://github.com/anntnzrb):
- fix(tui): prevent keybinds from executing when dialog is open
([#&#8203;6017](https://github.com/sst/opencode/issues/6017))
- feat(install): add standard CLI flags (--help, --version,
--no-modify-path)
([#&#8203;5885](https://github.com/sst/opencode/issues/5885))
- [@&#8203;elithrar](https://github.com/elithrar):
- docs: add MCP OAuth debugging section
([#&#8203;6047](https://github.com/sst/opencode/issues/6047))
- providers: add Cloudflare AI Gateway
([#&#8203;5174](https://github.com/sst/opencode/issues/5174))
- [@&#8203;DanielFGray](https://github.com/DanielFGray):
- fix: favorites and recents stay visible when filtering models
([#&#8203;6053](https://github.com/sst/opencode/issues/6053))
- [@&#8203;JRedeker](https://github.com/JRedeker):
- Add opencode-shell-strategy plugin to ecosystem
([#&#8203;5995](https://github.com/sst/opencode/issues/5995))
- [@&#8203;nagyv](https://github.com/nagyv):
- Update gitlab.mdx to use the 2.x component version
([#&#8203;6062](https://github.com/sst/opencode/issues/6062))
- [@&#8203;OpeOginni](https://github.com/OpeOginni):
- fix: resize textarea when pasting prompt less than 150 chars
([#&#8203;6070](https://github.com/sst/opencode/issues/6070))
- [@&#8203;edlsh](https://github.com/edlsh):
- feat(tui): console copy-to-clipboard via opentui
([#&#8203;5658](https://github.com/sst/opencode/issues/5658))
- [@&#8203;seuros](https://github.com/seuros):
- feat(mcp): handle tools/list\_changed notifications
([#&#8203;5913](https://github.com/sst/opencode/issues/5913))
- [@&#8203;xiantang](https://github.com/xiantang):
- docs: add Neovim to the list of editors
([#&#8203;6081](https://github.com/sst/opencode/issues/6081))
- [@&#8203;R44VC0RP](https://github.com/R44VC0RP):
- fix: remove SVG favicon to improve SEO
([#&#8203;5755](https://github.com/sst/opencode/issues/5755))

</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://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:eyJjcmVhdGVkSW5WZXIiOiI0Mi41OS4wIiwidXBkYXRlZEluVmVyIjoiNDIuNTkuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19-->

---------

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>
renovate Bot added a commit to izumin5210/dotfiles that referenced this pull request Dec 27, 2025
)

This PR contains the following updates:

| Package | Update | Change | Pending |
|---|---|---|---|
|
[aquaproj/aqua-registry](https://github.com/aquaproj/aqua-registry)
| minor | `v4.446.0` -> `v4.447.0` | `v4.448.0` (+1) |

---

### Release Notes

<details>
<summary>aquaproj/aqua-registry (aquaproj/aqua-registry)</summary>

###
[`v4.447.0`](https://github.com/aquaproj/aqua-registry/releases/tag/v4.447.0)

[Compare
Source](https://github.com/aquaproj/aqua-registry/compare/v4.446.0...v4.447.0)


[Issues](https://github.com/aquaproj/aqua-registry/issues?q=is%3Aissue+milestone%3Av4.447.0)
| [Pull
Requests](https://github.com/aquaproj/aqua-registry/pulls?q=is%3Apr+milestone%3Av4.447.0)
|
<aquaproj/aqua-registry@v4.446.0...v4.447.0>

#### 🎉 New Packages


[#&#8203;45755](https://github.com/aquaproj/aqua-registry/issues/45755)
[tuist/tuist](https://github.com/tuist/tuist) - A toolchain to
generate Xcode projects from Swift packages
[@&#8203;jdx](https://github.com/jdx)

[#&#8203;46040](https://github.com/aquaproj/aqua-registry/issues/46040)
[jamf/Notifier](https://github.com/jamf/Notifier) - Swift
project which can post macOS alert or banner notifications on 10.15+
clients [@&#8203;TyceHerrman](https://github.com/TyceHerrman)

[#&#8203;45738](https://github.com/aquaproj/aqua-registry/issues/45738)
[nektro/zigmod](https://github.com/nektro/zigmod) - Zig package
manager [@&#8203;jdx](https://github.com/jdx)

#### Improvement


[#&#8203;46162](https://github.com/aquaproj/aqua-registry/issues/46162)
golang.org/x/perf/cmd/benchstat: Set `go_version_path`


[aquaproj/aqua#4422](https://github.com/aquaproj/aqua/pull/4422)

#### Fixes


[#&#8203;46166](https://github.com/aquaproj/aqua-registry/issues/46166)
Re-scaffold gohugoio/hugo

[#&#8203;46167](https://github.com/aquaproj/aqua-registry/issues/46167)
Re-scaffold gohugoio/hugo/hugo-extended

[#&#8203;46168](https://github.com/aquaproj/aqua-registry/issues/46168)
Re-scaffold steveyegge/beads

[#&#8203;46169](https://github.com/aquaproj/aqua-registry/issues/46169)
stackrox/kube-linter: Fix cosign settings

[#&#8203;46173](https://github.com/aquaproj/aqua-registry/issues/46173)
Fix redpanda-data/connect

[#&#8203;46198](https://github.com/aquaproj/aqua-registry/issues/46198)
Re-scaffold maxpert/marmot

[#&#8203;46200](https://github.com/aquaproj/aqua-registry/issues/46200)
mas-cli/mas: Support mas v4.0.0 or later

[#&#8203;46199](https://github.com/aquaproj/aqua-registry/issues/46199)
Fix rest-sh/restish

</details>

---

### Configuration

📅 **Schedule**: Branch creation - Between 12:00 AM and 03:59 AM, only on
Monday ( * 0-3 * * 1 ) in timezone Asia/Tokyo, Automerge - At any time
(no schedule defined).

🚦 **Automerge**: Enabled.

♻ **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.

---

- [ ] <!-- 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/izumin5210/dotfiles).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi41OS4wIiwidXBkYXRlZEluVmVyIjoiNDIuNTkuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: izumin5210-update-aqua-checksum[bot] <169593670+izumin5210-update-aqua-checksum[bot]@users.noreply.github.com>
tmeijn pushed a commit to tmeijn/dotfiles that referenced this pull request Jan 5, 2026
This MR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [aquaproj/aqua-registry](https://github.com/aquaproj/aqua-registry) | minor | `v4.446.0` → `v4.451.1` |

MR created with the help of [el-capitano/tools/renovate-bot](https://gitlab.com/el-capitano/tools/renovate-bot).

**Proposed changes to behavior should be submitted there as MRs.**

---

### Release Notes

<details>
<summary>aquaproj/aqua-registry (aquaproj/aqua-registry)</summary>

### [`v4.451.1`](https://github.com/aquaproj/aqua-registry/releases/tag/v4.451.1)

[Compare Source](aquaproj/aqua-registry@v4.451.0...v4.451.1)

[Issues](https://github.com/aquaproj/aqua-registry/issues?q=is%3Aissue+milestone%3Av4.451.1) | [Merge Requests](https://github.com/aquaproj/aqua-registry/pulls?q=is%3Apr+milestone%3Av4.451.1) | <aquaproj/aqua-registry@v4.451.0...v4.451.1>

#### Security

FiloSottile/age: GitHub artifact attestations config [#&#8203;46498](aquaproj/aqua-registry#46498) [@&#8203;scop](https://github.com/scop)
sethvargo/ratchet: GitHub artifact attestations config [#&#8203;46517](aquaproj/aqua-registry#46517) [@&#8203;scop](https://github.com/scop)

#### Fixes

[#&#8203;46477](aquaproj/aqua-registry#46477) zyedidia/micro: Support 2.0.15 or later [@&#8203;Ash258](https://github.com/Ash258)
[#&#8203;46519](aquaproj/aqua-registry#46519) domoritz/arrow-tools/{csv2arrow,csv2parquet,json2arrow,json2parquet}: Support v0.24.4 or later

### [`v4.451.0`](https://github.com/aquaproj/aqua-registry/releases/tag/v4.451.0)

[Compare Source](aquaproj/aqua-registry@v4.450.0...v4.451.0)

[Issues](https://github.com/aquaproj/aqua-registry/issues?q=is%3Aissue+milestone%3Av4.451.0) | [Merge Requests](https://github.com/aquaproj/aqua-registry/pulls?q=is%3Apr+milestone%3Av4.451.0) | <aquaproj/aqua-registry@v4.450.0...v4.451.0>

#### 🎉 New Packages

[#&#8203;46419](aquaproj/aqua-registry#46419) [github/gh-ost](https://github.com/github/gh-ost) - GitHub's Online Schema-migration Tool for MySQL [@&#8203;scop](https://github.com/scop)
[#&#8203;46468](aquaproj/aqua-registry#46468) [spinel-coop/rv](https://github.com/spinel-coop/rv) - Next-gen very fast Ruby tooling [@&#8203;joonas](https://github.com/joonas)

#### Fixes

Re-scaffold bvaisvil/zenith [#&#8203;46439](aquaproj/aqua-registry#46439)
txn2/kubefwd: Old releases were removed [#&#8203;46437](aquaproj/aqua-registry#46437)
Support pranshuparmar/witr v0.1.3 [#&#8203;46409](aquaproj/aqua-registry#46409)

### [`v4.450.0`](https://github.com/aquaproj/aqua-registry/releases/tag/v4.450.0)

[Compare Source](aquaproj/aqua-registry@v4.449.0...v4.450.0)

[Issues](https://github.com/aquaproj/aqua-registry/issues?q=is%3Aissue+milestone%3Av4.450.0) | [Merge Requests](https://github.com/aquaproj/aqua-registry/pulls?q=is%3Apr+milestone%3Av4.450.0) | <aquaproj/aqua-registry@v4.449.0...v4.450.0>

#### 🎉 New Packages

[#&#8203;46393](aquaproj/aqua-registry#46393) [github/copilot-cli](https://github.com/github/copilot-cli) - GitHub Copilot CLI brings the power of Copilot coding agent directly to your terminal [@&#8203;0x5341](https://github.com/0x5341)

#### Fixes

BoringDystopiaDevelopment/tmuxai: Transfer the repository to alvinunreal/tmuxai [#&#8203;46354](aquaproj/aqua-registry#46354)

### [`v4.449.0`](https://github.com/aquaproj/aqua-registry/releases/tag/v4.449.0)

[Compare Source](aquaproj/aqua-registry@v4.448.1...v4.449.0)

[Issues](https://github.com/aquaproj/aqua-registry/issues?q=is%3Aissue+milestone%3Av4.449.0) | [Merge Requests](https://github.com/aquaproj/aqua-registry/pulls?q=is%3Apr+milestone%3Av4.449.0) | <aquaproj/aqua-registry@v4.448.1...v4.449.0>

#### 🎉 New Packages

[#&#8203;46345](aquaproj/aqua-registry#46345) [pranshuparmar/witr](https://github.com/pranshuparmar/witr): Why is this running

#### Security

biomejs/biome: GitHub artifact attestations config [#&#8203;46335](aquaproj/aqua-registry#46335) [@&#8203;scop](https://github.com/scop)
txn2/kubefwd: cosign config [#&#8203;46334](aquaproj/aqua-registry#46334) [@&#8203;scop](https://github.com/scop)

#### Fixes

aristocratos/btop: Support btop v1.4.6 or later [#&#8203;46347](aquaproj/aqua-registry#46347)
Re-scaffold FiloSottile/age [#&#8203;46346](aquaproj/aqua-registry#46346)
alvinunreal/tmuxai: transfer the repository to BoringDystopiaDevelopment/tmuxai [#&#8203;46331](aquaproj/aqua-registry#46331)

### [`v4.448.1`](https://github.com/aquaproj/aqua-registry/releases/tag/v4.448.1)

[Compare Source](aquaproj/aqua-registry@v4.448.0...v4.448.1)

[Issues](https://github.com/aquaproj/aqua-registry/issues?q=is%3Aissue+milestone%3Av4.448.1) | [Merge Requests](https://github.com/aquaproj/aqua-registry/pulls?q=is%3Apr+milestone%3Av4.448.1) | <aquaproj/aqua-registry@v4.448.0...v4.448.1>

#### Security

go-acme/lego: GitHub artifact attestations config [#&#8203;46307](aquaproj/aqua-registry#46307) [@&#8203;scop](https://github.com/scop)
borgbackup/borg: GitHub artifact attestations config [#&#8203;46305](aquaproj/aqua-registry#46305) [@&#8203;scop](https://github.com/scop)
fission/fission: GitHub artifact attestations config [#&#8203;46303](aquaproj/aqua-registry#46303) [@&#8203;scop](https://github.com/scop)

#### Fixes

Re-scaffold biomejs/biome [#&#8203;46310](aquaproj/aqua-registry#46310)
bootandy/dust: Fixed bootandy/dust to support new platforms added in v0.4.5.0 and later [#&#8203;46282](aquaproj/aqua-registry#46282) [@&#8203;0x5341](https://github.com/0x5341)

### [`v4.448.0`](https://github.com/aquaproj/aqua-registry/releases/tag/v4.448.0)

[Compare Source](aquaproj/aqua-registry@v4.447.1...v4.448.0)

[Issues](https://github.com/aquaproj/aqua-registry/issues?q=is%3Aissue+milestone%3Av4.448.0) | [Merge Requests](https://github.com/aquaproj/aqua-registry/pulls?q=is%3Apr+milestone%3Av4.448.0) | <aquaproj/aqua-registry@v4.447.1...v4.448.0>

#### 🎉 New Packages

[#&#8203;46252](aquaproj/aqua-registry#46252) [astral-sh/ty](https://github.com/astral-sh/ty) - An extremely fast Python type checker and language server, written in Rust [@&#8203;joonas](https://github.com/joonas)
[#&#8203;46260](aquaproj/aqua-registry#46260) [golangci/golines](https://github.com/golangci/golines): A golang formatter that fixes long lines

#### Fixes

[#&#8203;46245](aquaproj/aqua-registry#46245) [#&#8203;46258](aquaproj/aqua-registry#46258) suzuki-shunsuke/rgo: Support Go version

rgo was rewritten in Go.

### [`v4.447.1`](https://github.com/aquaproj/aqua-registry/releases/tag/v4.447.1)

[Compare Source](aquaproj/aqua-registry@v4.447.0...v4.447.1)

[Issues](https://github.com/aquaproj/aqua-registry/issues?q=is%3Aissue+milestone%3Av4.447.1) | [Merge Requests](https://github.com/aquaproj/aqua-registry/pulls?q=is%3Apr+milestone%3Av4.447.1) | <aquaproj/aqua-registry@v4.447.0...v4.447.1>

#### Improvement

Enable arm64 for psf/black [#&#8203;46216](aquaproj/aqua-registry#46216) [@&#8203;jinnatar](https://github.com/jinnatar)

#### Fixes

[#&#8203;46235](aquaproj/aqua-registry#46235) saucelabs/forwarder: Support v1.4.1 or later
[#&#8203;46234](aquaproj/aqua-registry#46234) gsamokovarov/jump: Support jump v0.67.0
fix(kubescape/kubescape): support kubescape v3.0.47 [#&#8203;46232](aquaproj/aqua-registry#46232)
fix(fission/fission): support fission v1.22.0 [#&#8203;46231](aquaproj/aqua-registry#46231)
Re-scaffold aquasecurity/starboard [#&#8203;46230](aquaproj/aqua-registry#46230)
fix(cri-o/cri-o): support cri-o v1.35.0 [#&#8203;46229](aquaproj/aqua-registry#46229)
fix(haskell/cabal/cabal-install): support v3.16.1.0 [#&#8203;46225](aquaproj/aqua-registry#46225)
fix(cubefs/cubefs): remove cfs-preload [#&#8203;46222](aquaproj/aqua-registry#46222)
[#&#8203;46233](aquaproj/aqua-registry#46233) folbricht/desync: Mark v1.0.0 as no asset
fix(mistakenelf/fm): mark v1.2.0 as no asset [#&#8203;46226](aquaproj/aqua-registry#46226)

### [`v4.447.0`](https://github.com/aquaproj/aqua-registry/releases/tag/v4.447.0)

[Compare Source](aquaproj/aqua-registry@v4.446.0...v4.447.0)

[Issues](https://github.com/aquaproj/aqua-registry/issues?q=is%3Aissue+milestone%3Av4.447.0) | [Merge Requests](https://github.com/aquaproj/aqua-registry/pulls?q=is%3Apr+milestone%3Av4.447.0) | <aquaproj/aqua-registry@v4.446.0...v4.447.0>

#### 🎉 New Packages

[#&#8203;45755](aquaproj/aqua-registry#45755) [tuist/tuist](https://github.com/tuist/tuist) - A toolchain to generate Xcode projects from Swift packages [@&#8203;jdx](https://github.com/jdx)
[#&#8203;46040](aquaproj/aqua-registry#46040) [jamf/Notifier](https://github.com/jamf/Notifier) - Swift project which can post macOS alert or banner notifications on 10.15+ clients [@&#8203;TyceHerrman](https://github.com/TyceHerrman)
[#&#8203;45738](aquaproj/aqua-registry#45738) [nektro/zigmod](https://github.com/nektro/zigmod) - Zig package manager [@&#8203;jdx](https://github.com/jdx)

#### Improvement

[#&#8203;46162](aquaproj/aqua-registry#46162) golang.org/x/perf/cmd/benchstat: Set `go_version_path`

[aquaproj/aqua#4422](aquaproj/aqua#4422)

#### Fixes

[#&#8203;46166](aquaproj/aqua-registry#46166) Re-scaffold gohugoio/hugo
[#&#8203;46167](aquaproj/aqua-registry#46167) Re-scaffold gohugoio/hugo/hugo-extended
[#&#8203;46168](aquaproj/aqua-registry#46168) Re-scaffold steveyegge/beads
[#&#8203;46169](aquaproj/aqua-registry#46169) stackrox/kube-linter: Fix cosign settings
[#&#8203;46173](aquaproj/aqua-registry#46173) Fix redpanda-data/connect
[#&#8203;46198](aquaproj/aqua-registry#46198) Re-scaffold maxpert/marmot
[#&#8203;46200](aquaproj/aqua-registry#46200) mas-cli/mas: Support mas v4.0.0 or later
[#&#8203;46199](aquaproj/aqua-registry#46199) Fix rest-sh/restish

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever MR becomes conflicted, or you tick the rebase/retry checkbox.

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

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this MR, check this box

---

This MR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi42Ni4wIiwidXBkYXRlZEluVmVyIjoiNDIuNjkuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiUmVub3ZhdGUgQm90IiwiYXV0b21hdGlvbjpib3QtYXV0aG9yZWQiLCJkZXBlbmRlbmN5LXR5cGU6Om1pbm9yIl19-->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

enhancement New feature or request

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Add support to aqua generate/update for finding version of go packages that have no git tags

2 participants