Skip to content

chore(deps): update ⬆️ aqua-packages #454

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 16, 2025
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 16, 2025

This PR contains the following updates:

Package Update Change
GoogleContainerTools/skaffold minor v2.15.0 -> v2.16.0
aquaproj/aqua minor v2.50.0 -> v2.51.2
aquaproj/aqua-registry minor v4.358.0 -> v4.367.0
derailed/k9s patch v0.50.4 -> v0.50.6
dlvhdr/gh-dash minor v4.14.0 -> v4.15.0
eza-community/eza patch v0.21.2 -> v0.21.3
fastfetch-cli/fastfetch minor 2.42.0 -> 2.43.0
golangci/golangci-lint patch v2.1.5 -> v2.1.6
jesseduffield/lazygit minor v0.49.0 -> v0.50.0
junegunn/fzf minor v0.61.3 -> v0.62.0
mikefarah/yq patch v4.45.1 -> v4.45.4
snyk/cli minor v1.1296.2 -> v1.1297.1
terraform-linters/tflint minor v0.56.0 -> v0.57.0
tofuutils/tenv minor v4.4.0 -> v4.6.2
twpayne/chezmoi patch v2.62.2 -> v2.62.4
weaveworks/eksctl minor v0.207.0 -> v0.208.0
withgraphite/homebrew-tap patch v1.6.1 -> v1.6.3

Release Notes

GoogleContainerTools/skaffold (GoogleContainerTools/skaffold)

v2.16.0

Compare Source

Linux amd64
curl -Lo skaffold https://storage.googleapis.com/skaffold/releases/v2.16.0/skaffold-linux-amd64 && chmod +x skaffold && sudo mv skaffold /usr/local/bin

Linux arm64
curl -Lo skaffold https://storage.googleapis.com/skaffold/releases/v2.16.0/skaffold-linux-arm64 && chmod +x skaffold && sudo mv skaffold /usr/local/bin

macOS amd64
curl -Lo skaffold https://storage.googleapis.com/skaffold/releases/v2.16.0/skaffold-darwin-amd64 && chmod +x skaffold && sudo mv skaffold /usr/local/bin

macOS arm64
curl -Lo skaffold https://storage.googleapis.com/skaffold/releases/v2.16.0/skaffold-darwin-arm64 && chmod +x skaffold && sudo mv skaffold /usr/local/bin

Windows
https://storage.googleapis.com/skaffold/releases/v2.16.0/skaffold-windows-amd64.exe

Docker image
gcr.io/k8s-skaffold/skaffold:v2.16.0

Highlights:

New Features and Additions:

  • feat(config): Enhance config list/set output #​9780
  • feat: Add support for configurable statusCheckDeadlineSeconds field for Cloud Run #​9778
  • feat: Add support in Cloud Run for configuring tolerateFailuresUntilDeadline and disabling status checks #​9799

Fixes:

  • Bugfix: Only prune images if changed #​9787

Updates and Refactors:

Docs, Test, and Release Updates:

  • docs: Make --no-prune documentation clearer #​9786
  • chore: bump golang.org/x/net from 0.23.0 to 0.38.0 in /integration/examples/grpc-e2e-tests/service #​9792
  • chore: remove the skaffold survey code #​9803
  • chore: upgrade all dependencies #​9802
  • chore: upgrade to Go 1.24.2 #​9805
  • chore: update dependencies in Dockerfile and integration tests #​9806

Huge thanks goes out to all of our contributors for this release:

  • Darien Lin
  • Martin
  • menahyouyeah
  • Michael Plump
  • Suleiman Dibirov
aquaproj/aqua (aquaproj/aqua)

v2.51.2

Compare Source

Pull Requests | Issues | aquaproj/aqua@v2.51.1...v2.51.2

🐛 Bug Fixes

#​3868 Fix version command

Dependency Updates

