Skip to main content
Bluefin angry dinosaur mascot

Changelogs

The Firehose - track updates from Bluefin, Homebrew, and Flathub

Bluefin OS Releases

Bluefin

stable-20260331March 31, 2026Fedora 43
Kernel6.18.13-200Gnome49.5-1Mesa25.3.6-6Podman5.8.1-1Nvidia595.58.03-1bootc1.14.1-1
DXIncus6.19.1-1Docker29.3.1-1

Bluefin LTS

lts-20251223January 20, 2026CentOS c10s
Kernel6.12.0-172HWE Kernel6.17.8-200.fc42GNOME48.4-1Mesa25.2.5-3Podman5.6.0-2pipewire1.4.9-1
DXDocker29.1.3-1VSCode1.107.1-1765982492.el8RamalamaN/A

App Updates

Flatpak & Homebrew packages included in Bluefin
brew install mise

Polyglot runtime manager (asdf rust clone)

A feature-packed release that adds user-defined tool dependencies, .NET runtime-only installs, argument forwarding to task dependencies, and stronger supply-chain security for lockfiles – along with a large batch of bug fixes across multiple backends and shells.

Highlights

  • Declare tool dependencies in mise.toml – A new depends field lets you ensure one tool is fully installed before another starts, useful for tools with runtime dependencies on each other.
  • Pass arguments through task dependency chains – Task dependencies can now reference the parent task’s arguments using {{usage.*}} templates, enabling parameterized build/deploy pipelines.
  • .NET runtime-only installs – Install just the .NET runtime (or ASP.NET Core runtime) without the full SDK using the new runtime tool option.
  • Stronger lockfile provenance verificationmise lock now cryptographically verifies provenance for the current platform at lock time, and a new locked_verify_provenance setting enables re-verification at install time.

Added

  • User-specified tool dependencies – Declare explicit installation dependencies between tools in mise.toml with a new depends field, ensuring one tool is fully installed before another starts. #8776 by @cprecioso
  [tools]
  erlang = "27"
  elixir = { version = "1.18", depends = ["erlang"] }
  • .NET runtime-only installs – Install .NET runtimes alongside or instead of SDKs using the runtime tool option. Valid values: dotnet, aspnetcore, windowsdesktop. #8524 by @fragon10
  [tools]
  dotnet = ["9", { version = "8.0.14", runtime = "dotnet" }]
  • Task dependency argument forwarding – Task dependencies can reference parent task arguments using {{usage.*}} templates in depends, depends_post, and wait_for. Arguments flow through entire dependency chains. #8893 by @jdx
  [tasks.build]
  usage = 'arg "<app>"'
  run = 'echo "building {{usage.app}}"'

  [tasks.deploy]
  usage = 'arg "<app>"'
  depends = [{ task = "build", args = ["{{usage.app}}"] }]
  run = 'echo "deploying {{usage.app}}"'
  • install_before enforced on transitive npm dependencies – The install_before supply-chain cutoff is now forwarded to transitive dependency resolution using each package manager’s native mechanism (npm --before, bun --minimum-release-age, pnpm --config.minimumReleaseAge). #8851 by @risu729

  • locked_verify_provenance setting – New setting (also auto-enabled by MISE_PARANOID) that forces cryptographic provenance re-verification at install time even when the lockfile already has checksum and provenance data. mise lock now also performs full verification for the current platform at lock time. #8901 by @jdx

  • turso added to the built-in registry – Install the Turso CLI via mise use turso. #8884 by @kenn

Fixed

  • --env=VALUE and -E=VALUE flag parsing – The equals-sign form of the environment flag (e.g., mise --env=production) was silently ignored, causing fallback to the default environment. Both --env=VALUE and --env VALUE forms now work correctly. #8889 by @jdx
  • PEP 440 .dev versions filtered in fuzzy matching – Versions like 2026.3.3.162408.dev0 no longer incorrectly satisfy stable version requests. The version regex now matches .dev in addition to -dev. #8849 by @richardthe3rd
  • Stale lockfile entries pruned during mise lock <tool> – Running mise lock node after a version change no longer leaves duplicate entries for the old and new versions. #8599 by @altendky
  • Spurious direnv warning suppressed – The failed to update DIRENV_DIFF warning no longer appears when the direnv diff environment variable is empty. #8857 by @yaleman
  • Duplicate trust warning in zsh – Entering an untrusted project directory in zsh no longer shows the mise trust warning twice. #8898 by @timothysparg
  • Plain .tool-versions no longer requires trust for task listing – Files without Tera template syntax ({{, {%, {#) are skipped during the trust check in mise task ls. #8876 by @dportalesr
  • Tool options preserved with CLI version overridesfilter_bins and other tool options are no longer lost when specifying a version via CLI (e.g., mise bin-paths tool@version). #8888 by @jdx
  • Alias-specific options respected – Tools configured with tool_alias now correctly use the alias-specific asset_pattern and other options instead of inheriting from the original tool. #8892 by @jdx
  • Precompiled Python uses lockfile URL – Precompiled Python installs now honor the download URL recorded in mise.lock instead of always recomputing it, fixing reproducibility for locked installs. #8750 by @hehaoqian
  • Ruby build revisions in lockfiles – Precompiled Ruby binaries from jdx/ruby now support build revision tags (e.g., 3.3.11-1), preventing lockfile breakage when binaries are rebuilt with different checksums. #8900 by @jdx
  • Swift installs on unsupported Ubuntu versions – Swift installs on Ubuntu versions newer than 24.04 now fall back to the 24.04 binary instead of 404ing. #8916 by @jdx

Changed

  • Go settings renamed to go.* namespace – All go_* settings (e.g., go_set_goroot) have been renamed to the nested go.* format (e.g., go.set_goroot) for consistency with other language settings. The old names are preserved as deprecated aliases. #8598 by @jdbruijn

Breaking Changes

  • Deprecated settings removed – The following settings, deprecated for 18+ months, have been removed. If you are still using them, switch to their replacements: #8904 by @jdx
    • asdf – use disable_backends instead
    • vfox – use disable_backends instead
    • cargo_binstall – use cargo.binstall instead
    • disable_default_shorthands – use disable_default_registry instead
    • pipx_uvx – use pipx.uvx instead
    • python_compile – use python.compile instead
    • python_default_packages_file – use python.default_packages_file instead
    • python_patch_url – use python.patch_url instead
    • python_patches_directory – use python.patches_directory instead
    • python_precompiled_arch – use python.precompiled_arch instead
    • python_precompiled_os – use python.precompiled_os instead
    • python_pyenv_repo – use python.pyenv_repo instead
    • python_venv_stdlib – use python.venv_stdlib instead

New Contributors

  • @cprecioso made their first contribution in #8776
  • @fragon10 made their first contribution in #8524
  • @dportalesr made their first contribution in #8876
  • @timothysparg made their first contribution in #8898
  • @hehaoqian made their first contribution in #8750
  • @jdbruijn made their first contribution in #8598
  • @yaleman made their first contribution in #8857
  • @kenn made their first contribution in #8884

Full Changelog: https://github.com/jdx/mise/compare/v2026.4.3…v2026.4.4

View Full Release →
🍺
brew install ublue-os/experimental-tap/opencode-desktop-linux

Open source AI coding agent desktop client

Core

  • Prevent npm installs from failing when Arborist hits the compiled binary’s node-gyp path

Thank you to 1 community contributor:

  • @Yuxin-Dong:
    • refactor: remove redundant Kimi skill section (#20393)
View Full Release →
🍺

goose-linux v1.29.1

Apr 3, 2026
Homebrew
brew install ublue-os/tap/goose-linux

Open source, extensible AI agent that goes beyond code suggestions

🐛 Bug Fixes

  • macOS Intel code signing #8218
View Full Release →
🍺

craft-agents-linux v0.8.3

Apr 2, 2026
Homebrew
brew install ublue-os/experimental-tap/craft-agents-linux

Work with most powerful agents in the world, with the UX they deserve

v0.8.3 — Session Self-Management, Compact Mode & Automation Reliability

Features

  • Session self-management tools — Agents can now set their own labels, status, and query other sessions via set_session_labels, set_session_status, get_session_info, and list_sessions. Enables self-closing automation workflows where an agent completes work and signals done.
  • Compact mode UI — Added compact mode toolbar controls for permission mode, attachments, sources, and working directory selection with drawer-based selectors, plus compact chat and session info layouts.

Improvements

  • Legacy provider cleanup — Removed deprecated provider types and improved error handling across connection setup.
  • Docker build performance — Replaced blanket chmod -R with targeted find commands, significantly speeding up Docker image builds.
  • Docker multi-arch CI — Release and promote workflows now build multi-architecture Docker images.

Bug Fixes

  • fs.watch reverting metadata on idle sessions — Fixed a race condition where filesystem watchers would revert programmatic metadata writes (labels, status) on idle sessions.
  • Stale server lock file — Handle stale .server.lock files on Docker container restarts so the server starts cleanly. (Partially addresses #493)
  • Automations not firing on headless servers — Eagerly initialize the automation system at boot instead of lazily, so scheduled and event-driven automations work on first run. (Partially addresses #491)
  • setSessionStatus silent failures — Properly await the async setSessionStatus call to surface errors instead of swallowing them silently.
  • Session tools targeting other sessionsset_session_labels and set_session_status can now correctly target sessions other than the caller.
  • Session tool validation — Label IDs and status IDs are now validated before applying, preventing cryptic errors from invalid values.
  • Session tool display names — Session management tools now show human-readable names in the TurnCard UI.
  • Model refresh on connection setup — Await the model list refresh after configuring a new connection, preventing stale model lists.
  • Co-author preference ignored — Respect the includeCoAuthoredBy: false user setting for git commit trailers. (Fixes #500)
  • Local file URL routing — Fixed markdown routing for file:// URLs so local file links render correctly. (Partially addresses #416)
  • Toast text truncation — Allow toast notification descriptions to wrap up to 2 lines instead of cutting off.
  • Docker Compose image tag — Updated the default server image to v0.8.2 in Docker Compose config.

Breaking Changes

  • None.
View Full Release →
Smile

Smile 2.12.1

Apr 2, 2026
Flathub

it.mijorus.smile

An emoji picker

Pinta

Pinta Pinta 3.1.2

Apr 2, 2026
Flathub

com.github.PintaProject.Pinta

Edit images and paint digitally

This is a bug fix release for Pinta 3.1

Fixed

  • Fixed issues with some icons failing to load under certain GTK versions (#2078, #1950)
  • Fixed crash when right-clicking on a layer in certain scenarios (#1940)
  • Fixed bug with the gradient tool creating unnecessary history items (#2060, #2059)
  • Fixed crash when setting gamma to zero in the Levels dialog (#2035, #2041)
  • The right click menu for layers now includes options to move the layer up or down in the layer stack (#2004, #2007)

Checksums

  • Fingerprint: 5BDA 30D0 C2E9 85E5 9808 9E44 4CF8 0E80 E77C 5C35
  • GPG Signature: gpg --verify pinta-3.1.2.tar.gz.asc
  • Checksum: pinta-3.1.2.tar.gz.sha512
View Full Release →
🍺

framework-tool v0.6.2

Apr 2, 2026
Homebrew
brew install ublue-os/tap/framework-tool

System tool for Framework laptop hardware management

What’s Changed

New Contributors

Full Changelog: https://github.com/FrameworkComputer/framework-system/compare/v0.6.1…v0.6.2

View Full Release →
Embellish

Embellish v1.0.0

Apr 2, 2026
Flathub

io.github.getnf.embellish

Install nerd fonts

  • Ported to vala for performance reasons
  • More aligned with GTK patterns
  • Uses a modal with the list boxes instead of manual row creation which makes the search faster too
  • Use GridView for the icons for faster loading and and less code bloat
View Full Release →
Ignition

Ignition 2.4.0

Apr 1, 2026
Flathub

io.github.flattool.Ignition

Manage startup apps and scripts

Bug Fixes and Changes

  • Updated to GNOME 50 technologies
  • Fixed issue where overridden entries don’t update properly
  • Fixed issue where the same entries would appear in the list multiple times
  • Fixed missing search button icons
  • Added and updated translations
View Full Release →
brew install ublue-os/tap/1password-gui-linux

Password manager that keeps all passwords secure behind one password

Release Notes for v39.8.6

Fixes

  • Fixed a crash when calling contentTracing.getTraceBufferUsage() while a trace session is active. #50595 (Also in 40, 41, 42)
View Full Release →
Bazaar

Bazaar 0.7.13

Apr 1, 2026
Flathub

io.github.kolunmi.Bazaar

Discover and manage applications

Thanks for using Bazaar. If you would like to support me, I would be very grateful. I’m having a bad time https://ko-fi.com/kolunmi

What’s Changed

New Contributors

Full Changelog: https://github.com/bazaar-org/bazaar/compare/v0.7.12…v0.7.13

View Full Release →
🐧

The stable Bluefin release track.

FedoraF43Kernel6.18.13-200.fc43GNOME49.5-1.fc43Mesa25.3.6-6.fc43Podman5.8.1-1.fc43systemd258.7-1.fc43bootc1.14.1-1.fc43
View Releases on GitHub →
🍺

emdash-linux v0.4.45

Mar 29, 2026
Homebrew
brew install ublue-os/experimental-tap/emdash-linux

Agentic development environment for running multiple coding agents in parallel

What’s Changed

New Contributors

Full Changelog: https://github.com/generalaction/emdash/compare/v0.4.43…v0.4.45

View Full Release →
Dev Toolbox

Dev Toolbox v1.3.1

Mar 28, 2026
Flathub

me.iepure.devtoolbox

Dev tools at your fingertips

What’s Changed

  • GNOME 50 platform support
  • Removed Markdown Previewer due to webkit issues
View Full Release →
🍺

atuin 18.13.6

Mar 27, 2026
Homebrew
brew install atuin

Improved shell history for zsh, bash, fish and nushell

Release Notes

Bug Fixes

  • (powershell) Handle non-FileSystem drives (#3353)
  • Remove unnecessary arboard/image-data default feature (#3345)
  • Use printf to append fish shell init block (#3346)
  • Set WorkingDirectory in PowerShell Invoke-AtuinSearch (#3351)

Features

  • Use eye-declare for more performant and flexible AI TUI (#3343)

Miscellaneous Tasks

  • (ci) Switch most workflows to depot ci (#3352)

atuin 18.13.6

Install atuin 18.13.6

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/atuinsh/atuin/releases/download/v18.13.6/atuin-installer.sh | sh

Install prebuilt binaries via powershell script

powershell -ExecutionPolicy Bypass -c "irm https://github.com/atuinsh/atuin/releases/download/v18.13.6/atuin-installer.ps1 | iex"

Download atuin 18.13.6

File Platform Checksum
atuin-aarch64-apple-darwin.tar.gz Apple Silicon macOS checksum
atuin-x86_64-pc-windows-msvc.zip x64 Windows checksum
atuin-aarch64-unknown-linux-gnu.tar.gz ARM64 Linux checksum
atuin-x86_64-unknown-linux-gnu.tar.gz x64 Linux checksum
atuin-aarch64-unknown-linux-musl.tar.gz ARM64 MUSL Linux checksum
atuin-x86_64-unknown-linux-musl.tar.gz x64 MUSL Linux checksum

Verifying GitHub Artifact Attestations

The artifacts in this release have attestations generated with GitHub Artifact Attestations. These can be verified by using the GitHub CLI:

gh attestation verify <file-path of downloaded artifact> --repo atuinsh/atuin

You can also download the attestation from GitHub and verify against that directly:

gh attestation verify <file-path of downloaded artifact> --bundle <file-path of downloaded attestation>

atuin-server 18.13.6

Install atuin-server 18.13.6

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/atuinsh/atuin/releases/download/v18.13.6/atuin-server-installer.sh | sh

Install prebuilt binaries via powershell script

powershell -ExecutionPolicy Bypass -c "irm https://github.com/atuinsh/atuin/releases/download/v18.13.6/atuin-server-installer.ps1 | iex"

Download atuin-server 18.13.6

File Platform Checksum
atuin-server-aarch64-apple-darwin.tar.gz Apple Silicon macOS checksum
atuin-server-x86_64-pc-windows-msvc.zip x64 Windows checksum
atuin-server-aarch64-unknown-linux-gnu.tar.gz ARM64 Linux checksum
atuin-server-x86_64-unknown-linux-gnu.tar.gz x64 Linux checksum
atuin-server-aarch64-unknown-linux-musl.tar.gz ARM64 MUSL Linux checksum
atuin-server-x86_64-unknown-linux-musl.tar.gz x64 MUSL Linux checksum

Verifying GitHub Artifact Attestations

The artifacts in this release have attestations generated with GitHub Artifact Attestations. These can be verified by using the GitHub CLI:

gh attestation verify <file-path of downloaded artifact> --repo atuinsh/atuin

You can also download the attestation from GitHub and verify against that directly:

gh attestation verify <file-path of downloaded artifact> --bundle <file-path of downloaded attestation>
View Full Release →
🍺

gh GitHub CLI 2.89.0

Mar 26, 2026
Homebrew
brew install gh

GitHub command-line tool

:copilot: gh agent-task now works on ghe.com tenancies

gh agent-task commands previously failed with 401 Unauthorized for users on ghe.com tenancy hosts because the Copilot API URL was hardcoded. The URL is now resolved dynamically per host, so gh agent-task works correctly regardless of your GitHub hosting environment.

Experimental new prompter

A new TUI-based prompter powered by charmbracelet/huh is available behind the GH_EXPERIMENTAL_PROMPTER environment variable. This is an early preview — try it out and share feedback!

export GH_EXPERIMENTAL_PROMPTER=1

gh issue create and gh issue transfer no longer require extra token scopes

gh issue create and gh issue transfer previously fetched repository fields they didn’t need, which could require additional token scopes. These commands now fetch only the minimal fields necessary for issue operations.

What’s Changed

✨ Features

  • gh pr create, gh issue create, gh issue edit: search-based assignee selection and login-based mutation on github.com by @BagToad in #13009
  • Add experimental huh-only prompter gated by GH_EXPERIMENTAL_PROMPTER by @BagToad in #12859

🐛 Fixes

  • fix(agent-task): resolve Copilot API URL dynamically for ghe.com tenancies by @BagToad in #12956
  • fix(issue): avoid fetching unnecessary fields in issue create and issue transfer by @babakks in #12884
  • fix: resolve data race in codespaces port forwarder by @Lslightly in #13033

📚 Docs & Chores

:dependabot: Dependencies

  • chore(deps): bump google.golang.org/grpc from 1.79.2 to 1.79.3 by @dependabot[bot] in #12963
  • chore(deps): bump github.com/google/go-containerregistry from 0.20.7 to 0.21.3 by @dependabot[bot] in #12962
  • chore(deps): bump github.com/zalando/go-keyring from 0.2.6 to 0.2.8 by @dependabot[bot] in #13031
  • chore(deps): bump microsoft/setup-msbuild from 2.0.0 to 3.0.0 by @dependabot[bot] in #13005
  • chore(deps): bump mislav/bump-homebrew-formula-action from 3.6 to 4.1 by @dependabot[bot] in #13004
  • chore(deps): bump azure/login from 2.3.0 to 3.0.0 by @dependabot[bot] in #12951

New Contributors

Full Changelog: v2.88.1…v2.89.0

View Full Release →
🍺

yq v4.52.5

Mar 25, 2026
Homebrew
brew install yq

Process YAML, JSON, XML, CSV and properties documents from the CLI

  • Fix: reset TOML decoder state between files (#2634) thanks @terminalchai
  • Fix: preserve original filename when using –front-matter (#2613) thanks @cobyfrombrooklyn-bot
  • Fix typo in filename (#2611) thanks @alexandear
  • Bumped dependencies
View Full Release →
Podman Desktop

Podman Desktop v1.26.2

Mar 25, 2026
Flathub

io.podman_desktop.PodmanDesktop

Manage Podman and other container engines from a single UI

What’s Changed

Full Changelog: https://github.com/podman-desktop/podman-desktop/compare/v1.26.1…v1.26.2

View Full Release →
🍺

bluefin-cli v0.7.0

Mar 20, 2026
Homebrew
brew install ublue-os/experimental-tap/bluefin-cli

Bluefin's CLI tool

0.7.0 (2026-03-20)

Bug Fixes

  • remove unused imports in menu_extra.go and fix sunset.go syntax error (4ce0a8c)
  • remove wingetcreate version check (always exits 1) (62e5bda)
  • use –version flag for wingetcreate verification (1031b0f)

Features

  • automate winget submissions via GoReleaser (c3ebb0d)
  • per-category package install/uninstall menu with winget support (b48c953)
  • winget automation and build fixes (abd81c8)
View Full Release →
🍺

vscodium-linux 1.112.01907

Mar 20, 2026
Homebrew
brew install ublue-os/tap/vscodium-linux

Open-source code editor

update vscode to 1.112.0

What’s Changed

Full Changelog: https://github.com/VSCodium/vscodium/compare/1.110.11631…1.112.01907

x86 64bits

Windows User Installer VSCodiumUserSetup-x64-1.112.01907.exe
System Installer VSCodiumSetup-x64-1.112.01907.exe
.zip VSCodium-win32-x64-1.112.01907.zip
.msi - updates enabled VSCodium-x64-1.112.01907.msi
.msi - updates disabled VSCodium-x64-updates-disabled-1.112.01907.msi
Remote Host vscodium-reh-win32-x64-1.112.01907.tar.gz
Web Host vscodium-reh-web-win32-x64-1.112.01907.tar.gz
CLI vscodium-cli-win32-x64-1.112.01907.tar.gz
macOS .dmg VSCodium.x64.1.112.01907.dmg
.zip VSCodium-darwin-x64-1.112.01907.zip
Remote Host vscodium-reh-darwin-x64-1.112.01907..tar.gz
Web Host vscodium-reh-web-darwin-x64-1.112.01907.tar.gz
CLI vscodium-cli-darwin-x64-1.112.01907.tar.gz
Linux .deb codium_1.112.01907_amd64.deb
.rpm codium-1.112.01907-el8.x86_64.rpm
.tar.gz VSCodium-linux-x64-1.112.01907.tar.gz
AppImage VSCodium-1.112.01907.glibc2.30-x86_64.AppImage
VSCodium-1.112.01907.glibc2.30-x86_64.AppImage.zsync
Snap codium_1.112.01907_amd64.snap
Remote Host vscodium-reh-linux-x64-1.112.01907.tar.gz
Web Host vscodium-reh-web-linux-x64-1.112.01907.tar.gz
CLI vscodium-cli-linux-x64-1.112.01907.tar.gz
Alpine Remote Host vscodium-reh-alpine-x64-1.112.01907.tar.gz
Web Host vscodium-reh-web-alpine-x64-1.112.01907.tar.gz

ARM 64bits

Windows User Installer VSCodiumUserSetup-arm64-1.112.01907.exe
System Installer VSCodiumSetup-arm64-1.112.01907.exe
.zip VSCodium-win32-arm64-1.112.01907.zip
CLI vscodium-cli-win32-arm64-1.112.01907.tar.gz
macOS .dmg VSCodium.arm64.1.112.01907.dmg
.zip VSCodium-darwin-arm64-1.112.01907.zip
Remote Host vscodium-reh-darwin-arm64-1.112.01907.tar.gz
Web Host vscodium-reh-web-darwin-arm64-1.112.01907.tar.gz
CLI vscodium-cli-darwin-arm64-1.112.01907.tar.gz
Linux .deb codium_1.112.01907_arm64.deb
.rpm codium-1.112.01907-el8.aarch64.rpm
.tar.gz VSCodium-linux-arm64-1.112.01907.tar.gz
Snap codium_1.112.01907_arm64.snap
Remote Host vscodium-reh-linux-arm64-1.112.01907.tar.gz
Web Host vscodium-reh-web-linux-arm64-1.112.01907.tar.gz
CLI vscodium-cli-linux-arm64-1.112.01907.tar.gz
Alpine Remote Host vscodium-reh-alpine-arm64-1.112.01907.tar.gz
Web Host vscodium-reh-web-alpine-arm64-1.112.01907.tar.gz

ARM 32bits

Linux .deb codium_1.112.01907_armhf.deb
.rpm codium-1.112.01907-el8.armv7hl.rpm
.tar.gz VSCodium-linux-armhf-1.112.01907.tar.gz
Remote Host vscodium-reh-linux-armhf-1.112.01907.tar.gz
Web Host vscodium-reh-web-linux-armhf-1.112.01907.tar.gz
CLI vscodium-cli-linux-armhf-1.112.01907.tar.gz

PPC 64bits

Linux .tar.gz VSCodium-linux-ppc64le-1.112.01907.tar.gz
Remote Host vscodium-reh-linux-ppc64le-1.112.01907.tar.gz
Web Host vscodium-reh-web-linux-ppc64le-1.112.01907.tar.gz

RISC-V 64bits

Linux .tar.gz VSCodium-linux-riscv64-1.112.01907.tar.gz
Remote Host vscodium-reh-linux-riscv64-1.112.01907.tar.gz
Web Host vscodium-reh-web-linux-riscv64-1.112.01907.tar.gz

Loong 64bits

Linux .tar.gz VSCodium-linux-loong64-1.112.01907.tar.gz
Remote Host vscodium-reh-linux-loong64-1.112.01907.tar.gz
Web Host vscodium-reh-web-linux-loong64-1.112.01907.tar.gz

s390x

Linux Remote Host vscodium-reh-linux-s390x-1.112.01907.tar.gz
Web Host vscodium-reh-web-linux-s390x-1.112.01907.tar.gz
View Full Release →
🍺

grype v0.110.0

Mar 19, 2026
Homebrew
brew install grype

Vulnerability scanner for container images and filesystems

Added Features

  • suppress GHSA matches on language packages in fixed APKs [#3282 @willmurphyscode]

Bug Fixes

  • use Syft for decoding CPEs [#3058 @chovanecadam]

Additional Changes

  • bump github.com/buger/jsonparser to v1.1.2 [#3297 @willmurphyscode]
  • update quality gate labels [#3293 @westonsteimel]

(Full Changelog)

View Full Release →
🍺

syft v1.42.3

Mar 19, 2026
Homebrew
brew install syft

CLI for generating a Software Bill of Materials from container images

Bug Fixes

  • Missing secondary evidence for .NET dependency in ghcr.io/open-telemetry/demo:2.0.0-accounting image [#4652]

Additional Changes

  • bump github.com/buger/jsonsparser to v1.1.2 [#4680 @willmurphyscode]
  • centralize temp files and prefer streaming IO [#4668 @willmurphyscode]

(Full Changelog)

View Full Release →
DistroShelf

DistroShelf Release v1.4.8

Mar 16, 2026
Flathub

com.ranfdev.DistroShelf

Graphical interface for managing Distrobox containers

What’s Changed

New Contributors

Full Changelog: https://github.com/ranfdev/DistroShelf/compare/v1.4.7…v1.4.8

View Full Release →
Fonts

Fonts 50.0

Mar 14, 2026
Flathub

org.gnome.font-viewer

View fonts on your system

Release 50.0

Fonts 50.0 comes with the following improvements:

  • Redesigned font preview grid that has a consistent preview size (Khaid Abu Shawarib)
  • Search entry moved to the headerbar to be always visible, and with automatic key stroke forwarding to the entry and Esc for clearing search. (Automeris naranja, Khaid Abu Shawarib)
  • Reorganized font information page (Automeris naranja)
  • Enhance application metadata (Maximiliano, Daniel Rusek)
  • Plug multiple memory leaks (Maximiliano)
  • Correctly claim to open font collection files (Gregor)

This version brings translation updates for the following locales:

  • Arabic (Khaid Abu Shawarib)
  • Chinese (Taiwan) (Chao-Hsiung Liao)
  • Cornish (Flynn)
  • Norwegian Bokmål (Kjartan Maraas)
  • Santali (Prasanta Hembram)
  • Serbian (Latin) (Miloš Popović)
  • Thai (Aefgh Threenine)
  • Uighur (Abduqadir Abliz)
View Full Release →
Calculator

Calculator 50.0

Mar 14, 2026
Flathub

org.gnome.Calculator

Perform arithmetic, scientific or financial calculations

Tagged release 50.0

Git-EVTag-v0-SHA512: fa0634b1676ecb2fa1525f9cfcf52a994af3c4b64f66d75e54cc5a6c6e0e6fe169db8e63817d23375cb7c82de5e86406cec8c1f89d1968553a2d54c0754ff1f2

View Full Release →
Calendar

Calendar 50.0

Mar 14, 2026
Flathub

org.gnome.Calendar

Manage your schedule

gnome-calendar 50.0

  • Updated screenshots
  • Focus adjacent cell when pressing Ctrl+Tab in the Month view
  • Refreshing calendars also updates collections now. This makes new remote calendars appear when refreshing.
  • Fix an untranslatable string
  • Updated translations

Git-EVTag-v0-SHA512: 2151610f3ec6059a08d986d699654868e3dab1c857163a49d4623369cfef5a77e1e67920663d07ea376920dcf315e9b5642e14597e1d200224ff44b8ef271db7

View Full Release →
Characters

Characters 50.0

Mar 14, 2026
Flathub

org.gnome.Characters

Character map application

Release 50.0

  • Flatpak builds use the noto-emoji from the Freedesktop SDK
  • Switch to search results when the search entry is activated
  • Don’t restore selection when deactivating search on mobile
  • Correctly show sidebar after finishing a search
  • Strip whitespaces in bundled GResources
  • Add –version cli option
  • Add captions to app screenshots
  • Translations updates:
    • Basque
    • Bulgarian
    • Catalan
    • Chinese (China)
    • Cornish
    • Czech
    • Danish
    • English (United Kingdom)
    • Finnish
    • French
    • Galician
    • Georgian
    • Greek, Modern (1453-)
    • Hebrew
    • Hungarian
    • Interlingua
    • Japanese
    • Kazakh
    • Korean
    • Lithuanian
    • Nepali
    • Norwegian Bokmål
    • Occitan (post 1500)
    • Polish
    • Portuguese
    • Portuguese (Brazil)
    • Romanian
    • Russian
    • Slovenian
    • Spanish
    • Swedish
    • Turkish
    • Uighur
    • Ukrainian
View Full Release →
🍺

podman-tui v1.11.1

Mar 14, 2026
Homebrew
brew install podman-tui

Podman Terminal User Interface

  • Packit fix downstream build
  • Bump github.com/containers/podman/v5 from 5.8.0 to 5.8.1
View Full Release →
Weather

Weather 50.0

Mar 13, 2026
Flathub

org.gnome.Weather

Show weather conditions and forecast

Release 50.0

Weather 50.0 comes with the following translation updates for the following locales:

  • Basque
  • Bulgarian
  • Catalan
  • Chinese (China)
  • Cornish
  • Czech
  • Danish
  • English (United Kingdom)
  • Finnish
  • French
  • Galician
  • Georgian
  • German
  • Greek, Modern (1453-)
  • Hebrew
  • Hungarian
  • Interlingua (International Auxiliary Language Association)
  • Japanese
  • Kazakh
  • Korean
  • Lithuanian (Aurimas Aurimas Černius)
  • Occitan (post 1500)
  • Polish
  • Portuguese
  • Portuguese (Brazil)
  • Romanian
  • Russian (Artur S0)
  • Slovenian
  • Spanish
  • Swedish
  • Turkish (Sabri Ünal)
  • Uighur
  • Ukrainian
View Full Release →
Disk Usage Analyzer

Disk Usage Analyzer 50.0

Mar 13, 2026
Flathub

org.gnome.baobab

Check folder sizes and available disk space

Release 50.0

  • Port help overlay to AdwShortcutsDialog (Automeris naranja)

  • Translation updates:

    • Basque (Asier Saratsua Garmendia)
    • Bulgarian (twlvnn kraftwerk)
    • Catalan (Victor Dargallo)
    • Chinese (China) (luming zh)
    • Cornish (Flynn Peck)
    • Czech (Daniel Rusek)
    • Danish (Ask Hjorth Larsen)
    • English (United Kingdom) (Bruce Cowan)
    • Esperanto (Kristjan ESPERANTO)
    • Finnish (Jiri Grönroos)
    • French (Lucien Ouoba)
    • Galician (Fran Diéguez)
    • Georgian (Ekaterine Papava)
    • German (Jürgen Benvenuti)
    • Greek, Modern (1453-) (Efstathios Iosifidis)
    • Hebrew (Yaron Shahrabani)
    • Hungarian (Balázs Úr)
    • Indonesian (Andika Triwidada)
    • Japanese (Makoto Sakaguchi)
    • Kazakh (Baurzhan Muftakhidinov)
    • Korean (Seong-ho Cho)
    • Lithuanian (Aurimas Aurimas Černius)
    • Nepali (Pawan Chitrakar)
    • Occitan (post 1500) (Quentin PAGÈS)
    • Persian (Danial Behzadi)
    • Polish (Victoria)
    • Portuguese (Hugo Carvalho)
    • Portuguese (Brazil) (Rafael Fontenelle)
    • Romanian (Antonio Marin)
    • Russian (Artur S0)
    • Slovenian (Martin)
    • Spanish (Daniel Mustieles)
    • Swedish (Anders Jonsson)
    • Turkish (Sabri Ünal)
    • Uighur (Abduqadir Abliz)
    • Ukrainian (Yuri Chornoivan)
View Full Release →
Image Viewer

Image Viewer 50.0

Mar 13, 2026
Flathub

org.gnome.Loupe

View and edit images

Loupe 50.0

  • Updated dependencies

Git-EVTag-v0-SHA512: 87485623a0c090e269d8e9eeb75229dc8b89d30b586afcd46bd48255dd84e7bdef7047eb00e94c4720f3d324031ae0913603687e15ada089ff7cdf9a3a924469

View Full Release →
🍺

helm Helm v4.1.3

Mar 11, 2026
Homebrew
brew install helm

Kubernetes package manager

Helm v4.1.3 is a patch release. Users are encouraged to upgrade for the best experience.

Note there was no 4.1.2 release due to a release automation issue.

The community keeps growing, and we’d love to see you there!

  • Join the discussion in Kubernetes Slack:
    • for questions and just to hang out
    • for discussing PRs, code, and bugs
  • Hang out at the Public Developer Call: Thursday, 9:30 Pacific via Zoom
  • Test, debug, and contribute charts: ArtifactHub/packages

Notable Changes

  • Fixed a bug where –dry-run=server was not respecting generateName #31563
  • Fixed a bug where empty CRD resources caused a crash. Now it prints an error #31578
  • Fixed a bug where OCI references with tag+digest failed with “invalid byte” error #31601
  • Fixed a bug where user-provided nil value was not preserved when chart has an empty map or no default for a key #31644
  • Fixed a regression since Helm 3.18.0 where Pulling charts from OCI repositories that use an index to store both Container Images and Helm Charts under the same tag failed #31776
  • Fixed a Helm 4 regression where gotemplate white space trimming directly after YAML doc separators, when present after postrendering, caused YAML file corruption #31868
  • Fixed a bug where FailedStatus is treated as a terminal state, causing upgrades to fail prematurely when cluster autoscalers needed time to provision nodes, or when pods were being deleted during rolling updates #31897
  • Fixed broken backwards compatibility for deprecated --atomic flag on install command #31901
  • SDK: Fixed a Windows ‘Access Deined’ error if multiple processes try to download the same chart version concurrently #31128
  • SDK: Fixed a bug where users did not receive any logs from the waiter, causing confusion as several minutes could pass with no user feedback #31717
  • SDK: Fixed a bug where server-side apply defaults did not always match the CLI defaults #31732
  • SDK: Fixed a Go import issue when downstream tooling attempted to vendor helm.sh/helm/v4/pkg/kube #31852

Installation and Upgrading

Download Helm v4.1.3. The common platform binaries are here:

  • MacOS amd64 (checksum / 742132e11cc08a81c97f70180cd714ae8376f8c896247a7b14ae1f51838b5a0b)
  • MacOS arm64 (checksum / 21c02fe2f7e27d08e24a6bf93103f9d2b25aab6f13f91814b2cfabc99b108a5e)
  • Linux amd64 (checksum / 02ce9722d541238f81459938b84cf47df2fdf1187493b4bfb2346754d82a4700)
  • Linux arm (checksum / 5ea614cd1562e682e213e07f3632b76f9d7b4b0917918e820c515a9030a59951)
  • Linux arm64 (checksum / 5db45e027cc8de4677ec869e5d803fc7631b0bab1c1eb62ac603a62d22359a43)
  • Linux i386 (checksum / 6cbf1f7cca1f4917a0d4a593a22b7c6ec88207e159196eac94f8eaaad8730431)
  • Linux loong64 (checksum / <?xml version=“1.0” encoding=“utf-8”?>BlobNotFoundThe specified blob does not exist. RequestId:a97d6fdb-301e-0045-72a5-b120d7000000 Time:2026-03-11T22:20:16.6057319Z)
  • Linux ppc64le (checksum / 413c21ea07f85beb952807b45cafbcd3bb0ff50aa3ed66e8e87b47bebf2312ce)
  • Linux s390x (checksum / c1a5c613429ca50e70ebed3e7535d272805ed4a7aa61c1af20d85121a07e7bcd)
  • Linux riscv64 (checksum / 0a0beb5b30c24947d71586a7c6bcd774e207ce42b072b046513cf0cff46106a8)
  • Windows amd64 (checksum / a69356c872fca122650e8c392341c5c49c19da004353514611118087ea2ee7cf)
  • Windows arm64 (checksum / 6b05bec8659014df56ede28068a216451b6401d0fbbfd2dadffbef908cd03ff5)

This release was signed with 208D D36E D5BB 3745 A167 43A4 C7C6 FBB5 B91C 1155 and can be found at @scottrigby keybase account. Please use the attached signatures for verifying this release using gpg.

The Quickstart Guide will get you going from there. For upgrade instructions or detailed installation notes, check the install guide. You can also use a script to install on any system with bash.

What’s Next

  • 4.2.0 and 3.21.0 are the next minor releases and will be on May 13, 2026
  • 4.1.4 and 3.20.2 are the next patch releases and will be on April 8, 2026

Changelog

  • chore(defaults): server-side apply SDK defaults should always match the CLI defaults c94d381b03be117e7e57908edbf642104e00eb8f (Matheus Pimenta)
  • whitespace b36d660fb7a5a162d59dcc7877af190b477ecf2b (Austin Abro)
  • use logger with waiter 04a91af89e185fb2ff08592057726d54fdd22471 (Austin Abro)
  • Remove refactorring changes from coalesce_test.go c3c57dba9878074a7642f2cdf583e809bba7f96e (Evans Mungai)
  • Fix import d47cb2b7efaa26090510f4c2289127f40451062e (Evans Mungai)
  • Update pkg/chart/common/util/coalesce_test.go 790bf929d5d341df663e0219338fcbf0d5a3119b (Evans Mungai)
  • Fix lint warning f7cec12e23fe800495814432da4368b54c6d4552 (Evans Mungai)
  • Preserve nil values in chart already d94a5c97cbff6b8e857c578ac7fd29407aa60907 (Evans Mungai)
  • fix(values): preserve nil values when chart default is empty map 8c5fe4ef9781c714dc121288a4d499e62cc10bf8 (Evans Mungai)
  • chore(deps): bump github.com/cloudflare/circl from 1.6.1 to 1.6.3 217db28a4b75bff615275dc1e3975cf4d389c1d9 (dependabot[bot])
  • Restored –atomic flag on install command 7cb43e0c58d8ccf18ca54eadb8d8d6cfb14c06f7 (Travis Leeden)
  • fix: bump go.opentelemetry.io/otel/sdk to v1.40.0 for GO-2026-4394 5b26d4f1f99091262fef50ed51133e7ae8e3b011 (Terry Howe)
  • fix: bump fluxcd/cli-utils to v0.37.2-flux.1 360c1315ba2d468fcff77193f52764c6ad912c90 (Terry Howe)
  • chore(deps): bump sigs.k8s.io/kustomize/kyaml from 0.21.0 to 0.21.1 69a0a92ae3025cb00b480cb1084670d84b9fa018 (dependabot[bot])
  • fix: insert newline after doc separators glued to content by template trimming b868e6a7cce696744d3f0c87e3f6bba6a779aff3 (Matheus Pimenta)
  • fix: correct import comment in statuswait.go from v3 to v4 dbfbea91e34220911481f82fc6831284d954959a (rohansood10)
  • chore(deps): bump the k8s-io group with 7 updates 099192c285233653032e13f557e1b4a7c31e046b (dependabot[bot])
  • add image index test 4967ead76215e2ea694c37164d14520da9ba8bde (Pedro Tôrres)
  • fix pulling charts from OCI indices 2fe6b106e6d515b6792d53aff517489ae97387be (Pedro Tôrres)
  • fix: handle OCI digest algorithm prefix in chart downloader (#31601) e3e2d01ef45c6e4179d0536ea4a475f18fa23846 (Evans Mungai)
  • fix(install): check nil for restClientGetter and fix tests c15e7114dc0a0f24e0fda65dff83e7a18e264f60 (Manuel Alonso)
  • chore(refactor): better testing and functionality for installing crd df82e68ce1cac6825a59ed43d68d7560d6426979 (Manuel Alonso)
  • fix(test): fix tests and check nil for restclient 4b896ca82fa827760086998d6521965e0ace059f (Manuel Alonso)
  • fix(test): merge fix correctly 3fc79399c8af02b6704c10cba14be2ced9497cb2 (Manuel Alonso Gonzalez)
  • fix(install): add more tests and check nil file data 6017d2b470b07a4f55efd2c55ac0745203ddcd0b (Manuel Alonso)
  • fix(test): no check empty resources f451967ab5a5a9b1a26deb699bd1a1f4f2ba6b1e (Manuel Alonso)
  • fix(install): check lenght and file nil, add tests fdadff59eb8c3552de76c7647a9c787c248cdbd2 (Manuel Alonso)
  • fix(action): crd resources can be empty 10d606726560f1e813617c050c7b9cfbb8b0cb26 (Manuel Alonso)
  • fix: casing issue fixed 0fec40f9b61a1dc5799e67bd4fb4ea4321cdd836 (Mujib Ahasan)
  • fix: error handled correctly 263749874cb21ba31ebca17fe6c19fb3d0379417 (Mujib Ahasan)
  • fix: doc string added 961d7d7cd6b39ccc3a63bce7bba505b94a9be384 (Mujib Ahasan)
  • update: test coverage added for helper function validateNameAndGenerateName 29e45067f3f5a772c1400eb756605ba3bc615176 (Mujib Ahasan)
  • update: helper function added for the business logic d55b0b9022017aa7a5005d1c6bdc049872bc37f7 (Mujib Ahasan)
  • generateName is also considered in logic c1c090e8cead42ee16c36f987f2534c543b556fc (Mujib Ahasan)
  • update: business logic respected for skipping object missing name 5e093136f456232f0c80c4d2481e5191b3c72530 (Mujib Ahasan)
  • fixed: –dry-run=server now respect generateName f289d1605c9f02c843dd1b5dd03221fdb980f28e (Mujib Ahasan)
  • fix(downloader): safely handle concurrent file writes on Windows bfac7393e4cc8b22a36fb015264d10ddb30e03da (Orgad Shaneh)
View Full Release →
Clocks

Clocks 50.0

Mar 11, 2026
Flathub

org.gnome.clocks

Keep track of time

50.0

  • gresources: Use preprocess=xml-stripblanks
  • build: use oggenc from vorbis-tools instead of ffmpeg
  • Translation updates
View Full Release →
Logs

Logs 50.0

Mar 10, 2026
Flathub

org.gnome.Logs

View detailed event logs for the system

Release GNOME Logs 50.0

  • Logs are now exported in ascending order
  • Fix help dialog inside sandboxes
  • Updates to Bulgarian, Catalan, Kazakh, Norwegian Bokmål, Serbian (Latin), Serbian, Slovenian, and Uighur
View Full Release →
🍺

fd v10.4.2

Mar 10, 2026
Homebrew
brew install fd

Simple, fast and user-friendly alternative to find

Bugfixes

  • Fixed performance regression due to --ignore-contain; see #1913 and #1914
View Full Release →
🍺

chezmoi v2.70.0

Mar 9, 2026
Homebrew
brew install chezmoi

Manage your dotfiles across multiple diverse machines, securely

Changelog

Features

  • c8272529f2ed44ee861374f0b4ee6e62d364953e feat: Support multiple externals to same target in one .chezmoiexternal file

  • d21012970d3bddc5f498f05193a9fcb007fcf94c feat: Add podman as an alias for docker command

    Fixes

  • 44f73d3dc1678d15343db0c9f56c85065bff1260 fix: Adding exact subdir won’t add exact parent

    Documentation

  • 1499bfc5a7e94a0f9c81b65f9e88269faa63f39c docs: Clarify that edit –apply command does not apply scripts

  • 883fe1383110c51fd1cfaea30a979fdf4b219c30 docs: Add new articles on using chezmoi with coding agent configuration

  • 0bd0e48a4b8c5566c93fd533809bbbf25da3e01b docs: Add am package manager installation instructions

  • 7ef5efe5a3a63753ff35d7093b7ef8dbf68064d2 docs: Add link to github.com/daptify14/chezit

  • 767015acf6e4813dde9f0cd1b4edad9c0e60da92 docs: Add links to articles

  • 8e1b65230c825706052f4bb122a882fe0c712420 docs: Add link to article

  • 6f3e1db179b5a7af91bcbe21a78d3065bc8be0e7 docs: Add link to podcast

  • 910481edd510a0d6ccea65ecf19df6362cd2b62f docs: Add links to articles

View Full Release →
🍺

uutils-coreutils 0.7.0

Mar 8, 2026
Homebrew
brew install uutils-coreutils

Cross-platform Rust rewrite of the GNU coreutils

Rust Coreutils 0.7.0 Release:

We are excited to announce the release of Rust Coreutils 0.7.0 — a performance-focused release with major optimizations across dozens of utilities, continued safety improvements replacing unsafe code with safe abstractions, and a comprehensive campaign to eliminate panics on write errors. We also contributed many patches upstream to GNU coreutils, and welcomed their feedbacks and supports, strengthening both projects!


GNU Test Suite Compatibility:

Result 0.6.0 0.7.0 Change 0.6.0 to 0.7.0 % Total 0.6.0 % Total 0.7.0 % Change 0.6.0 to 0.7.0
Pass 622 629 +7 96.28% 94.59% -1.69%
Skip 7 13 +6 1.08% 1.95% +0.87%
Fail 16 23 +7 2.48% 3.46% +0.98%
Error 1 0 -1 0.15% 0% -0.15%
Total 646 665 +19 (new tests)

Note: The GNU test reference was updated from 9.9 to 9.10, adding 19 new tests. While the pass percentage decreased due to these newly added tests, the absolute number of passing tests increased by 7 and errors were eliminated entirely. Work is ongoing to address the new test failures.


GNU testsuite evolution


Highlights:

  • GNU Compatibility & Upstream Contributions

    • 629 passing tests (+7 from 0.6.0), with 19 new tests added from the GNU 9.10 update
    • Updated GNU test reference from 9.9 to 9.10
    • Contributed numerous patches upstream to GNU coreutils, benefiting both projects
    • New GNU compatibility fixes across date, fmt, kill, ptx, numfmt, cksum, and more
    • Took over maintenance of num-prime, the primality testing library used by factor
  • Performance Overhaul

    • Faster hash maps: rustc-hash in ls, du, tsort, shuf, mv; foldhash in sort
    • unexpand/expand: ASCII fast-path, buffered reads — 14%+ gain in unexpand
    • shuf, split, sort, du: Reduced malloc allocations (+3–6% in du, +4% in shuf)
    • nl: Optimized with itoa and direct writing
    • true/false: Removed clap dependency, smaller binary, faster startup
    • uucore: Disabled signal setup in simple utilities for binary size and startup speed
  • Robustness: Eliminated /dev/full Panics

    • Fixed panics when stderr is /dev/full across 20+ utilities (echo, date, sort, expr, hostname, id, comm, pr, dircolors, and more)
    • Generic fix ensuring unrecognized options with 2>/dev/full do not abort
  • Safety & Code Quality

    • Replaced unsafe libc calls with safe nix crate wrappers in uucore (umask, mkdirat, and more) and mknod
    • Eliminated TOCTOU races in ln, tac, and install -D
    • rm: --preserve-root now works correctly on symlinks
    • MSRV updated to 1.88
  • Notable Bug Fixes

    • date: Extensive fixes — -u/-s/-d flags, timezone abbreviation lookup and DST, RFC-822 format, %+/%_ modifiers, --debug, locale date_fmt
    • cp: Readonly directories, -a/-z flags, special files, non-UTF-8 directory names
    • mv: Preserve symlinks during cross-device moves, handle FIFOs in directories
    • ls: Hyperlink OSC 8 format, dired reports, fd leak on deep recursion, invalid UTF-8 hidden files
    • sort: Collator panic in worker threads, scientific notation parsing
    • paste: Multi-byte delimiters, GNU escape sequences, bounded buffering
    • printf: %q shell quoting with control chars and quotes
    • ptx: -t/--typeset-mode, multibyte Unicode panic, GNU default behavior
    • numfmt: --debug flag, empty delimiter, null byte handling, error message formatting
    • cksum: SHAKE algorithms, --binary/--text/--tag errors
    • cut, tac, tail, tr, uniq, od, chroot, stat, mktemp, pr, readlink, ln, kill, nproc, rm, env, sync, fmt, factor, wc: Various GNU compatibility and correctness fixes
  • Platform Support

    • NetBSD and PowerPC build fixes
    • Windows: tac stdin piping, test -r/-w/-x, publish static *.exe binaries
    • WebAssembly: Publish *.wasm artifacts
    • stdbuf: Support libstdbuf in same directory as binary
    • NixOS test compatibility fix; added security audit workflow
  • Contributions: This release was made possible by 23 new contributors joining our community


Call to Action:

Help us translate - Contribute translations at Weblate Sponsor us on GitHub to accelerate development: github.com/sponsors/uutils

What’s Changed

cat

cksum

chroot

comm

coreutils

cp

csplit

cut

date

dd

df

dircolors

du

echo

env

expand

expr

factor

false

fmt

fold

hostname

id

install

kill

ln

ls

mktemp

mknod

mv

nl

nproc

numfmt

od

paste

pr

printf

ptx

rm

shuf

sort

split

stat

stdbuf

stty

sync

tac

tail

test

tr

true

tsort

unexpand

uniq

uptime

vdir

wc

whoami

uucore

CI & Build

Documentation

Code Quality & Cleanup

Dependency Updates

Version Management

New Contributors

Full Changelog: https://github.com/uutils/coreutils/compare/0.6.0…0.7.0

View Full Release →
Déjà Dup Backups

Déjà Dup Backups 50.0

Mar 6, 2026
Flathub

org.gnome.DejaDup

Protect yourself from data loss

  • If a network URL has an unrecognized scheme like nope://, give a nicer error message
  • Explain that rest:// URLs are not supported, if you try to use one
  • Duplicity: fix a race condition between reading messages and it exiting
  • Restic: avoid backing up the restic repository, if local
  • Restic: when restoring using the flatpak release on Ubuntu, fall back to the old in-app browser if apparmor rejects our FUSE mount attempt
Packaging
  • Deprecate the -Denable_borg=true compile flag, it’s just always on in the background now (which does not mean we really support Borg, it’s still just an abandoned code path inside Deja Dup, this is just cleaning up our build flags)
View Full Release →
🍺

ugrep ugrep v7.6

Mar 5, 2026
Homebrew
brew install ugrep

Ultra fast grep with query UI, fuzzy search, archive search, and more

What’s new?

  • new options –max-size and min-size to search files whose physical size is in the specified MIN and/or MAX range
  • fix zsh completion syntax error (#528)
  • update option –ignore-file to ignore files and directories specified in an .gitignore file as an absolute /glob to ignore those matching the glob under its sub-directories (#526)
  • fix emulation of GNU grep option -z (–null-data) to match newlines (zero bytes internally) with pattern \s (space), which requires non-standard regex behavior internally to include matching zero bytes with pattern \s (#525)
  • update –ignore-file=FILE to accept a FILE pathname to a non-local gitignore FILE that applies globally to ignore files and directories, similar to –exclude-from=FILE, but with the minor difference that gitignore rules match both files and directories with a single glob (#518 #519 #532)
  • fix third-party sourced zopen.c library (BSD open source) one-byte read beyond its allocated struct s_zstate state variable in getcode() (#511)
  • fix -m (–max-count) with context options -A or -C sometimes producing garbled after-context output that may cause a crash in the worst case (#510)
  • fix reverse sort by date –sort=rchanged and –sort=rcreated not recognized by the TUI at startup (#508)
  • update ugrep to search named pipe files specified as arguments on the command line instead of skipping them by default, such as process substitutions; also improve Linux special system files /proc and /sys skipping and/or reading and option -z file read error handling to avoid possible pipe fd leaks when thousands of /proc files are searched that produce (expected) read errors (#503)
  • support option –no-empty while using full grep-emulation mode, i.e. when ugrep is renamed to grep

Thank you for your feedback to help improve ugrep ❤️

View Full Release →
🍺

k3sup Clarity and updates

Mar 4, 2026
Homebrew
brew install k3sup

Utility to create k3s clusters on any local or remote VM

Changelog for 0.13.12:

Commits ce927dd148cbc42f75fb3dd44f8836b4d3f9a0e0 Bump go.mod by @alexellis 90ab647b2c8eda75d94bf61241c7f3a098b9d7fe Bump to Go 1.26 by @alexellis 48e5a163986362b831e31e3c6a68281cbcc87a2c Updates on asking for sponsors by @alexellis d0d16bf157e182a19bada2a04515ee388adb0a82 Add ascii diagram by @alexellis 23ca6231231e76b1a5954624c1b287e7ac405de0 Make intro a link by @alexellis bdbf47fae10ca7714590423c61b5275efa24f6ed Note on CE EULA by @alexellis 6a73d3b76e86fc0ce24294f4989366c3e5ac1c7d Add EULA for K3sup Pro (ONLY) by @alexellis b82b838e5e118f0426ab3226a87d43cbd1920bca Update LICENSE by @alexellis b509f69f8d275af7bee4d1c4e367e88fa26142ee Update README.md by @alexellis 39796206231431298a15fade7b298ef590983fc5 Show alternative installation approach by @alexellis d76db6b103cf43276df7293a3634ae10e8eb5e4b Add PRO flag/switch to k3sup installer by @alexellis

Changes: https://github.com/alexellis/k3sup/compare/0.13.11…0.13.12

Generated by Derek

View Full Release →
Clapgrep

Clapgrep v26.02

Feb 11, 2026
Flathub

de.leopoldluley.Clapgrep

Search through all your files

Translations:

    <ul>
      <li>Updated German translations.</li>
      <li>Set up Weblate to make contributing translations easier.</li>
    </ul>
    <p>Bug fixes:</p>
    <ul>
      <li>Increased minimum window width to 360px to avoid clipping.</li>
    </ul>
View Full Release →
Refine

Refine Version 0.7.1

Feb 8, 2026
Flathub

page.tesk.Refine

Tweak various aspects of GNOME

  • Update Georgian and Chinese translation
🍺

zoxide 0.9.9

Jan 31, 2026
Homebrew
brew install zoxide

Shell extension to navigate your filesystem faster

Added

  • Support for Android ARMv7.
  • Fish: support for v4.1.0+.

Fixed

  • Nushell: use sigil operator when calling external commands.
  • Zsh: support multiple digits in z +N and z -N dirstack commands.
  • Bash: avoid downcasting $PROMPT_COMMAND array into a string.
  • Bash: avoid overwriting $PIPESTATUS.
  • POSIX: remove non-POSIX compliant calls to builtin.
  • Fish: clear existing completions when defining z command.
View Full Release →
Warehouse

Warehouse 2.2.0

Jan 17, 2026
Flathub

io.github.flattool.Warehouse

Manage all things Flatpak

Changes

  • Updated to GNOME 49 GTK Technologies
  • Changed to new Shortcuts UI
  • Added and updated translations
View Full Release →
🍺

k9s v0.50.18

Jan 11, 2026
Homebrew
brew install k9s

Kubernetes CLI To Manage Your Clusters In Style!

Release v0.50.18

Notes

🥳🎉 Happy new year fellow k9ers!🎊🍾 Hoping 2026 will bring good health and great success to you and yours…

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 big corporations with deep pockets, thus if you feel K9s is helping in your Kubernetes journey, please consider joining our sponsorship program and/or make some noise on social! @kitesurfer

On Slack? Please join us K9slackers


♫ Sounds Behind The Release ♭


Maintenance Release!

Oops! I’ve missed a PR in the v0.50.17 excitement ;( Dropping v0.50.18 with feelings…

Sponsorships are dropping at an alarming rate which puts this project in the red. This is becoming a concern and sad not to mention unsustainable ;( If you dig k9s and want to help the project, please consider paying it forward! and don’t become just another satisfied, non paying customer!. K9s does take a lot of my free time to maintain, enhance and keep the light on. Many cool ideas are making it straight to the freezer as I just can’t budget them in. I know many of you work for big corporations, so please put in the word/work and have them help us out via sponsorships or other means.

Thank you!


A Word From Our Sponsors…

To all the good folks and orgs below that opted to pay it forward and join our sponsorship program, I salute you!!

Sponsorship cancellations since the last release: 17! 🥹

Resolved Issues

  • #3765 quay.io docker images not up to date but referenced in README.md
  • #3762 Copy multiple selected items
  • #3751 Improve visual distinction for cordoned nodes in Node view
  • #3735 Cannot decode secret if there is no get permissions for all secrets
  • #3708 Editing a single Namespace opens the editor with a list of all Namespaces
  • #3731 feat: add neat plugin
  • #3735 Cannot decode secret if there is no get permissions for all secrets
  • #3708 Editing a single Namespace opens the editor with a list of all Namespaces
  • #3649 Improved Column Sorting

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!!

  • #3763 feat: enable copying multiple resource, namespace names to clipboard
  • #3760 fix: Editing a single Namespace opens the editor with a list of all Namespaces
  • #3756 feat: Add reconcile plugin for Flux instances
  • #3755 fix: panic on ‘jump to owner’ of reflect.Value.Elem on zero Value
  • #3753 feat: add plugins for argo workflows
  • #3750 fix: Flux trace plugin shortcut conflict by changing to Shift-Q
  • #3749 feat: add dark/light theme inversion using Oklch
  • #3739 chore: refine LabelsSelector comment to match function behavior
  • #3738 feat: add symlink handle for plugin directory
  • #3720 fix(internal/render): ensure object is deep copied before realization in Render method
  • #3704 Allow k9s to start without a valid Kubernetes context
  • #3699 feat(pulse): map hjkl to navigate as help shows
  • #3697 Issue 3667 Fix
  • #3696 fix for scale option appearing on non-scalable resources
  • #3690 feat: add support for scaling HPA targets
  • #3671 fix fails to modify or delete namespaces using RBAC
  • #3669 feat: logs column lock
  • #3663 Map Q to “Back”
  • #3661 refactor: remove unused sorting key bindings from various views
  • #3859 fix: update busybox image version to 1.37.0 in configuration files
  • #3650 Sort all columns
  • #3458 Document how to install on Fedora

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

View Full Release →
brew install ublue-os/experimental-tap/emacs-app-linux

Text editor with PGTK support (Native Wayland and X11)

Emacs PGTK Build 30.2

This release contains distribution-agnostic builds of Emacs 30.2 with PGTK support.

Features

  • PGTK (Pure GTK) - Native Wayland and X11 support
  • Native Compilation (AOT) - Faster Elisp execution
  • Tree-sitter - Modern syntax highlighting and parsing
  • Modern image support - JPEG, PNG, GIF, TIFF, WebP, SVG
  • Network security - GnuTLS support
  • Database support - SQLite3 integration

Available Builds

Each distribution is available for both amd64 and arm64 architectures:

  • Alpine Linux (musl) - musl-based, minimal dependencies
  • Ubuntu LTS - Dynamic build, broad compatibility
  • Fedora Latest - Dynamic build, latest libraries

Usage

  1. Download the appropriate build for your system
  2. Extract: tar -xzf emacs-pgtk-*.tar.gz
  3. Run: ./emacs-pgtk-*/run-emacs.sh

Built from commit: e38be0ceefd108f2ea169144d4b0db973f9cbb82

View Full Release →
🍺

micro nightly

Jul 5, 2020
Homebrew
brew install micro

Modern and intuitive terminal-based text editor

Automatic generated nightly build of micro (please DISREGARD the creation date of this Github release).

View Full Release →
🍺

starship v1.24.2

Dec 30, 2025
Homebrew
brew install starship

Cross-shell prompt for astronauts

1.24.2 (2025-12-30)

Bug Fixes

  • cmd_duration: avoid freezing on notify on macOS 26 (#7187) (0daa8d3)
  • fish: restore job counting compability with older versions (#7173) (a261b48)
  • fish: use native transient prompt if available (#7015) (cc65e0c)
  • git: Basic Reftable compatibility and future-proofing (#7154) (6d9c8ea)
  • mise: align documentation and implementation (#7131) (08824d7)
  • Revert “feat(install.sh): handle installation directory prompt case-insensitively (#7138) (d11bc8d)
  • zsh: fix job counting (#7124) (46ab862)
View Full Release →
🍺

dysk dysk v3.6.0

Dec 23, 2025
Homebrew
brew install dysk

Linux utility to get information on filesystems, like df but better

On linux, stats reading is now time bounded, which avoids freezes on unresponding remote volumes or some invalid mounts.

A new launch argument lets you tune the timeout, eg dysk --timeout no or dysk --timeout 5ms.

This should make the --remote-stats no parameter mostly useless.

View Full Release →
🍺

kind v0.31.0

Dec 18, 2025
Homebrew
brew install kind

Run local Kubernetes cluster in Docker

This release contains dependency updates and defaults to Kubernetes 1.35.0.

Please take note of the breaking changes from Kubernetes 1.35, and how to prepare for future changes to move off of the deprecated kubeam v1beta3 in favor of v1beta4. We will include updated reminders for both again in subsequent releases.

Breaking Changes

The default node image is now kindest/node:v1.35.0@sha256:452d707d4862f52530247495d180205e029056831160e22870e37e3f6c1ac31f

Kubernetes 1.35+ Cgroup v1

Kubernetes will be removing cgroup v1 support, and therefore kind node images at those versions will also be dropping support.

You can read more about this change in the Kubernetes release blog: https://kubernetes.io/blog/2025/12/17/kubernetes-v1-35-release/#removal-of-cgroup-v1-support

If you must use kind on cgroup v1, we recommend using an older Kubernetes release for the immediate future, but we also strongly recommend migrating to cgroup v2.

In the near future as Kubernetes support dwindles, KIND will also clean up cgroup v1 workarounds and drop support in future kind releases and images, regardless of Kubernetes version.

Most stable linux distros should be on cgroupv2 out of the box.

This is a reminder to use pinned images by digest, see the note below about images for this release.

Kubeadm Config *Future* Breaking Change

WARNING: Future kind releases will adopt kubeadm v1beta4 configuration, kubeadm v1beta4 has a breaking change to extraArgs: https://kubernetes.io/blog/2024/08/23/kubernetes-1-31-kubeadm-v1beta4/.

If you use the kubeadmConfigPatches feature then you may need to prepare for this change. We recommend that you use versioned config patches that explicitly match the version required.

KIND uses kubeadm v1beta3 for Kubernetes 1.23+, and will likely use v1beta4 for Kubernetes 1.36+ The exact version is TBD pending work to fix this but expected to be 1.36. It will definitely be an as-of-yet-unreleased Kubernetes version to avoid surprises, and it will not be on a patch-release boundary.

KIND may still work with older Kubernetes versions at v1beta2, but we no longer test or actively support these as Kubernetes only supports 1.32+ currently: https://kubernetes.io/releases/

You likely only need v1beta3 + v1beta4 patches, you can take your existing patches that work with v1beta3, explicitly set apiVersion: kubeadm.k8s.io/v1beta3 in the patch at the top level, and make another copy for v1beta4. The v1beta4 patch will need to move extraArgs from a map to a list, for examples see: https://kubernetes.io/docs/reference/config-api/kubeadm-config.v1beta4/

For a concrete example of kind config with kubeadm config patch targeting both v1beta3 and v1beta4, consider this simple kind config that sets verbosity of the apiserver logs:

kind: Cluster
apiVersion: kind.x-k8s.io/v1alpha4
kubeadmConfigPatches:
# patch for v1beta3 (1.23 ...)
- |
  kind: ClusterConfiguration
  apiVersion: kubeadm.k8s.io/v1beta3
  apiServer:
    extraArgs:
      "v": "4"
# patch for v1beta4 (future)
- |
  kind: ClusterConfiguration
  apiVersion: kubeadm.k8s.io/v1beta4
  apiServer:
    extraArgs:
      - name: "v"
        value: "4"

If you only need to target a particular release, you can use one version.

If you only need to target fields that did not change between kubeadm beta versions, you can use a versionless patch, which may be more convenient, but we cannot guarantee there will be no future kubeadm config breaking changes.

New Features

  • Assorted unspecified dependency updates

Images pre-built for this release:

  • v1.35.0: kindest/node:v1.35.0@sha256:452d707d4862f52530247495d180205e029056831160e22870e37e3f6c1ac31f
  • v1.34.3: kindest/node:v1.34.3@sha256:08497ee19eace7b4b5348db5c6a1591d7752b164530a36f855cb0f2bdcbadd48
  • v1.33.7: kindest/node:v1.33.7@sha256:d26ef333bdb2cbe9862a0f7c3803ecc7b4303d8cea8e814b481b09949d353040
  • v1.32.11: kindest/node:v1.32.11@sha256:5fc52d52a7b9574015299724bd68f183702956aa4a2116ae75a63cb574b35af8
  • v1.31.14: kindest/node:v1.31.14@sha256:6f86cf509dbb42767b6e79debc3f2c32e4ee01386f0489b3b2be24b0a55aac2b

NOTE: You must use the @sha256 digest to guarantee an image built for this release, until such a time as we switch to a different tagging scheme. Even then we will highly encourage digest pinning for security and reproducibility reasons.

See also:

NOTE: These node images support amd64 and arm64, both of our supported platforms. You must use the same platform as your host, for more context see https://github.com/kubernetes-sigs/kind/issues/2718

Fixes

  • Detect additional edge case with ipv6 support on the host
  • Make development / release scripts GOTOOLCHAIN aware

Contributors

Committers for this release:

  • @AkihiroSuda
  • @adambkaplan
  • @afbjorklund
  • @aoxn
  • @BenTheElder
  • @dependabot[bot]
  • @k8s-ci-robot
  • @kalexmills
  • @kishen-v
  • @mikejoh
  • @rayowang
  • @shahar1
  • @stmcginnis
View Full Release →
🍺

bat v0.26.1

Dec 2, 2025
Homebrew
brew install bat

Clone of cat(1) with syntax highlighting and Git integration

v0.26.1

Features

  • Add paging to ‘-h’ and ‘–help’ see PR #3478 (@MuntasirSZN)

Bugfixes

  • Fix hang when using --list-themes with an explicit pager, see #3457 (@abhinavcool42)
  • Fix negative values of N not being parsed in line ranges without = flag value separator, see #3442 (@lmmx)
  • Fix broken Docker syntax preventing use of custom assets, see #3476 (@keith-hall)
  • Fix decorations being applied unexpectedly when piping. Now only line numbers explicitly required on the command line should be applied in auto decorations mode for cat compatibility. See #3496 (@keith-hall)
  • Fix diagnostics attempting to find the version of an executable named builtin when builtin pager is used. See #3498 (@keith-hall)
  • --help now correctly reads the config file for theme information etc. See #3507 (@keith-hall)

Other

  • Improve README documentation on pager options passed to less, see #3443 (@injust)
  • Make PowerShell completions compatible with PowerShell v5.1, see #3495 (@keith-hall)
  • Use more robust approach to escaping in Bash completions, see #3448 (@akinomyoga)

Syntaxes

  • Update quadlet syntax mapping to include *.{build,pod} files #3484 (@cyqsimon)
  • Fix inconsistencies in Ada syntax, see #3481 (@AldanTanneo)
  • Add syntax mapping for podman’s artifact quadlet files, see #3497 (@xduugu)
  • Highlight Korn Shell scripts (i.e. with a shebang of …ksh) using Bash syntax, see #3509 (@keith-hall)
View Full Release →
🍺

winboat v0.9.0

Nov 23, 2025
Homebrew
brew install ublue-os/experimental-tap/winboat

Run Windows apps on Linux with seamless integration

🎉 Release v0.9.0

:sparkles: Features:

  • 🐳 Podman is now supported, you can pick it during installation, however USB passthrough on Podman is not supported yet
  • UWP app support has been added, now you can see and start all your UWP apps
  • A Custom App can now be created from an existing one if you’d like to modify it
  • Apps can now be filtered
  • Apps can now be launched via the context menu
  • You can now adjust the Application Scaling in Configuration
  • New WinBoat installations will now reserve the port range 47270 - 47370 on Docker for all used services, this is to avoid common ports and port conflicts in the future. In the meantime Podman does not support port ranges in compose files, so we’re allocating random ports
  • You can now add new or replace any existing FreeRDP arguments in Configuration
  • A wm-class prefix has been added for folks who wanna style WinBoat FreeRDP windows in their WM
  • Windows will now auto-synchronize the clock on new installations
  • The default install path has been set to ~/winboat, of course you can still change it to whatever you prefer
  • You can now disable animations within WinBoat if you’re sensitive to motion or your compositor doesn’t play nicely with Electron

:construction: Fixes:

  • If you’re using a Custom ISO for installation, that ISO will get auto-unmounted afterwards so the next time you start WinBoat with that ISO deleted, it will work properly
  • Fixed the CPU usage spiking when RDP monitoring is enabled
  • Corrected a few typos

:jigsaw: Misc:

  • dockur/windows version upgraded to 5.14
  • All WinBoat ports are now bound by default to 127.0.0.1
  • Improved the security of the Guest Server (thanks @mrsheepsheep and @matt0x00)

Full Changelog: https://github.com/TibixDev/winboat/compare/v0.8.7…v0.9.0

View Full Release →
🍺

ripgrep 15.1.0

Oct 22, 2025
Homebrew
brew install ripgrep

Search tool like grep and The Silver Searcher

Sponsorship is appreciated!

This is a small release that fixes a bug with how ripgrep handles line buffering. This might manifest as ripgrep printing output later than you expect or not working correctly with tail -f (even if you’re using the --line-buffered flag).

In case you haven’t heard of it before, ripgrep is a line-oriented search tool that recursively searches the current directory for a regex pattern. By default, ripgrep will respect gitignore rules and automatically skip hidden files/directories and binary files.

Bug fixes:

  • BUG #3194: Fix a regression with --line-buffered introduced in ripgrep 15.0.0.

Feature enhancements:

View Full Release →
🍺

eza eza v0.23.4

Oct 3, 2025
Homebrew
brew install eza

Modern, maintained replacement for ls

Changelog

[0.23.4] - 2025-10-03

Bug Fixes

  • Update nixpkgs/cargo dependencies

Miscellaneous Tasks

  • Eza v0.23.4 changelogs, version bump

Checksums

sha256sum

dcb0fb3a073e03a8a52c0f43bfcd9ce2d7a8df5556a08dfda33265f679f346c2  ./target/bin-0.23.4/eza_aarch64-unknown-linux-gnu_no_libgit.tar.gz
c2ace6c5a14e4e3c57ae57bc2dffb6ebaa87ea5edb6c08ce62b0917c6ffd4102  ./target/bin-0.23.4/eza_aarch64-unknown-linux-gnu_no_libgit.zip
366e8430225f9955c3dc659b452150c169894833ccfef455e01765e265a3edda  ./target/bin-0.23.4/eza_aarch64-unknown-linux-gnu.tar.gz
33887c9d9df887671e9fabfa93de671aae19b67a77494d64aab1cd2e26425d8f  ./target/bin-0.23.4/eza_aarch64-unknown-linux-gnu.zip
243b88e63ecbe67ae21cc963ce7760d1762bfec5fb28db9310848aaa3800cd81  ./target/bin-0.23.4/eza_arm-unknown-linux-gnueabihf_no_libgit.tar.gz
478544768d77aa54851dfd0da7d9762679bd3125f74d684cb93df287310c977c  ./target/bin-0.23.4/eza_arm-unknown-linux-gnueabihf_no_libgit.zip
645b41b853c774d94a72ae2846cd71e94583d94603ff60b9936dbeb40b55aea1  ./target/bin-0.23.4/eza_arm-unknown-linux-gnueabihf.tar.gz
7dd51246f39bb3670aa47ed930a16d0016e38856e1cb8c0bd5a6940c90ea25e8  ./target/bin-0.23.4/eza_arm-unknown-linux-gnueabihf.zip
4d4f87f6bc8e6ee176789c28bee698234ce0275da013709eb16b0f14819c1688  ./target/bin-0.23.4/eza.exe_x86_64-pc-windows-gnu.tar.gz
05677fd7c2d1b69ce71df53db74c29f6331ea0b2be5aa3a0fce6976200ee06fc  ./target/bin-0.23.4/eza.exe_x86_64-pc-windows-gnu.zip
0c38665440226cd8bef5d1d4f3bc6ff77c927fb0d68b752739105db7ab5b358d  ./target/bin-0.23.4/eza_x86_64-unknown-linux-gnu.tar.gz
0a1c72faefcb511b08b1b8470aedf4a6a3a94c4d56f8f65da3cb7d8c5de051f1  ./target/bin-0.23.4/eza_x86_64-unknown-linux-gnu.zip
d231bb3ee33b08c76279b5888845dceb7034d055c42bb9be46dbe0dae39394df  ./target/bin-0.23.4/eza_x86_64-unknown-linux-musl.tar.gz
d978ecb56fd7acc37148818122bae2b2402f9d0bf706dcacb28831ea618b5488  ./target/bin-0.23.4/eza_x86_64-unknown-linux-musl.zip

md5sum

67c0b81c99879be4292ae9dd16d7679c  ./target/bin-0.23.4/eza_aarch64-unknown-linux-gnu_no_libgit.tar.gz
b28a8fc93ee5810bbcb413d019cdfeed  ./target/bin-0.23.4/eza_aarch64-unknown-linux-gnu_no_libgit.zip
328cfe3518e6044037f87451cbabfd3c  ./target/bin-0.23.4/eza_aarch64-unknown-linux-gnu.tar.gz
84a7f0d3b448da72c0611c289c08ac36  ./target/bin-0.23.4/eza_aarch64-unknown-linux-gnu.zip
19eb8a10eb3d349004de9a5214ec4bbb  ./target/bin-0.23.4/eza_arm-unknown-linux-gnueabihf_no_libgit.tar.gz
327095078e957a8af7f7d54457226557  ./target/bin-0.23.4/eza_arm-unknown-linux-gnueabihf_no_libgit.zip
fe54e3272e3bf626352191975b956b7f  ./target/bin-0.23.4/eza_arm-unknown-linux-gnueabihf.tar.gz
f354e9dae4cba597f24313201df2117a  ./target/bin-0.23.4/eza_arm-unknown-linux-gnueabihf.zip
e445b92ec75433e538979c789c91e02b  ./target/bin-0.23.4/eza.exe_x86_64-pc-windows-gnu.tar.gz
3e4f75825a04290acfa4def99a122d9c  ./target/bin-0.23.4/eza.exe_x86_64-pc-windows-gnu.zip
c6a4320f8f0d8560455e8c4c4e8061d2  ./target/bin-0.23.4/eza_x86_64-unknown-linux-gnu.tar.gz
ae2aaf6846d3a684a769148f5bb98526  ./target/bin-0.23.4/eza_x86_64-unknown-linux-gnu.zip
418bc5feffa98c3e570362bbb53b5a67  ./target/bin-0.23.4/eza_x86_64-unknown-linux-musl.tar.gz
eacb5a46b40c99cd12715eaa09871af6  ./target/bin-0.23.4/eza_x86_64-unknown-linux-musl.zip

blake3sum

35ab21721a631263b2ff9b44d564ac86ae57d7b25190e5369ddfacd647c5cb28  ./target/bin-0.23.4/eza_aarch64-unknown-linux-gnu_no_libgit.tar.gz
513fa2deed40d87ca689f0a7aa6903317642dfc159b6346e86ade50e9489e139  ./target/bin-0.23.4/eza_aarch64-unknown-linux-gnu_no_libgit.zip
5299fa2c95b289c7f19af936b94b90e122f6dbb89e43e83a25cebc5cf2298c54  ./target/bin-0.23.4/eza_aarch64-unknown-linux-gnu.tar.gz
98d0f8e7456174cdec7d2630cc57fc3d62bd36bf87ae1941f85924d9d8c5c6c5  ./target/bin-0.23.4/eza_aarch64-unknown-linux-gnu.zip
3375f1cdca56825e45595c577c37ee7a565d42fc97d4d2103dc7c48851c861b8  ./target/bin-0.23.4/eza_arm-unknown-linux-gnueabihf_no_libgit.tar.gz
5d756e731d834cd105052eab3827b14d2d89a95fbe724e62d6709e12542f223a  ./target/bin-0.23.4/eza_arm-unknown-linux-gnueabihf_no_libgit.zip
ee1d9886dd6f0f691786c1dd47746cd5338f2f282c104de6270460cbe1e8d476  ./target/bin-0.23.4/eza_arm-unknown-linux-gnueabihf.tar.gz
6da899a396802605ae446eff2ff040c8d0c4516f82a931ee22160ee13416173e  ./target/bin-0.23.4/eza_arm-unknown-linux-gnueabihf.zip
9c3e8fc4ed26f0bae428e92d8ac155de4b59ee57e5b57aac5b4cad4c1f1248d3  ./target/bin-0.23.4/eza.exe_x86_64-pc-windows-gnu.tar.gz
5d41f9c51ceb4f56f596ddd1b17626a0c007b72c4fa3e207f530a8c11f3cdd8b  ./target/bin-0.23.4/eza.exe_x86_64-pc-windows-gnu.zip
00f5d902dc6aab24f0d7092fc45221b0eefde07c580700276c9b8787fa45a05b  ./target/bin-0.23.4/eza_x86_64-unknown-linux-gnu.tar.gz
b0c1ae1bfdaaec8a946dfda5ec394b08b9b1325b03a2e8bc66c2205da1ad863f  ./target/bin-0.23.4/eza_x86_64-unknown-linux-gnu.zip
21991aff3dbcd376efdcb98bc58a8b4a79c30889f079381e48661d85ef9074ab  ./target/bin-0.23.4/eza_x86_64-unknown-linux-musl.tar.gz
69e7d366457d26a3caec12f45b3f9bbfbda2d9d6a6031f939fe28f77a3aef78c  ./target/bin-0.23.4/eza_x86_64-unknown-linux-musl.zip
View Full Release →
Firmware

Firmware 49.0

Oct 3, 2025
Flathub

org.gnome.Firmware

Install firmware on devices

This release adds the following features:

  • Add support for installing .cab archives
  • Provide a way to easily create device emulation data

This release fixes the following issues:

  • Hide the emulation UI when compiling against old libfwupd
  • Migrate all UI to latest libadwaita widgets
  • Reload the device list if the daemon is restarted
  • Remember the last-selected device on restart
  • Show devices without a firmware version

This release also adds new translations.

View Full Release →
Extension Manager

Extension Manager v0.6.5

Oct 1, 2025
Flathub

com.mattjakeman.ExtensionManager

Install GNOME Extensions

Minor update to fix search regressions

Extension Manager lets you browse, install, and manage GNOME Shell Extensions. It is written with GTK 4 and libadwaita.

It is recommended that you install Extension Manager via Flathub for automatic updates.

What’s Changed

New Contributors

Full Changelog: https://github.com/mjakeman/extension-manager/compare/v0.6.4…v0.6.5

View Full Release →
📦

org.gtk.Gtk3theme.adw-gtk3-dark

The libadwaita theme ported to GTK 3

The GTK4 theme now requires GTK 4.20 or later.

The GTK4 theme now makes use of CSS @media query to apply the dark theme, therefore the version requirement bump. Make sure whatever desktop environment/WM you’re using is properly setting the dark xdg-desktop-portal variant. Most major desktop environments should handle this automatically when you select dark from the settings.

Full Changelog: https://github.com/lassekongo83/adw-gtk3/compare/v6.3…v6.4

View Full Release →
📦

org.gtk.Gtk3theme.adw-gtk3

The libadwaita theme ported to GTK 3

The GTK4 theme now requires GTK 4.20 or later.

The GTK4 theme now makes use of CSS @media query to apply the dark theme, therefore the version requirement bump. Make sure whatever desktop environment/WM you’re using is properly setting the dark xdg-desktop-portal variant. Most major desktop environments should handle this automatically when you select dark from the settings.

Full Changelog: https://github.com/lassekongo83/adw-gtk3/compare/v6.3…v6.4

View Full Release →
🍺

direnv Release v2.37.1

Jul 20, 2025
Homebrew
brew install direnv

Load/unload environment variables based on $PWD

  • fix: regression in displaying export errors (#1469)

2.37.0 / 2025-07-02

View Full Release →
🍺

helix 25.07.1

Jul 18, 2025
Homebrew
brew install helix

Post-modern modal text editor

This is a patch release which lowers the GLIBC requirements of the release artifacts published to GitHub.

View Full Release →
🍺

aichat v0.30.0

Jul 6, 2025
Homebrew
brew install aichat

All-in-one AI-Powered CLI Chat & Copilot

New Features

  • add support for OSC52 clipboard codes (#1280)
  • abandon support for lingyiwanwu client (#1327)
  • support autodetecting dark/light theme (#1335)
  • enhence .regenerate (#1340)
  • ctrl+j for newline (#1342)

Bug Fixes

  • use_tools in agent mode (#1252)
  • visual indication of Vi insert/normal model (#1279)
  • better error handling for aichat -e on MacOS (#1311)
  • openai api omits content field from tool_calls message (#1326)
  • change temperature/top_p reading rules (#1333)
  • .file external commands capture stdout/stderr (#1343)

New Contributors

Full Changelog: https://github.com/sigoden/aichat/compare/v0.29.0…v0.30.0

View Full Release →
Document Viewer

Document Viewer 49.alpha

Jun 30, 2025
Flathub

org.gnome.Papers

Read documents

Release 49.alpha

general:

  • Avoid potential heap overflow when allocating from n_pages (#2094, Nelson Benítez León)
  • Make annotation popup window always opaque (#1399, Casey Jao)
  • Port Evince to Gtk4 (Qiu Wenbo, Pablo Correa Gómez, Germán Poo-Caamaño)

profiling:

  • Usage of sysprof for profiling (Pablo Correa Gómez)
  • EV_PROFILE and EV_PROFILE_JOBS environment variables for profiling are now ignored. Anybody wishing to profile evince can now use sysprof, which provides a far better interface.

libview:

  • Fix caret-color when using system dark mode (#2093, Nelson Benítez León)
  • Avoid view events while view is still loading (Nelson Ben)

shell:

  • Fix crash when exiting (#2074, Nelson Benítez León)
  • Fix opening of linked PDFs (Marek Kasik)
  • Confine monitor fix to affected gtk versions (#1600, Nelson Benítez León)
  • Warn about nonexisting launch target file (Marek Kasik)

Developers:

  • Casey Jao, Germán Poo-Caamaño, Marek Kasik, Nelson Ben, Nelson Benítez León, Pablo Correa Gómez, Qiu Wenbo

Translations:

  • Emilio Sepúlveda (Add Interlingua)
  • Baxrom Raxmatov (Add Uzbek (Latin))
  • Amar Al-Janabi (Arabic)
  • Vasil Pupkin (Belarusian)
  • Jordi Mas (Catalan)
  • Jordi Mas i Hernandez (Catalan)
  • Yi-Jyun Pan (Chinese (Taiwan))
  • Daniel Rusek (Czech)
  • Takayuki Kusano (Japanese)
  • Pawan Chitrakar (Nepali)
  • A S Alam (Punjabi)
  • Martin (Slovenian)

Git-EVTag-v0-SHA512: 4a76d07253d6441fdc12b205ea0b905d5cc577f25a78de67578cc35fcad9b7f30c5348b6162dfebb01bf8050684e947690e063b320c589572942915b9c02e189

View Full Release →
🍺

libvirt-full Release 3.2.14

Oct 5, 2023
Homebrew
brew install ublue-os/experimental-tap/libvirt-full

C virtualization API, now with udev support

What’s Changed

New Contributors

Full Changelog: https://github.com/eudev-project/eudev/compare/v3.2.12…v3.2.14

View Full Release →
🍺

ydotool v1.0.4

Jan 30, 2023
Homebrew
brew install ublue-os/experimental-tap/ydotool

Generic command-line automation tool (no X!)

brew install ublue-os/tap/heic-to-dynamic-gnome-wallpaper

Convert macOS HEIC dynamic wallpapers to GNOME dynamic wallpapers

Commits

  • e6fbbc9: Update dependencies (Johannes Wünsche)
  • 3721f1f: Add keywords for visibility (Johannes Wünsche)
  • 02989c4: Clippy fixes (Johannes Wünsche)
  • edb40dc: Fix License (Johannes Wünsche)
  • c4f625a: Remove file publish from release workflow (Johannes Wünsche)
  • bf48bc9: Shorten keywords section (Johannes Wünsche)
  • afb0579: (cargo-release) version 0.1.6 (Johannes Wünsche)
View Full Release →