From 9efdf788321d79b3c57624520c8490d6bc39940c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 13 Aug 2026 14:08:46 +0000 Subject: [PATCH] chore: release 2.19.0 --- .github/release-please-manifest.json | 2 +- CHANGELOG.md | 33 ++++++++++++++++++++++++++++ bash_completion | 2 +- configure.ac | 2 +- version.txt | 2 +- 5 files changed, 37 insertions(+), 4 deletions(-) diff --git a/.github/release-please-manifest.json b/.github/release-please-manifest.json index 94f066ff8f9..9f8b09a00a4 100644 --- a/.github/release-please-manifest.json +++ b/.github/release-please-manifest.json @@ -1 +1 @@ -{".":"2.18.0"} +{".":"2.19.0"} diff --git a/CHANGELOG.md b/CHANGELOG.md index aa686c44478..9d6d5f65040 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,38 @@ # Changelog +## [2.19.0](https://github.com/scop/bash-completion/compare/2.18.0...2.19.0) (2026-08-13) + + +### Features + +* ***sum:** treat uppercase variant of *sums as checksum file ([941f472](https://github.com/scop/bash-completion/commit/941f4721e4c7f511275f347fd01d56c315236c28)) +* **awless:** add 3rd-party fallback completion loader ([c70b75b](https://github.com/scop/bash-completion/commit/c70b75b8df4f8201e7aa11ccd2e0fbbf7f29cb47)) +* **aws:** add 3rd-party fallback completion loader ([1522dac](https://github.com/scop/bash-completion/commit/1522dacf198c040e15427276bc7a4173e89bdbdb)) +* **curl:** add more option arg (non-)completions ([ee74f36](https://github.com/scop/bash-completion/commit/ee74f36f2d9c57b1f80cc11cb1dcb48223db7081)) +* **dockerfmt:** add fallback 3rd party completion loader ([0f9e255](https://github.com/scop/bash-completion/commit/0f9e255a51505703ae874446457345881454d5dc)) +* **flutter:** add 3rd-party fallback completion loader ([ad988d0](https://github.com/scop/bash-completion/commit/ad988d02626f02abb3f3e2357e86d470edc71086)) +* **go:** add 3rd-party fallback completion loader ([9030f99](https://github.com/scop/bash-completion/commit/9030f992eaf57afa6f90d5f4ad1f99dc6cf21bab)) +* **herdr:** add 3rd-party fallback completion loader ([4097523](https://github.com/scop/bash-completion/commit/40975234ccd0e821d77e49f0458d73ada13e2023)) +* **pandoc:** add fallback 3rd party completion loader ([dbfb252](https://github.com/scop/bash-completion/commit/dbfb2526597b7e7cfd1077f9673c06da8969e956)) +* **pass-cli:** add fallback 3rd party completion loader ([e2848b1](https://github.com/scop/bash-completion/commit/e2848b13f5f22e5155d899572861182fe9407706)) +* **pew:** add 3rd-party fallback completion loader ([906735d](https://github.com/scop/bash-completion/commit/906735d9a4654a36875ef2de8421d1959acd262e)) +* **pipx:** add 3rd-party fallback completion loader ([4ad8970](https://github.com/scop/bash-completion/commit/4ad8970a84f6566a020b54ff58996c6466c63448)) +* **prek:** add fallback 3rd party completion loader ([23361e3](https://github.com/scop/bash-completion/commit/23361e37619ad7ccc8775406ce39ebe8288a4f46)) +* **sudo:** recognize --preserve-env taking an arg ([a33deaa](https://github.com/scop/bash-completion/commit/a33deaae8e394111974f07f174048afc6a5fa2e6)) +* **taplo:** add fallback 3rd party completion loader ([a8f687e](https://github.com/scop/bash-completion/commit/a8f687edf80352d0ff6f3df693f7ed18db4169a2)) +* **topgrade:** add fallback 3rd party completion loader ([c285005](https://github.com/scop/bash-completion/commit/c2850058a2faa0d496eab7fbdd0e3ceaf2f81d1a)) +* **xh:** add 3rd party fallback completion loader ([f5c4c0d](https://github.com/scop/bash-completion/commit/f5c4c0dbb138091c297dfa5094f71ceb774859b2)) +* **zizmor:** add fallback 3rd party completion loader ([864ce41](https://github.com/scop/bash-completion/commit/864ce415280627dc47d61aa4df1b31a32159f4bd)) + + +### Bug Fixes + +* avoid consuming stdin on remote scp/ssh/rsync completion wait ([30f9da8](https://github.com/scop/bash-completion/commit/30f9da8a3bd82dad22f6b271192c55dea7c0336a)) +* **make:** offer phony targets as-is instead of collapsing them ([b29d4ea](https://github.com/scop/bash-completion/commit/b29d4ea18c69439d66c8498ed36f64d0f3437a4a)), closes [#1219](https://github.com/scop/bash-completion/issues/1219) +* **make:** properly skip the "Not a target" block in the helper AWK ([6bb9953](https://github.com/scop/bash-completion/commit/6bb99535d472e5472392729175c3ca009e8a9da2)) +* **scp:** use less remote filename escaping where supported ([d6ad3ce](https://github.com/scop/bash-completion/commit/d6ad3ced9faede3095c1889a156d9041b8b419a2)) +* **sudo:** do not offer completions after --help/--version ([35df24e](https://github.com/scop/bash-completion/commit/35df24e745997d1a8afea2059d19f98e62edbe29)) + ## [2.18.0](https://github.com/scop/bash-completion/compare/2.17.0...2.18.0) (2026-07-05) This release comes with notable changes to the directories used for diff --git a/bash_completion b/bash_completion index 35586606b3f..448f3032f65 100644 --- a/bash_completion +++ b/bash_completion @@ -27,7 +27,7 @@ BASH_COMPLETION_VERSINFO=( 2 # x-release-please-major - 18 # x-release-please-minor + 19 # x-release-please-minor 0 # x-release-please-patch ) diff --git a/configure.ac b/configure.ac index 8aab1b03828..d95dfde4786 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ([2.60]) -AC_INIT([bash-completion], [2.18.0]) dnl x-release-please-version +AC_INIT([bash-completion], [2.19.0]) dnl x-release-please-version dnl tar-pax for portable UTF-8 handling AM_INIT_AUTOMAKE([ foreign dist-xz no-dist-gzip tar-pax -Wall -Wno-portability -Werror diff --git a/version.txt b/version.txt index cf8690732fe..ef0f38abe16 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.18.0 +2.19.0