update module github.com/urfave/cli/v3 to v3.3.3 (#​3866)
golang.org/x/term to v0.32.0 (#​3863)

v2.51.1

Compare Source

Pull Requests | Issues | aquaproj/aqua@v2.51.0...v2.51.1

Features

#​3852 #​3853 Support managing a GitHub access token using Keyring

You can now manage a GitHub Access token using secret store such as Windows Credential Manager, macOS Keychain, and GNOME Keyring.

  1. Configure a GitHub Access token by aqua token set command:
$ aqua token set
Enter a GitHub access token: # Input GitHub Access token

or you can also pass a GitHub Access token via standard input:

echo "<github access token>" | aqua tokn set -stdin
  1. Enable the feature by setting the environment variable AQUA_KEYRING_ENABLED:
export AQUA_KEYRING_ENABLED=true

Note that if the environment variable GITHUB_TOKEN is set, this feature gets disabled.

You can remove a GitHub Access token from keyring by aqua token rm command:

aqua token rm

v2.51.0

Compare Source

Pull Requests | Issues | aquaproj/aqua@v2.50.1...v2.51.0

[!WARNING]
We intended to add a new command token in this release, but we forgot it.
Please use v2.51.1 or newer.

v2.50.1

Compare Source

Pull Requests | Issues | aquaproj/aqua@v2.50.0...v2.50.1

Improve the performance of command execution

#​3826

This release improves the performance of aqua which and aqua exec command.

aqua which read registries, but the standard registry is very large (about 2MB) so it makes the performance worse.
Furthermore, the standard registry gets larger every time we improve the standard registry.

To solve the problem, this pull request introduces the cache mechanism of packages by aqua.yaml.
aqua creates a cache file per aqua.yaml into $(aqua root-dir)/registry-cache/<base64 encoded aqua.yaml absolute path>.json.

The structure of cache files is:

{
  "absolute path of registry.yaml": {
    "package name": {
      "type": "github_release",
      // ...
    }
  }
}

If a registry type is local, a cache file isn't created.
Cache files are much smaller than the standard registry, so aqua can read them much faster.
If packages aren't found in cache files, aqua reads the original registries and updates cache files.
aqua removes unused records from cache.

Bench mark
$ hyperfine --warmup 3 "/Users/shunsukesuzuki/go/bin/aqua which golangci-lint" "/Users/shunsukesuzuki/.local/share/aquaproj-aqua/internal/pkgs/github_release/github.com/aquaproj/aqua/v2.50.1-1/aqua_darwin_arm64.tar.gz/aqua which golangci-lint" "/Users/shunsukesuzuki/.local/share/aquaproj-aqua/internal/pkgs/github_release/github.com/aquaproj/aqua/v2.50.0/aqua_darwin_arm64.tar.gz/aqua which golangci-lint"
Benchmark 1: /Users/shunsukesuzuki/go/bin/aqua which golangci-lint
  Time (mean ± σ):      25.0 ms ±   3.5 ms    [User: 21.4 ms, System: 3.7 ms]
  Range (min … max):    21.6 ms …  45.4 ms    77 runs
 
  Warning: Statistical outliers were detected. Consider re-running this benchmark on a quiet system without any interferences from other programs. It might help to use the '--warmup' or '--prepare' options.
 
Benchmark 2: /Users/shunsukesuzuki/.local/share/aquaproj-aqua/internal/pkgs/github_release/github.com/aquaproj/aqua/v2.50.1-1/aqua_darwin_arm64.tar.gz/aqua which golangci-lint
  Time (mean ± σ):      41.7 ms ±   4.5 ms    [User: 41.1 ms, System: 5.3 ms]
  Range (min … max):    37.2 ms …  62.3 ms    55 runs
 
  Warning: Statistical outliers were detected. Consider re-running this benchmark on a quiet system without any interferences from other programs. It might help to use the '--warmup' or '--prepare' options.
 
Benchmark 3: /Users/shunsukesuzuki/.local/share/aquaproj-aqua/internal/pkgs/github_release/github.com/aquaproj/aqua/v2.50.0/aqua_darwin_arm64.tar.gz/aqua which golangci-lint
  Time (mean ± σ):      42.8 ms ±   4.0 ms    [User: 41.9 ms, System: 5.6 ms]
  Range (min … max):    39.4 ms …  55.4 ms    43 runs
 
  Warning: The first benchmarking run for this command was significantly slower than the rest (54.4 ms). This could be caused by (filesystem) caches that were not filled until after the first run. You are already using the '--warmup' option which helps to fill these caches before the actual benchmark. You can either try to increase the warmup count further or re-run this benchmark on a quiet system in case it was a random outlier. Alternatively, consider using the '--prepare' option to clear the caches before each timing run.
 
Summary
  /Users/shunsukesuzuki/go/bin/aqua which golangci-lint ran
    1.67 ± 0.29 times faster than /Users/shunsukesuzuki/.local/share/aquaproj-aqua/internal/pkgs/github_release/github.com/aquaproj/aqua/v2.50.1-1/aqua_darwin_arm64.tar.gz/aqua which golangci-lint
    1.71 ± 0.29 times faster than /Users/shunsukesuzuki/.local/share/aquaproj-aqua/internal/pkgs/github_release/github.com/aquaproj/aqua/v2.50.0/aqua_darwin_arm64.tar.gz/aqua which golangci-lint
Others

#​3840 chore: update aqua-proxy to v1.2.9
#​3839 chore: update urfave-cli-v3-util to v0.0.4

aquaproj/aqua-registry (aquaproj/aqua-registry)

v4.367.0

Compare Source

Issues | Pull Requests | aquaproj/aqua-registry@v4.366.0...v4.367.0

🎉 New Packages

#​36413 bytecodealliance/wrpc/wit-bindgen-wrpc - Wasm component-native RPC framework @​AmandaCameron
#​36412 bytecodealliance/wasm-pkg-tools @​AmandaCameron
#​36410 bytecodealliance/wasm-tools - CLI and Rust libraries for low-level manipulation of WebAssembly modules @​AmandaCameron
#​36409 wasmCloud/wasmCloud/wash - wasmCloud is an open source Cloud Native Computing Foundation (CNCF) project that enables teams to build, manage, and scale polyglot apps across any cloud, K8s, or edge @​AmandaCameron

💡 To update wasmCloud/wasmCloud/wash using Renovate, please update aqua-renovate-config to 2.8.0 or newer.

https://github.com/aquaproj/aqua-renovate-config/releases/tag/2.8.0

#​36393 werf/nelm: Nelm is a Helm 3 alternative. It is a Kubernetes deployment tool that manages Helm Charts and deploys them to Kubernetes
#​36344 apache/tomcat: An open source implementation of the Jakarta Servlet, Jakarta Pages, Jakarta Expression Language, Jakarta WebSocket, Jakarta Annotations and Jakarta Authentication specifications @​murank

Fixes

#​36380 Canop/dysk

v4.366.0

Compare Source

Issues | Pull Requests | aquaproj/aqua-registry@v4.365.0...v4.366.0

🎉 New Packages

#​36328 ianlewis/todos - Parse TODO and FIXME comments from code @​ianlewis

Fixes

#​36333 crates.io/zizmor: Fix the repository of zizmor

v4.365.0

Compare Source

Issues | Pull Requests | aquaproj/aqua-registry@v4.364.0...v4.365.0

🎉 New Packages

#​36326 takumin/zizmor-bin: Static build of zizmor @​takumin
#​36313 alvinunreal/tmuxai: AI-Powered, Non-Intrusive Terminal Assistant

v4.364.0

Compare Source

Issues | Pull Requests | aquaproj/aqua-registry@v4.363.0...v4.364.0

🎉 New Packages

#​36266 KeisukeYamashita/commitlint-rs: Lint commit messages with conventional commit messages @​takumin
#​36263 psastras/sarif-rs/shellcheck-sarif: Convert shellcheck warnings into SARIF @​takumin
#​36262 psastras/sarif-rs/hadolint-sarif: Convert hadolint warnings into SARIF @​takumin
#​36261 psastras/sarif-rs/clang-tidy-sarif: Convert clang-tidy output into SARIF @​takumin
#​36260 psastras/sarif-rs/miri-sarif: Convert miri output into SARIF @​takumin
#​36259 psastras/sarif-rs/clippy-sarif: Convert clippy output into SARIF @​takumin
#​36258 psastras/sarif-rs/sarif-fmt: Pretty print SARIF results @​takumin

Fixes

#​35665 Re-scaffold tilt-dev/ctlptl
#​35661 Re-scaffold ryoppippi/zigchat

v4.363.0

Compare Source

Issues | Pull Requests | aquaproj/aqua-registry@v4.362.0...v4.363.0

🎉 New Packages

#​36220 mozilla/grcov: Rust tool to collect and aggregate code coverage data for multiple source files @​takumin
#​36225 qnighy/clippy-reviewdog-filter: A filter for integrating Clippy with Reviewdog @​takumin
#​36218 taiki-e/cargo-llvm-cov: Cargo subcommand to easily use LLVM source-based code coverage (-C instrument-coverage) @​takumin

Fixes

#​36205 Re-scaffold google/go-jsonnet

v4.362.0

Compare Source

Issues | Pull Requests | aquaproj/aqua-registry@v4.361.0...v4.362.0

🎉 New Packages

#​36119 k1LoW/deck - deck is a tool for creating deck using Markdown and Google Slides @​yashikota
#​36146 nil0x42/dnsanity: High-performance DNS validator using template-based verification @​takumin

Security

#​36152 dhth/bmm: Configure GitHub Artifact Attestations @​scop

Fixes

#​36113 xo/xo: rename the package to xo/dbtpl

v4.361.0

Compare Source

Issues | Pull Requests | aquaproj/aqua-registry@v4.360.0...v4.361.0

🎉 New Packages

#​36073 dyne/zenroom - Embedded no-code VM executing human-like language to manipulate data and process cryptographic operations @​matteo-cristino

v4.360.0

Compare Source

Issues | Pull Requests | aquaproj/aqua-registry@v4.359.0...v4.360.0

🎉 New Packages

#​35949 yashikota/genenv - A simple CLI tool to generate .env files from template files, automatically filling in placeholders with cryptographically secure random values @​yashikota
#​35931 actions/go-versions: Go releases for Actions Runner Images

Fixes

#​35913 Rename rust-lang/rustup/rustup-init to rust-lang/rustup @​takumin

Security

#​35947 containerd/nerdctl: Configure GitHub Artifact Attestations @​scop

v4.359.0

Compare Source

Issues | Pull Requests | aquaproj/aqua-registry@v4.358.0...v4.359.0

🎉 New Packages

#​35909 reproio/terraform-j2md: create readable terraform plan as markdown text from json plan output
#​35901 rust-lang/rustup/rustup-init: The installer for rustup @​takumin
#​35508 openfga/cli - A cross-platform CLI to interact with an OpenFGA server @​kaz

Re-scaffold

#​35883 ahmetb/kubectx
#​35685 utkuozdemir/pv-migrate
#​35682 updatecli/updatecli
#​35681 txn2/kubefwd

derailed/k9s (derailed/k9s)

v0.50.6

Compare Source

Release v0.50.6

Notes

Thank you to all that contributed with flushing out issues and enhancements for K9s!
I'll try to mark some of these issues as fixed. But if you don't mind grab the latest rev
and see if we're happier with some of the fixes!
If you've filed an issue please help me verify and close.

Your support, kindness and awesome suggestions to make K9s better are, as ever, very much noted and appreciated!
Also big thanks to all that have allocated their own time to help others on both slack and on this repo!!

As you may know, K9s is not pimped out by corps with deep pockets, thus if you feel K9s is helping your Kubernetes journey,
please consider joining our sponsorship program and/or make some noise on social! @​kitesurfer

On Slack? Please join us K9slackers

Maintenance Release!


Resolved Issues

  • #​3334 Watcher failed for events.k8s.io/v1/events -- expecting a meta table but got *unstructured.Unstructure

Contributed PRs

Please be sure to give Big Thanks! and ATTA Girls/Boys! to all the fine contributors for making K9s better for all of us!!

  • #​3332 fix: pre-check for get permissions only on port-forward
  • #​3311 Fix concurrent read writes
  • #​3310 fix: use full path of date to avoid conflict

© 2025 Imhotep Software LLC. All materials licensed under Apache v2.0

v0.50.5

Compare Source

Release v0.50.5

Notes

Thank you to all that contributed with flushing out issues and enhancements for K9s!
I'll try to mark some of these issues as fixed. But if you don't mind grab the latest rev
and see if we're happier with some of the fixes!
If you've filed an issue please help me verify and close.

Your support, kindness and awesome suggestions to make K9s better are, as ever, very much noted and appreciated!
Also big thanks to all that have allocated their own time to help others on both slack and on this repo!!

As you may know, K9s is not pimped out by corps with deep pockets, thus if you feel K9s is helping your Kubernetes journey,
please consider joining our sponsorship program and/or make some noise on social! @​kitesurfer

On Slack? Please join us K9slackers

Maintenance Release!


Resolved Issues

  • #​3328 Pod overview shows wrong number of running containers with sidecar init-container
  • #​3309 [0.50.4] k9s crashes when attempting to load logs
  • #​3301 Port Forward deleted without UI notification when forwarding to wrong port
  • #​3294 [0.50.4] k9s crashes when filtering based on labels
  • #​3278 k9s doesn't honor the --namespace parameter

Contributed PRs

Please be sure to give Big Thanks! and ATTA Girls/Boys! to all the fine contributors for making K9s better for all of us!!

  • #​3311 Fix concurrent read writes
  • #​3310 fix: use full path of date to avoid conflict
  • #​3308 Show replicasets from deployment view
  • #​3300 fix: truncate label selector input to max length
  • #​3296 fix: update time format in logging to 24-hour format

© 2025 Imhotep Software LLC. All materials licensed under Apache v2.0

dlvhdr/gh-dash (dlvhdr/gh-dash)

v4.15.0

Compare Source

Better PR sidebar, tab loading indicators and redraw builtin

  • The PR sidebar saw some improvements
    • the PR summary is now limited to 500 characters with an ability to expand it (e by default)
    • the number of files changed / additions / deletions and number of commits is now shown in the overview tab
    • some fixes to the checks and files tab
  • If you have drawing issues, you can now bind the redraw builtin command
  • Tabs will now show a loading indicator

Changelog

  • cd22afc Fix glamour link in README.md
  • d16610d Fix go.sum
  • ed35728 chore: bump bubbles v0.18.0 => v0.21.0
  • 556cd98 feat: add redraw builtin key-binding, unbound
  • eb2624d feat: changes summary
  • 7bb2f79 feat: merge as admin
  • 33b51f7 feat: set proper inputbox limit (pr/issue)
  • 403a213 feat: show loading indicator in tab name
  • 83d59e0 feat: summary view more
  • f2fbad5 fix(pr-sidebar): allow long file names
  • c06efe8 fix: empty checks + sidebar fixes
eza-community/eza (eza-community/eza)

v0.21.3: eza v0.21.3

Compare Source

Changelog

[0.21.3] - 2

025-05-02

Features
  • Add support for .ipynb file icons
Miscellaneous Tasks
  • Eza v0.21.3 changelogs, version bump
Styling
  • Unbreak formatting
Build
  • Bump DeterminateSystems/nix-installer-action from 16 to 17
  • Cargo bump 2025-05-01
  • Flake bump 2025-05-01

Checksums

sha256sum

3cb7c71a9e01bc8e3659c1874656acefe85ecd32559765a43d384df4d3a2b262  ./target/bin-0.21.3/eza_aarch64-unknown-linux-gnu_no_libgit.tar.gz
9f05e7a1d8380e0ec968ac477c678af4396830ea80dae62a13f3bf93db14d3e2  ./target/bin-0.21.3/eza_aarch64-unknown-linux-gnu_no_libgit.zip
1bbf9b35becf0ad895cade8b32de71983f3fe7e2066b893aae3a614b17ca3851  ./target/bin-0.21.3/eza_aarch64-unknown-linux-gnu.tar.gz
839964e6897b9f7efca7325e8da0e1f33374e7646de471c6f770ad20a25a28f5  ./target/bin-0.21.3/eza_aarch64-unknown-linux-gnu.zip
59d0242234dad023e52218817db1b9381eb13a6f8c25ba15fa3f6c11bdc3c67c  ./target/bin-0.21.3/eza_arm-unknown-linux-gnueabihf_no_libgit.tar.gz
9e0779aa180a483b3e6d1c4f7dfd91ba1d0bcd5b001d144bf35697b269261be6  ./target/bin-0.21.3/eza_arm-unknown-linux-gnueabihf_no_libgit.zip
9d695a24d38c8f69b524637824f6af114cd174aed3e9d0a64e333fadd3c1a78b  ./target/bin-0.21.3/eza_arm-unknown-linux-gnueabihf.tar.gz
8a93499c8ef163497386d158fad56f5caeafd971a191cb9653ecd124429b1320  ./target/bin-0.21.3/eza_arm-unknown-linux-gnueabihf.zip
b8c802cc47f6b4303fee9f0da9282c801fe4c8cff65a1a587cb63a2c81abb4af  ./target/bin-0.21.3/eza.exe_x86_64-pc-windows-gnu.tar.gz
496e2c77b8ab6441bc0480dc21f99b04afff6fdf1befc5858f70a4d5eca4bc05  ./target/bin-0.21.3/eza.exe_x86_64-pc-windows-gnu.zip
9d81c9a6766a6515c88e8cc2832b051caf1924179361988051459a4a94d9c5df  ./target/bin-0.21.3/eza_x86_64-unknown-linux-gnu.tar.gz
accb241485662282c1e66463a1a2d734f8875a9f38fd5c65d8b905246a59c46c  ./target/bin-0.21.3/eza_x86_64-unknown-linux-gnu.zip
e3091d10ad73350d4f7628d6f78b6c6a79701382bc4a5c96f57c34ac8924ef33  ./target/bin-0.21.3/eza_x86_64-unknown-linux-musl.tar.gz
afbf1c9ccec473f40f1ee3abfb368f6d60f5af15fc0aaff04bdaa30f9abf0a99  ./target/bin-0.21.3/eza_x86_64-unknown-linux-musl.zip

md5sum

7f8a6a168d842ca4855ea0853278da20  ./target/bin-0.21.3/eza_aarch64-unknown-linux-gnu_no_libgit.tar.gz
8d493770b7b32d27794ae496107726f0  ./target/bin-0.21.3/eza_aarch64-unknown-linux-gnu_no_libgit.zip
c25f4286adab36d40a466e7c1618063d  ./target/bin-0.21.3/eza_aarch64-unknown-linux-gnu.tar.gz
d7905500ffcf170a1a0c6b7c376ee271  ./target/bin-0.21.3/eza_aarch64-unknown-linux-gnu.zip
c604ab2734369bf1abf9ace9307fb306  ./target/bin-0.21.3/eza_arm-unknown-linux-gnueabihf_no_libgit.tar.gz
0eda4b93afe7a10b4ba89ee2ad26000f  ./target/bin-0.21.3/eza_arm-unknown-linux-gnueabihf_no_libgit.zip
02373b5e7573cb9ad88a01eae26ef149  ./target/bin-0.21.3/eza_arm-unknown-linux-gnueabihf.tar.gz
16a2f5f404a28bbd0301378f433f4b9e  ./target/bin-0.21.3/eza_arm-unknown-linux-gnueabihf.zip
2d8b4fc330caf6a4a5c6e042be02ff43  ./target/bin-0.21.3/eza.exe_x86_64-pc-windows-gnu.tar.gz
dda353a20fb105b7a0457e61e539b6e4  ./target/bin-0.21.3/eza.exe_x86_64-pc-windows-gnu.zip
8cfc0d059a5916c230571b03f112f3dc  ./target/bin-0.21.3/eza_x86_64-unknown-linux-gnu.tar.gz
03f0a9b47c61a510e78d680ad1ad0dc3  ./target/bin-0.21.3/eza_x86_64-unknown-linux-gnu.zip
5920827662aa9fbea3da92e0e137c5c8  ./target/bin-0.21.3/eza_x86_64-unknown-linux-musl.tar.gz
de2033701fcb5bcdbbdef79350d8b84c  ./target/bin-0.21.3/eza_x86_64-unknown-linux-musl.zip

blake3sum

a426e68ce5e325da2194c4ebdff8208e34223ebbbd016da90f8845dfd3d27b2b  ./target/bin-0.21.3/eza_aarch64-unknown-linux-gnu_no_libgit.tar.gz
5314cb106c7b639f0d2f6b09ab300d0c4213ab83272ea724858af38af369f2fa  ./target/bin-0.21.3/eza_aarch64-unknown-linux-gnu_no_libgit.zip
72ca8b192c7fad652ce2e4ee44706a9f52a21dcb936a456de6dc8fa9f6c2b2ac  ./target/bin-0.21.3/eza_aarch64-unknown-linux-gnu.tar.gz
f3888325a21a75a030faa015f69c5d2be4afd4bacdff006ce42ea130c75f417c  ./target/bin-0.21.3/eza_aarch64-unknown-linux-gnu.zip
da705172f5c12bc7714347cd7eb2a738c5fb44acacec8d5e1ffcdd5ddb693c3d  ./target/bin-0.21.3/eza_arm-unknown-linux-gnueabihf_no_libgit.tar.gz
a16fb03530ded32824b018bd25691c32a7ee73c37ac4e4667b2338f9b62d6d43  ./target/bin-0.21.3/eza_arm-unknown-linux-gnueabihf_no_libgit.zip
7b444862d37d89ce50f3fbedc84a5374aab2cb329807b462debd4290477feeda  ./target/bin-0.21.3/eza_arm-unknown-linux-gnueabihf.tar.gz
806b07f44dda5e2c7a7945ad8f81156f9c91dca5a3263f5bf9b71d655ecde47a  ./target/bin-0.21.3/eza_arm-unknown-linux-gnueabihf.zip
48aba76572559e13b56bebdc7688c3b7a5fbbdf5b34cd456cb3062bf553f23c4  ./target/bin-0.21.3/eza.exe_x86_64-pc-windows-gnu.tar.gz
704cf0394e51b49064062fadcb22cc042331efe2b84ecfd6363eeeca7f54c3f5  ./target/bin-0.21.3/eza.exe_x86_64-pc-windows-gnu.zip
0b2b4e8d04351a5868e2c936123f6b7bd761bf20037397869c88f0a0f5501247  ./target/bin-0.21.3/eza_x86_64-unknown-linux-gnu.tar.gz
78b2edd67827716a23432ab3a7c6c404cea83b34ee45fd0524a58fca428a7c29  ./target/bin-0.21.3/eza_x86_64-unknown-linux-gnu.zip
995c46ce62ffeb150a4185f1ff78dc3d02c16b541e19a30e79b30d8197b26124  ./target/bin-0.21.3/eza_x86_64-unknown-linux-musl.tar.gz
95a2847bbe4fc87c861e741563522ed076508e885b44aa575e885a863677cf0b  ./target/bin-0.21.3/eza_x86_64-unknown-linux-musl.zip

sus

fastfetch-cli/fastfetch (fastfetch-cli/fastfetch)

v2.43.0

Compare Source

Features:

  • Support physical core count and package count detection on Solaris (CPU, SunOS)
  • Improve physical core count detection on FreeBSD (CPU, FreeBSD)
  • Add option to hide unknown GPUs (GPU)
  • Detect VRAM type of AMD GPUs on Linux (GPU, Linux)
  • Support playing media detection on macOS 15.4 (#​1737, Media, macOS)
    • Whether it works on newer versions is unknown
  • Detect player name for Windows UMP apps (Media, Windows)

Bugfixes:

  • Fix disk usage detection on 32-bit Linux (#​1734, Disk, Linux)
  • Fix compiling on Asahi Linux (GPU, Linux)
  • Fix duplicated playback status (Media, Linux)
  • Don't show 255 in custom format when muted on macOS (#​1750, Sound, macOS)
  • Remove shared memory detection for AMD GPUs, which doesn't work as expected (GPU, Windows)

Logos:

  • new AthenaOS
  • add Hydra Framework
golangci/golangci-lint (golangci/golangci-lint)

v2.1.6

Compare Source

  1. Linters bug fixes
    • godot: from 1.5.0 to 1.5.1
    • musttag: from 0.13.0 to 0.13.1
  2. Documentation
    • Add note about golangci-lint v2 integration in VS Code
jesseduffield/lazygit (jesseduffield/lazygit)

v0.50.0

Compare Source

What's Changed

Enhancements 🔥
Fixes 🔧
Maintenance ⚙️
Docs 📖

New Contributors

Full Changelog: jesseduffield/lazygit@v0.49.0...v0.50.0

junegunn/fzf (junegunn/fzf)

v0.62.0: 0.62.0

Compare Source

  • Relaxed the --color option syntax to allow whitespace-separated entries (in addition to commas), making multi-line definitions easier to write and read

seoul256-light

fzf --style full --color='
fg:#​616161 fg+:#​616161
bg:#ffffff bg+:#e9e9e9 alt-bg:#f1f1f1
hl:#​719872 hl+:#​719899
pointer:#e12672 marker:#e17899
header:#​719872
spinner:#​719899 info:#​727100
prompt:#​0099bd query:#​616161
border:#e1e1e1
'

- Added `alt-bg` color to create striped lines to visually separate rows
```sh
fzf --color bg:237,alt-bg:238,current-bg:236 --highlight-line

declare -f | perl -0777 -pe 's/^}\n/}\0/gm' |
  bat --plain --language bash --color always |
  fzf --read0 --ansi --reverse --multi \
      --color bg:237,alt-bg:238,current-bg:236 --highlight-line
  • [fish] Improvements in CTRL-R binding (@​bitraid)
    • You can trigger CTRL-R in the middle of a command to insert the selected item
    • You can delete history items with SHIFT-DEL
  • Bug fixes and improvements
    • Fixed unnecessary 100ms delay after reload (#​4364)
    • Fixed selected-bg not applied to colored items (#​4372)

Screenshot

image
mikefarah/yq (mikefarah/yq)

v4.45.4: - Fixing wrong map() behaviour on empty map

Compare Source

  • Fixing wrong map() behaviour on empty map #​2359
  • Bumped dependencies

v4.45.3: - Fixes regression bug(s)

Compare Source

Sorry for the regression folks! 😓
fwiw I have since added automated tests to capture the scenarios provided in the regression bug tickets

v4.45.2

Compare Source

snyk/cli (snyk/cli)

v1.1297.1

Compare Source

The Snyk CLI is being deployed to different deployment channels, users can select the stability level according to their needs. For details please see this documentation

Bug Fixes
  • test: Rollbacked a regression introduced by a change in gradle module resolution in version 1.1297.0 (7991133)

v1.1297.0

Compare Source

The Snyk CLI is being deployed to different deployment channels, users can select the stability level according to their needs. For details please see this documentation

Features
  • container: Support scanning container images from tar files without specifying a type (58b0861)
  • iac: Improve IaC deployment to avoid on the fly downloads (5108f58)
  • sbom: Introduce sbom monitor command (24e96c3)
  • test: Improve gradle module resolution (7991133)
  • language-server: Introduce explanation of AI fixes in IDEs (74fa322)
Bug Fixes
  • container: Fix issue when scanning invalid node manifest files (ceb8020)
  • code: Fix hash mismatches for files containing non-UTF-8 content (33d33e9)
  • iac: Ensure to use the correct org id when sharing results for v2 (1c4094a)
  • iac: Ensure to use target-name (2201f0a)
  • sbom: Fix issues when generating sboms based on NuGet .sln (80c43d9)
  • test: Fix issues when scanning gradle projects on Windows (11586cc)
  • test: Improve error messages when using fail-fast, all-projects and json (a396bd6)
  • test: Fix yarn 2 out of sync issues (18aee45)
  • test: Fix pnpm out of sync issue for duplicated peer and dev dependencies (2581e16)
  • test: Ensure internal dependencies are represented correctly when normalizing Gradle dependencies (c7e2713)
  • test: Fix testing composer-based PHP projects (39e3379)
  • language-server: Fix and improve issue filtering in IDEs (a474d67)
  • language-server: Fix unmanaged C/C++ scans with '—unmanaged' flag in additional parameters (01f53e3)
  • language-server: Fix applying Snyk Code AI fixes on the wrong lines (01f53e3)
terraform-linters/tflint (terraform-linters/tflint)

v0.57.0

Compare Source

What's Changed

Enhancements
Bug Fixes
Chores

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 if that's undesired.


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

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

@renovate renovate bot requested a review from scottames as a code owner May 16, 2025 06:20
@renovate renovate bot enabled auto-merge (squash) May 16, 2025 06:20
@renovate renovate bot force-pushed the renovate/aqua-packages branch from 02239fc to d9e29f1 Compare May 16, 2025 18:59
@renovate renovate bot merged commit ee28710 into main May 16, 2025
5 checks passed
@renovate renovate bot deleted the renovate/aqua-packages branch May 16, 2025 19:14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant