feat: get pseudo-version from Go Proxy if no tagged version exists#4422
Conversation
|
|
||
| type InfoPayload struct { | ||
| Version string | ||
| Time time.Time |
There was a problem hiding this comment.
| Time time.Time |
Time is unused.
| 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 |
There was a problem hiding this comment.
err should be wrapped to distinguish list and latest.
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
Ah, no logger is passed to List method as argument.
Hmm.
There was a problem hiding this comment.
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.
|
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 https://aquaproj.github.io/docs/reference/registry-config/go-version-path/ |
$ ~/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. |
|
$ 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"% |
The registry configuration needs to look like: |
|
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"}}% |
|
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 |
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` |  |  | | [aquaproj/aqua-registry](https://github.com/aquaproj/aqua-registry) | minor | `v4.446.0` -> `v4.447.1` |  |  | | [aws/aws-cli](https://github.com/aws/aws-cli) | patch | `2.32.22` -> `2.32.23` |  |  | | [go-task/task](https://github.com/go-task/task) | patch | `v3.46.3` -> `v3.46.4` |  |  | | [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` |  |  | | [pnpm/pnpm](https://github.com/pnpm/pnpm) | patch | `v10.26.1` -> `v10.26.2` |  |  | --- > [!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 [#​4422](https://github.com/aquaproj/aqua/issues/4422) Get pseudo-versions from Go Proxy if no tagged version exists [@​gizmoguy](https://github.com/gizmoguy) #### Fixes [#​4401](https://github.com/aquaproj/aqua/issues/4401) Add YAML tags [@​Shion1305](https://github.com/Shion1305) [#​4404](https://github.com/aquaproj/aqua/issues/4404) Update golangci-lint to v2.7.2, with lint fixes [@​Shion1305](https://github.com/Shion1305) #### Dependency Updates [#​4402](https://github.com/aquaproj/aqua/issues/4402) Update goreleaser to v2.13.1 [#​4405](https://github.com/aquaproj/aqua/issues/4405) Update anchore/syft to v1.38.2 [#​4406](https://github.com/aquaproj/aqua/issues/4406) Update Cosign to v3.0.3 [#​4420](https://github.com/aquaproj/aqua/issues/4420) Update expr to v1.17.7 [#​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 [#​46216](https://github.com/aquaproj/aqua-registry/issues/46216) [@​jinnatar](https://github.com/jinnatar) #### Fixes [#​46235](https://github.com/aquaproj/aqua-registry/issues/46235) saucelabs/forwarder: Support v1.4.1 or later [#​46234](https://github.com/aquaproj/aqua-registry/issues/46234) gsamokovarov/jump: Support jump v0.67.0 fix(kubescape/kubescape): support kubescape v3.0.47 [#​46232](https://github.com/aquaproj/aqua-registry/issues/46232) fix(fission/fission): support fission v1.22.0 [#​46231](https://github.com/aquaproj/aqua-registry/issues/46231) Re-scaffold aquasecurity/starboard [#​46230](https://github.com/aquaproj/aqua-registry/issues/46230) fix(cri-o/cri-o): support cri-o v1.35.0 [#​46229](https://github.com/aquaproj/aqua-registry/issues/46229) fix(haskell/cabal/cabal-install): support v3.16.1.0 [#​46225](https://github.com/aquaproj/aqua-registry/issues/46225) fix(cubefs/cubefs): remove cfs-preload [#​46222](https://github.com/aquaproj/aqua-registry/issues/46222) [#​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 [#​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 [#​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 [@​jdx](https://github.com/jdx) [#​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 [@​TyceHerrman](https://github.com/TyceHerrman) [#​45738](https://github.com/aquaproj/aqua-registry/issues/45738) [nektro/zigmod](https://github.com/nektro/zigmod) - Zig package manager [@​jdx](https://github.com/jdx) #### Improvement [#​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 [#​46166](https://github.com/aquaproj/aqua-registry/issues/46166) Re-scaffold gohugoio/hugo [#​46167](https://github.com/aquaproj/aqua-registry/issues/46167) Re-scaffold gohugoio/hugo/hugo-extended [#​46168](https://github.com/aquaproj/aqua-registry/issues/46168) Re-scaffold steveyegge/beads [#​46169](https://github.com/aquaproj/aqua-registry/issues/46169) stackrox/kube-linter: Fix cosign settings [#​46173](https://github.com/aquaproj/aqua-registry/issues/46173) Fix redpanda-data/connect [#​46198](https://github.com/aquaproj/aqua-registry/issues/46198) Re-scaffold maxpert/marmot [#​46200](https://github.com/aquaproj/aqua-registry/issues/46200) mas-cli/mas: Support mas v4.0.0 or later [#​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 ([#​2591](https://github.com/go-task/task/issues/2591), [#​2604](https://github.com/go-task/task/issues/2604), [#​2592](https://github.com/go-task/task/issues/2592) by [@​WinkelCode](https://github.com/WinkelCode)). </details> <details> <summary>microsoft/typescript-go (npm:@​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") [#​10307](https://github.com/pnpm/pnpm/issues/10307). - Fix installation of Git dependencies using annotated tags [#​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 [#​10244](https://github.com/pnpm/pnpm/issues/10244). - Try to avoid making network calls with preferOffline [#​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>
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 [#​4422](https://github.com/aquaproj/aqua/issues/4422) Get pseudo-versions from Go Proxy if no tagged version exists [@​gizmoguy](https://github.com/gizmoguy) ##### Fixes [#​4401](https://github.com/aquaproj/aqua/issues/4401) Add YAML tags [@​Shion1305](https://github.com/Shion1305) [#​4404](https://github.com/aquaproj/aqua/issues/4404) Update golangci-lint to v2.7.2, with lint fixes [@​Shion1305](https://github.com/Shion1305) ##### Dependency Updates [#​4402](https://github.com/aquaproj/aqua/issues/4402) Update goreleaser to v2.13.1 [#​4405](https://github.com/aquaproj/aqua/issues/4405) Update anchore/syft to v1.38.2 [#​4406](https://github.com/aquaproj/aqua/issues/4406) Update Cosign to v3.0.3 [#​4420](https://github.com/aquaproj/aqua/issues/4420) Update expr to v1.17.7 [#​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 [#​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 [@​joonas](https://github.com/joonas) [#​46260](https://github.com/aquaproj/aqua-registry/issues/46260) [golangci/golines](https://github.com/golangci/golines): A golang formatter that fixes long lines #### Fixes [#​46245](https://github.com/aquaproj/aqua-registry/issues/46245) [#​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 [#​46216](https://github.com/aquaproj/aqua-registry/issues/46216) [@​jinnatar](https://github.com/jinnatar) #### Fixes [#​46235](https://github.com/aquaproj/aqua-registry/issues/46235) saucelabs/forwarder: Support v1.4.1 or later [#​46234](https://github.com/aquaproj/aqua-registry/issues/46234) gsamokovarov/jump: Support jump v0.67.0 fix(kubescape/kubescape): support kubescape v3.0.47 [#​46232](https://github.com/aquaproj/aqua-registry/issues/46232) fix(fission/fission): support fission v1.22.0 [#​46231](https://github.com/aquaproj/aqua-registry/issues/46231) Re-scaffold aquasecurity/starboard [#​46230](https://github.com/aquaproj/aqua-registry/issues/46230) fix(cri-o/cri-o): support cri-o v1.35.0 [#​46229](https://github.com/aquaproj/aqua-registry/issues/46229) fix(haskell/cabal/cabal-install): support v3.16.1.0 [#​46225](https://github.com/aquaproj/aqua-registry/issues/46225) fix(cubefs/cubefs): remove cfs-preload [#​46222](https://github.com/aquaproj/aqua-registry/issues/46222) [#​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 [#​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 [#​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 [@​jdx](https://github.com/jdx) [#​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 [@​TyceHerrman](https://github.com/TyceHerrman) [#​45738](https://github.com/aquaproj/aqua-registry/issues/45738) [nektro/zigmod](https://github.com/nektro/zigmod) - Zig package manager [@​jdx](https://github.com/jdx) #### Improvement [#​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 [#​46166](https://github.com/aquaproj/aqua-registry/issues/46166) Re-scaffold gohugoio/hugo [#​46167](https://github.com/aquaproj/aqua-registry/issues/46167) Re-scaffold gohugoio/hugo/hugo-extended [#​46168](https://github.com/aquaproj/aqua-registry/issues/46168) Re-scaffold steveyegge/beads [#​46169](https://github.com/aquaproj/aqua-registry/issues/46169) stackrox/kube-linter: Fix cosign settings [#​46173](https://github.com/aquaproj/aqua-registry/issues/46173) Fix redpanda-data/connect [#​46198](https://github.com/aquaproj/aqua-registry/issues/46198) Re-scaffold maxpert/marmot [#​46200](https://github.com/aquaproj/aqua-registry/issues/46200) mas-cli/mas: Support mas v4.0.0 or later [#​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>
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 [#​4422](https://github.com/aquaproj/aqua/issues/4422) Get pseudo-versions from Go Proxy if no tagged version exists [@​gizmoguy](https://github.com/gizmoguy) ##### Fixes [#​4401](https://github.com/aquaproj/aqua/issues/4401) Add YAML tags [@​Shion1305](https://github.com/Shion1305) [#​4404](https://github.com/aquaproj/aqua/issues/4404) Update golangci-lint to v2.7.2, with lint fixes [@​Shion1305](https://github.com/Shion1305) ##### Dependency Updates [#​4402](https://github.com/aquaproj/aqua/issues/4402) Update goreleaser to v2.13.1 [#​4405](https://github.com/aquaproj/aqua/issues/4405) Update anchore/syft to v1.38.2 [#​4406](https://github.com/aquaproj/aqua/issues/4406) Update Cosign to v3.0.3 [#​4420](https://github.com/aquaproj/aqua/issues/4420) Update expr to v1.17.7 [#​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 [#​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 [@​joonas](https://github.com/joonas) [#​46260](https://github.com/aquaproj/aqua-registry/issues/46260) [golangci/golines](https://github.com/golangci/golines): A golang formatter that fixes long lines #### Fixes [#​46245](https://github.com/aquaproj/aqua-registry/issues/46245) [#​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 [#​46216](https://github.com/aquaproj/aqua-registry/issues/46216) [@​jinnatar](https://github.com/jinnatar) #### Fixes [#​46235](https://github.com/aquaproj/aqua-registry/issues/46235) saucelabs/forwarder: Support v1.4.1 or later [#​46234](https://github.com/aquaproj/aqua-registry/issues/46234) gsamokovarov/jump: Support jump v0.67.0 fix(kubescape/kubescape): support kubescape v3.0.47 [#​46232](https://github.com/aquaproj/aqua-registry/issues/46232) fix(fission/fission): support fission v1.22.0 [#​46231](https://github.com/aquaproj/aqua-registry/issues/46231) Re-scaffold aquasecurity/starboard [#​46230](https://github.com/aquaproj/aqua-registry/issues/46230) fix(cri-o/cri-o): support cri-o v1.35.0 [#​46229](https://github.com/aquaproj/aqua-registry/issues/46229) fix(haskell/cabal/cabal-install): support v3.16.1.0 [#​46225](https://github.com/aquaproj/aqua-registry/issues/46225) fix(cubefs/cubefs): remove cfs-preload [#​46222](https://github.com/aquaproj/aqua-registry/issues/46222) [#​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 [#​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 [#​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 [@​jdx](https://github.com/jdx) [#​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 [@​TyceHerrman](https://github.com/TyceHerrman) [#​45738](https://github.com/aquaproj/aqua-registry/issues/45738) [nektro/zigmod](https://github.com/nektro/zigmod) - Zig package manager [@​jdx](https://github.com/jdx) #### Improvement [#​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 [#​46166](https://github.com/aquaproj/aqua-registry/issues/46166) Re-scaffold gohugoio/hugo [#​46167](https://github.com/aquaproj/aqua-registry/issues/46167) Re-scaffold gohugoio/hugo/hugo-extended [#​46168](https://github.com/aquaproj/aqua-registry/issues/46168) Re-scaffold steveyegge/beads [#​46169](https://github.com/aquaproj/aqua-registry/issues/46169) stackrox/kube-linter: Fix cosign settings [#​46173](https://github.com/aquaproj/aqua-registry/issues/46173) Fix redpanda-data/connect [#​46198](https://github.com/aquaproj/aqua-registry/issues/46198) Re-scaffold maxpert/marmot [#​46200](https://github.com/aquaproj/aqua-registry/issues/46200) mas-cli/mas: Support mas v4.0.0 or later [#​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>
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 [#​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 [@​joonas](https://github.com/joonas) [#​46260](https://github.com/aquaproj/aqua-registry/issues/46260) [golangci/golines](https://github.com/golangci/golines): A golang formatter that fixes long lines #### Fixes [#​46245](https://github.com/aquaproj/aqua-registry/issues/46245) [#​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 [#​46216](https://github.com/aquaproj/aqua-registry/issues/46216) [@​jinnatar](https://github.com/jinnatar) #### Fixes [#​46235](https://github.com/aquaproj/aqua-registry/issues/46235) saucelabs/forwarder: Support v1.4.1 or later [#​46234](https://github.com/aquaproj/aqua-registry/issues/46234) gsamokovarov/jump: Support jump v0.67.0 fix(kubescape/kubescape): support kubescape v3.0.47 [#​46232](https://github.com/aquaproj/aqua-registry/issues/46232) fix(fission/fission): support fission v1.22.0 [#​46231](https://github.com/aquaproj/aqua-registry/issues/46231) Re-scaffold aquasecurity/starboard [#​46230](https://github.com/aquaproj/aqua-registry/issues/46230) fix(cri-o/cri-o): support cri-o v1.35.0 [#​46229](https://github.com/aquaproj/aqua-registry/issues/46229) fix(haskell/cabal/cabal-install): support v3.16.1.0 [#​46225](https://github.com/aquaproj/aqua-registry/issues/46225) fix(cubefs/cubefs): remove cfs-preload [#​46222](https://github.com/aquaproj/aqua-registry/issues/46222) [#​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 [#​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 [#​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 [@​jdx](https://github.com/jdx) [#​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 [@​TyceHerrman](https://github.com/TyceHerrman) [#​45738](https://github.com/aquaproj/aqua-registry/issues/45738) [nektro/zigmod](https://github.com/nektro/zigmod) - Zig package manager [@​jdx](https://github.com/jdx) #### Improvement [#​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 [#​46166](https://github.com/aquaproj/aqua-registry/issues/46166) Re-scaffold gohugoio/hugo [#​46167](https://github.com/aquaproj/aqua-registry/issues/46167) Re-scaffold gohugoio/hugo/hugo-extended [#​46168](https://github.com/aquaproj/aqua-registry/issues/46168) Re-scaffold steveyegge/beads [#​46169](https://github.com/aquaproj/aqua-registry/issues/46169) stackrox/kube-linter: Fix cosign settings [#​46173](https://github.com/aquaproj/aqua-registry/issues/46173) Fix redpanda-data/connect [#​46198](https://github.com/aquaproj/aqua-registry/issues/46198) Re-scaffold maxpert/marmot [#​46200](https://github.com/aquaproj/aqua-registry/issues/46200) mas-cli/mas: Support mas v4.0.0 or later [#​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 [@​dependabot](https://github.com/dependabot)\[bot] in [#​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 [@​dependabot](https://github.com/dependabot)\[bot] in [#​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 [@​dependabot](https://github.com/dependabot)\[bot] in [#​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 [@​dependabot](https://github.com/dependabot)\[bot] in [#​528](https://github.com/homeport/dyff/pull/528) - build(deps): bump github.com/stretchr/testify from 1.10.0 to 1.11.0 by [@​dependabot](https://github.com/dependabot)\[bot] in [#​532](https://github.com/homeport/dyff/pull/532) - build(deps): bump github.com/onsi/gomega from 1.38.0 to 1.38.2 by [@​dependabot](https://github.com/dependabot)\[bot] in [#​533](https://github.com/homeport/dyff/pull/533) - build(deps): bump github.com/stretchr/testify from 1.11.0 to 1.11.1 by [@​dependabot](https://github.com/dependabot)\[bot] in [#​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 [@​dependabot](https://github.com/dependabot)\[bot] in [#​536](https://github.com/homeport/dyff/pull/536) - build(deps): bump github.com/spf13/pflag from 1.0.7 to 1.0.10 by [@​dependabot](https://github.com/dependabot)\[bot] in [#​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 [@​dependabot](https://github.com/dependabot)\[bot] in [#​539](https://github.com/homeport/dyff/pull/539) - build(deps): bump github.com/spf13/cobra from 1.9.1 to 1.10.1 by [@​dependabot](https://github.com/dependabot)\[bot] in [#​538](https://github.com/homeport/dyff/pull/538) - build(deps): bump actions/setup-go from 5 to 6 by [@​dependabot](https://github.com/dependabot)\[bot] in [#​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 [@​dependabot](https://github.com/dependabot)\[bot] in [#​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 [@​dependabot](https://github.com/dependabot)\[bot] in [#​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 [@​dependabot](https://github.com/dependabot)\[bot] in [#​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 [@​dependabot](https://github.com/dependabot)\[bot] in [#​559](https://github.com/homeport/dyff/pull/559) - build(deps): bump golangci/golangci-lint-action from 8 to 9 by [@​dependabot](https://github.com/dependabot)\[bot] in [#​562](https://github.com/homeport/dyff/pull/562) - build(deps): bump actions/checkout from 5 to 6 by [@​dependabot](https://github.com/dependabot)\[bot] in [#​568](https://github.com/homeport/dyff/pull/568) - build(deps): bump github.com/spf13/cobra from 1.10.1 to 1.10.2 by [@​dependabot](https://github.com/dependabot)\[bot] in [#​569](https://github.com/homeport/dyff/pull/569) - build(deps): bump github.com/onsi/gomega from 1.38.2 to 1.38.3 by [@​dependabot](https://github.com/dependabot)\[bot] in [#​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 [@​dependabot](https://github.com/dependabot)\[bot] in [#​576](https://github.com/homeport/dyff/pull/576) - build(deps): bump github.com/BurntSushi/toml from 1.5.0 to 1.6.0 by [@​dependabot](https://github.com/dependabot)\[bot] in [#​581](https://github.com/homeport/dyff/pull/581) - Fix build linter warning and update dependencies by [@​HeavyWombat](https://github.com/HeavyWombat) in [#​582](https://github.com/homeport/dyff/pull/582) - fix: Deterministic sort list in output to avoid random order by [@​tonur](https://github.com/tonur) in [#​527](https://github.com/homeport/dyff/pull/527) - Add test case for issue 525 by [@​HeavyWombat](https://github.com/HeavyWombat) in [#​583](https://github.com/homeport/dyff/pull/583) - docs(README): add mise alternative method installation by [@​jylenhof](https://github.com/jylenhof) in [#​579](https://github.com/homeport/dyff/pull/579) #### New Contributors - [@​tonur](https://github.com/tonur) made their first contribution in [#​527](https://github.com/homeport/dyff/pull/527) - [@​jylenhof](https://github.com/jylenhof) made their first contribution in [#​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 ([@​sourman](https://github.com/sourman)) - Disabled tips display in home route **Thank you to 3 community contributors:** - [@​robbtolli](https://github.com/robbtolli): - docs: Corrected the number of built-in subagents in documentation ([#​6133](https://github.com/sst/opencode/issues/6133)) - [@​connorads](https://github.com/connorads): - docs: update skills to use canonical `~/.config/opencode` location ([#​6132](https://github.com/sst/opencode/issues/6132)) - [@​sourman](https://github.com/sourman): - fix: correct Content-Type headers for static assets on app.opencode.ai ([#​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 ([@​RhysSullivan](https://github.com/RhysSullivan)) - Handle tools/list\_changed notifications in MCP ([@​seuros](https://github.com/seuros)) - Console copy-to-clipboard via opentui ([@​edlsh](https://github.com/edlsh)) - Fixed textarea resizing when pasting prompt less than 150 characters ([@​OpeOginni](https://github.com/OpeOginni)) - Prevented keybinds from executing when dialog is open ([@​anntnzrb](https://github.com/anntnzrb)) - Fixed favorites and recents stay visible when filtering models ([@​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 ([@​dbpolito](https://github.com/dbpolito)) - Added Cloudflare AI Gateway provider ([@​elithrar](https://github.com/elithrar)) **Thank you to 12 community contributors:** - [@​dbpolito](https://github.com/dbpolito): - Fix Github Pull Request Event ([#​6037](https://github.com/sst/opencode/issues/6037)) - [@​RhysSullivan](https://github.com/RhysSullivan): - \[feat]: prompt stashing ([#​6021](https://github.com/sst/opencode/issues/6021)) - [@​anntnzrb](https://github.com/anntnzrb): - fix(tui): prevent keybinds from executing when dialog is open ([#​6017](https://github.com/sst/opencode/issues/6017)) - feat(install): add standard CLI flags (--help, --version, --no-modify-path) ([#​5885](https://github.com/sst/opencode/issues/5885)) - [@​elithrar](https://github.com/elithrar): - docs: add MCP OAuth debugging section ([#​6047](https://github.com/sst/opencode/issues/6047)) - providers: add Cloudflare AI Gateway ([#​5174](https://github.com/sst/opencode/issues/5174)) - [@​DanielFGray](https://github.com/DanielFGray): - fix: favorites and recents stay visible when filtering models ([#​6053](https://github.com/sst/opencode/issues/6053)) - [@​JRedeker](https://github.com/JRedeker): - Add opencode-shell-strategy plugin to ecosystem ([#​5995](https://github.com/sst/opencode/issues/5995)) - [@​nagyv](https://github.com/nagyv): - Update gitlab.mdx to use the 2.x component version ([#​6062](https://github.com/sst/opencode/issues/6062)) - [@​OpeOginni](https://github.com/OpeOginni): - fix: resize textarea when pasting prompt less than 150 chars ([#​6070](https://github.com/sst/opencode/issues/6070)) - [@​edlsh](https://github.com/edlsh): - feat(tui): console copy-to-clipboard via opentui ([#​5658](https://github.com/sst/opencode/issues/5658)) - [@​seuros](https://github.com/seuros): - feat(mcp): handle tools/list\_changed notifications ([#​5913](https://github.com/sst/opencode/issues/5913)) - [@​xiantang](https://github.com/xiantang): - docs: add Neovim to the list of editors ([#​6081](https://github.com/sst/opencode/issues/6081)) - [@​R44VC0RP](https://github.com/R44VC0RP): - fix: remove SVG favicon to improve SEO ([#​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>
) 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 [#​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 [@​jdx](https://github.com/jdx) [#​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 [@​TyceHerrman](https://github.com/TyceHerrman) [#​45738](https://github.com/aquaproj/aqua-registry/issues/45738) [nektro/zigmod](https://github.com/nektro/zigmod) - Zig package manager [@​jdx](https://github.com/jdx) #### Improvement [#​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 [#​46166](https://github.com/aquaproj/aqua-registry/issues/46166) Re-scaffold gohugoio/hugo [#​46167](https://github.com/aquaproj/aqua-registry/issues/46167) Re-scaffold gohugoio/hugo/hugo-extended [#​46168](https://github.com/aquaproj/aqua-registry/issues/46168) Re-scaffold steveyegge/beads [#​46169](https://github.com/aquaproj/aqua-registry/issues/46169) stackrox/kube-linter: Fix cosign settings [#​46173](https://github.com/aquaproj/aqua-registry/issues/46173) Fix redpanda-data/connect [#​46198](https://github.com/aquaproj/aqua-registry/issues/46198) Re-scaffold maxpert/marmot [#​46200](https://github.com/aquaproj/aqua-registry/issues/46200) mas-cli/mas: Support mas v4.0.0 or later [#​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>
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 [#​46498](aquaproj/aqua-registry#46498) [@​scop](https://github.com/scop) sethvargo/ratchet: GitHub artifact attestations config [#​46517](aquaproj/aqua-registry#46517) [@​scop](https://github.com/scop) #### Fixes [#​46477](aquaproj/aqua-registry#46477) zyedidia/micro: Support 2.0.15 or later [@​Ash258](https://github.com/Ash258) [#​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 [#​46419](aquaproj/aqua-registry#46419) [github/gh-ost](https://github.com/github/gh-ost) - GitHub's Online Schema-migration Tool for MySQL [@​scop](https://github.com/scop) [#​46468](aquaproj/aqua-registry#46468) [spinel-coop/rv](https://github.com/spinel-coop/rv) - Next-gen very fast Ruby tooling [@​joonas](https://github.com/joonas) #### Fixes Re-scaffold bvaisvil/zenith [#​46439](aquaproj/aqua-registry#46439) txn2/kubefwd: Old releases were removed [#​46437](aquaproj/aqua-registry#46437) Support pranshuparmar/witr v0.1.3 [#​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 [#​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 [@​0x5341](https://github.com/0x5341) #### Fixes BoringDystopiaDevelopment/tmuxai: Transfer the repository to alvinunreal/tmuxai [#​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 [#​46345](aquaproj/aqua-registry#46345) [pranshuparmar/witr](https://github.com/pranshuparmar/witr): Why is this running #### Security biomejs/biome: GitHub artifact attestations config [#​46335](aquaproj/aqua-registry#46335) [@​scop](https://github.com/scop) txn2/kubefwd: cosign config [#​46334](aquaproj/aqua-registry#46334) [@​scop](https://github.com/scop) #### Fixes aristocratos/btop: Support btop v1.4.6 or later [#​46347](aquaproj/aqua-registry#46347) Re-scaffold FiloSottile/age [#​46346](aquaproj/aqua-registry#46346) alvinunreal/tmuxai: transfer the repository to BoringDystopiaDevelopment/tmuxai [#​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 [#​46307](aquaproj/aqua-registry#46307) [@​scop](https://github.com/scop) borgbackup/borg: GitHub artifact attestations config [#​46305](aquaproj/aqua-registry#46305) [@​scop](https://github.com/scop) fission/fission: GitHub artifact attestations config [#​46303](aquaproj/aqua-registry#46303) [@​scop](https://github.com/scop) #### Fixes Re-scaffold biomejs/biome [#​46310](aquaproj/aqua-registry#46310) bootandy/dust: Fixed bootandy/dust to support new platforms added in v0.4.5.0 and later [#​46282](aquaproj/aqua-registry#46282) [@​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 [#​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 [@​joonas](https://github.com/joonas) [#​46260](aquaproj/aqua-registry#46260) [golangci/golines](https://github.com/golangci/golines): A golang formatter that fixes long lines #### Fixes [#​46245](aquaproj/aqua-registry#46245) [#​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 [#​46216](aquaproj/aqua-registry#46216) [@​jinnatar](https://github.com/jinnatar) #### Fixes [#​46235](aquaproj/aqua-registry#46235) saucelabs/forwarder: Support v1.4.1 or later [#​46234](aquaproj/aqua-registry#46234) gsamokovarov/jump: Support jump v0.67.0 fix(kubescape/kubescape): support kubescape v3.0.47 [#​46232](aquaproj/aqua-registry#46232) fix(fission/fission): support fission v1.22.0 [#​46231](aquaproj/aqua-registry#46231) Re-scaffold aquasecurity/starboard [#​46230](aquaproj/aqua-registry#46230) fix(cri-o/cri-o): support cri-o v1.35.0 [#​46229](aquaproj/aqua-registry#46229) fix(haskell/cabal/cabal-install): support v3.16.1.0 [#​46225](aquaproj/aqua-registry#46225) fix(cubefs/cubefs): remove cfs-preload [#​46222](aquaproj/aqua-registry#46222) [#​46233](aquaproj/aqua-registry#46233) folbricht/desync: Mark v1.0.0 as no asset fix(mistakenelf/fm): mark v1.2.0 as no asset [#​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 [#​45755](aquaproj/aqua-registry#45755) [tuist/tuist](https://github.com/tuist/tuist) - A toolchain to generate Xcode projects from Swift packages [@​jdx](https://github.com/jdx) [#​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 [@​TyceHerrman](https://github.com/TyceHerrman) [#​45738](aquaproj/aqua-registry#45738) [nektro/zigmod](https://github.com/nektro/zigmod) - Zig package manager [@​jdx](https://github.com/jdx) #### Improvement [#​46162](aquaproj/aqua-registry#46162) golang.org/x/perf/cmd/benchstat: Set `go_version_path` [aquaproj/aqua#4422](aquaproj/aqua#4422) #### Fixes [#​46166](aquaproj/aqua-registry#46166) Re-scaffold gohugoio/hugo [#​46167](aquaproj/aqua-registry#46167) Re-scaffold gohugoio/hugo/hugo-extended [#​46168](aquaproj/aqua-registry#46168) Re-scaffold steveyegge/beads [#​46169](aquaproj/aqua-registry#46169) stackrox/kube-linter: Fix cosign settings [#​46173](aquaproj/aqua-registry#46173) Fix redpanda-data/connect [#​46198](aquaproj/aqua-registry#46198) Re-scaffold maxpert/marmot [#​46200](aquaproj/aqua-registry#46200) mas-cli/mas: Support mas v4.0.0 or later [#​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-->
Check List
Require signed commits, so all commits must be signedThis PR fixes #4421 by adding the
$module/@v/listgo proxy API endpoint if@v/listAPI response is empty.After this patch is applied, if you define a local registry like this:
And attempt to install benchstat with:
$ aqua generate -i -g -s local,golang.org/x/perf/cmd/benchstatWe will now get a
aqua.yamlthat has a version set:I also tested and this works for upgrading go packages pinned to a pseudo-version with the
aqua updatecommand.