From 05a6cd3ef2d17cbd605a92d8ad1a912f8f3972a6 Mon Sep 17 00:00:00 2001 From: Buddy Date: Tue, 2 Sep 2025 13:30:30 -0700 Subject: [PATCH] Bump versions --- dot_local/bin/executable_install-buf | 2 +- dot_local/bin/executable_install-circleci | 2 +- dot_local/bin/executable_install-confluent | 5 ++--- dot_local/bin/executable_install-delta | 19 ++++++++++++++----- dot_local/bin/executable_install-deno | 2 +- dot_local/bin/executable_install-direnv | 2 +- dot_local/bin/executable_install-doctl | 2 +- dot_local/bin/executable_install-dust | 2 +- dot_local/bin/executable_install-fzf | 2 +- dot_local/bin/executable_install-go-swagger | 2 +- .../bin/executable_install-golangci-lint | 2 +- dot_local/bin/executable_install-jira | 15 ++++++++++++++- dot_local/bin/executable_install-lego-home | 2 +- dot_local/bin/executable_install-lego-system | 2 +- dot_local/bin/executable_install-procs | 12 ++++++++++-- ...otoc-gen-grpc-gateway-protoc-gen-openapiv2 | 2 +- dot_local/bin/executable_install-staticcheck | 3 ++- dot_local/bin/executable_install-templ | 2 +- 18 files changed, 55 insertions(+), 25 deletions(-) mode change 100755 => 100644 dot_local/bin/executable_install-lego-home diff --git a/dot_local/bin/executable_install-buf b/dot_local/bin/executable_install-buf index d43969c..3762839 100755 --- a/dot_local/bin/executable_install-buf +++ b/dot_local/bin/executable_install-buf @@ -5,7 +5,7 @@ set -euo pipefail # shellcheck disable=SC1090 source "${XDG_DATA_HOME}/buddy-up/includes/utils.sh" -VERSION=${VERSION:-v1.47.2} +VERSION=${VERSION:-v1.57.0} DEST=${XDG_DATA_HOME}/apps/releases/buf CURRENT=${DEST}/current URL=https://github.com/bufbuild/buf/releases/download/${VERSION}/buf-$(uname)-$(uname -m).tar.gz diff --git a/dot_local/bin/executable_install-circleci b/dot_local/bin/executable_install-circleci index ad28054..dc113b2 100755 --- a/dot_local/bin/executable_install-circleci +++ b/dot_local/bin/executable_install-circleci @@ -4,7 +4,7 @@ source "${XDG_DATA_HOME}/buddy-up/includes/utils.sh" APP=circleci -VERSION=${VERSION:-0.1.30549} +VERSION=${VERSION:-0.1.33163} DEST=${XDG_DATA_HOME}/apps/releases/${APP} URL=https://github.com/CircleCI-Public/circleci-cli/releases/download/v${VERSION}/circleci-cli_${VERSION}_$(get_os)_$(get_arch).tar.gz diff --git a/dot_local/bin/executable_install-confluent b/dot_local/bin/executable_install-confluent index d81f5a2..9e83983 100755 --- a/dot_local/bin/executable_install-confluent +++ b/dot_local/bin/executable_install-confluent @@ -6,12 +6,11 @@ set -euo pipefail source "${XDG_DATA_HOME}/buddy-up/includes/utils.sh" APP=confluent -VERSION=${VERSION:-3.64.3} +VERSION=${VERSION:-4.36.0} DEST=${XDG_DATA_HOME}/apps/releases/${APP} +URL=https://github.com/confluentinc/cli/releases/download/v${VERSION}/confluent_${VERSION}_$(get_os)_$(get_arch).tar.gz main() ( - URL=https://github.com/confluentinc/cli/releases/download/v${VERSION}/confluent_${VERSION}_$(get_os)_$(get_arch).tar.gz - extract_tarball "${URL}" "${DEST}/${VERSION}" "--strip-components 1" set_current_link "${DEST}" "${VERSION}" set_link "${XDG_BIN_HOME}/${APP}" "${DEST}" "${APP}" diff --git a/dot_local/bin/executable_install-delta b/dot_local/bin/executable_install-delta index 4a492a7..ba528ab 100755 --- a/dot_local/bin/executable_install-delta +++ b/dot_local/bin/executable_install-delta @@ -5,23 +5,32 @@ set -euo pipefail # shellcheck disable=SC1091 source "${XDG_DATA_HOME}/buddy-up/includes/utils.sh" -APP="delta" -VERSION=${VERSION:-0.17.0} +APP=delta +VERSION=${VERSION:-0.18.2} DEST=${XDG_DATA_HOME}/apps/releases/${APP} main() ( - URL=https://github.com/dandavison/delta/releases/download/${VERSION}/delta-${VERSION}-$(uname -m)-$(get_os).tar.gz + URL=https://github.com/dandavison/delta/releases/download/${VERSION}/delta-${VERSION}-$(get_arch)-$(get_os).tar.gz + extract_tarball "${URL}" "${DEST}/${VERSION}" "--strip-component 1" set_current_link "${DEST}" "${VERSION}" set_link "${XDG_BIN_HOME}/${APP}" "${DEST}" "${APP}" ) -function get_os () { +get_arch () ( + UNAME_M=$(uname -m) + case "${UNAME_M}" in + arm64*) echo aarch64;; + *) echo "${UNAME_M}" + esac +) + +get_os () ( case $(uname -s) in Linux*) echo unknown-linux-gnu;; Darwin*) echo apple-darwin;; *) >&2 echo "unsupported os: $(uname -s)"; exit 1;; esac -} +) main "${@}" diff --git a/dot_local/bin/executable_install-deno b/dot_local/bin/executable_install-deno index 9f99116..54df5ee 100755 --- a/dot_local/bin/executable_install-deno +++ b/dot_local/bin/executable_install-deno @@ -16,7 +16,7 @@ function get_os () ( APP=deno -VERSION=${VERSION:-2.0.6} +VERSION=${VERSION:-2.4.5} DEST=${XDG_DATA_HOME}/apps/releases/${APP} URL=https://github.com/denoland/deno/releases/download/v${VERSION}/deno-$(uname -m)-$(get_os).zip diff --git a/dot_local/bin/executable_install-direnv b/dot_local/bin/executable_install-direnv index 93ad372..4abf7c0 100755 --- a/dot_local/bin/executable_install-direnv +++ b/dot_local/bin/executable_install-direnv @@ -4,7 +4,7 @@ source "${XDG_DATA_HOME}/buddy-up/includes/utils.sh" APP=direnv -VERSION=${VERSION:-2.34.0} +VERSION=${VERSION:-2.37.1} DEST="${XDG_DATA_HOME}/apps/releases/${APP}" URL=https://github.com/direnv/direnv/releases/download/v${VERSION}/direnv.$(get_os)-$(get_arch) diff --git a/dot_local/bin/executable_install-doctl b/dot_local/bin/executable_install-doctl index cb10d41..25624bf 100755 --- a/dot_local/bin/executable_install-doctl +++ b/dot_local/bin/executable_install-doctl @@ -6,7 +6,7 @@ set -euo pipefail source "${XDG_DATA_HOME}/buddy-up/includes/utils.sh" APP=doctl -VERSION=${VERSION:-1.106.0} +VERSION=${VERSION:-1.141.0} DEST=${XDG_DATA_HOME}/apps/releases/${APP} main() ( diff --git a/dot_local/bin/executable_install-dust b/dot_local/bin/executable_install-dust index d796d49..5b4b978 100755 --- a/dot_local/bin/executable_install-dust +++ b/dot_local/bin/executable_install-dust @@ -6,7 +6,7 @@ set -euo pipefail source "${XDG_DATA_HOME}/buddy-up/includes/utils.sh" APP=dust -VERSION=${VERSION:-1.1.1} +VERSION=${VERSION:-1.2.3} DEST=${XDG_DATA_HOME}/apps/releases/${APP} main() ( diff --git a/dot_local/bin/executable_install-fzf b/dot_local/bin/executable_install-fzf index b1c3deb..165fc55 100644 --- a/dot_local/bin/executable_install-fzf +++ b/dot_local/bin/executable_install-fzf @@ -3,7 +3,7 @@ source "${XDG_DATA_HOME}/buddy-up/includes/utils.sh" APP=fzf -VERSION=${VERSION:-0.59.0} +VERSION=${VERSION:-0.65.2} DEST=${XDG_DATA_HOME}/apps/releases/${APP} URL=https://github.com/junegunn/fzf/releases/download/v${VERSION}/fzf-${VERSION}-$(get_os)_$(get_arch).tar.gz diff --git a/dot_local/bin/executable_install-go-swagger b/dot_local/bin/executable_install-go-swagger index 65d70b9..ba594c3 100755 --- a/dot_local/bin/executable_install-go-swagger +++ b/dot_local/bin/executable_install-go-swagger @@ -6,7 +6,7 @@ set -e source "${XDG_DATA_HOME}/buddy-up/includes/utils.sh" APP=swagger -VERSION=${VERSION:-0.31.0} +VERSION=${VERSION:-0.32.3} DEST=${XDG_DATA_HOME}/apps/releases/go-swagger URL=https://github.com/go-swagger/go-swagger/releases/download/v${VERSION}/swagger_$(get_os)_$(get_arch) diff --git a/dot_local/bin/executable_install-golangci-lint b/dot_local/bin/executable_install-golangci-lint index cabed1d..d2d3987 100755 --- a/dot_local/bin/executable_install-golangci-lint +++ b/dot_local/bin/executable_install-golangci-lint @@ -6,7 +6,7 @@ set -euo pipefail source "${XDG_DATA_HOME}/buddy-up/includes/utils.sh" APP=golangci-lint -VERSION=${VERSION:-1.64.5} +VERSION=${VERSION:-2.4.0} DEST="${XDG_DATA_HOME}/apps/releases/${APP}" URL=https://github.com/golangci/golangci-lint/releases/download/v${VERSION}/golangci-lint-${VERSION}-$(get_os)-$(get_arch).tar.gz diff --git a/dot_local/bin/executable_install-jira b/dot_local/bin/executable_install-jira index 2849797..11b1a93 100755 --- a/dot_local/bin/executable_install-jira +++ b/dot_local/bin/executable_install-jira @@ -6,7 +6,7 @@ set -euo pipefail source "${XDG_DATA_HOME}/buddy-up/includes/utils.sh" APP=jira -VERSION=${VERSION:-1.5.1} +VERSION=${VERSION:-1.7.0} DEST=${XDG_DATA_HOME}/apps/releases/${APP} main() ( @@ -17,4 +17,17 @@ main() ( set_link "${XDG_BIN_HOME}/${APP}" "${DEST}" "bin/${APP}" ) +get_os() ( + case $(uname -s) in + Linux*) echo linux ;; + Darwin*) echo macOS ;; + Windows_NT*) echo windows ;; + CYGWIN_NT*) echo windows ;; + *) + echo >&2 "unsupported os" + exit 1 + ;; + esac +) + main "${@}" diff --git a/dot_local/bin/executable_install-lego-home b/dot_local/bin/executable_install-lego-home old mode 100755 new mode 100644 index 2c392e6..8a3f6ff --- a/dot_local/bin/executable_install-lego-home +++ b/dot_local/bin/executable_install-lego-home @@ -6,7 +6,7 @@ set -euo pipefail source "${XDG_DATA_HOME}/buddy-up/includes/utils.sh" APP=lego -VERSION=${VERSION:-v4.17.4} +VERSION=${VERSION:-v4.25.2} DEST=${XDG_DATA_HOME}/apps/releases/${APP} URL=https://github.com/go-acme/lego/releases/download/${VERSION}/lego_${VERSION}_$(get_os)_$(get_arch).tar.gz diff --git a/dot_local/bin/executable_install-lego-system b/dot_local/bin/executable_install-lego-system index 339794f..d73ce84 100755 --- a/dot_local/bin/executable_install-lego-system +++ b/dot_local/bin/executable_install-lego-system @@ -6,7 +6,7 @@ set -euo pipefail source "${XDG_DATA_HOME}/buddy-up/includes/utils.sh" APP=lego -VERSION=${VERSION:-v4.17.4} +VERSION=${VERSION:-v4.25.2} APPS_DIR=/usr/local/apps/${APP} URL=https://github.com/go-acme/lego/releases/download/${VERSION}/lego_${VERSION}_$(get_os)_$(get_arch).tar.gz diff --git a/dot_local/bin/executable_install-procs b/dot_local/bin/executable_install-procs index 32e3f2b..71a1b18 100755 --- a/dot_local/bin/executable_install-procs +++ b/dot_local/bin/executable_install-procs @@ -6,17 +6,25 @@ set -euo pipefail source "${XDG_DATA_HOME}/buddy-up/includes/utils.sh" APP=procs -VERSION=${VERSION:-0.14.5} +VERSION=${VERSION:-0.14.10} DEST=${XDG_DATA_HOME}/apps/releases/${APP} main() ( - URL=https://github.com/dalance/procs/releases/download/v${VERSION}/procs-v${VERSION}-$(uname -m)-$(get_os).zip + URL=https://github.com/dalance/procs/releases/download/v${VERSION}/procs-v${VERSION}-$(get_arch)-$(get_os).zip extract_zip "${URL}" "${DEST}/${VERSION}" set_current_link "${DEST}" "${VERSION}" set_link "${XDG_BIN_HOME}/${APP}" "${DEST}" "${APP}" ) +get_arch () ( + UNAME_M=$(uname -m) + case "${UNAME_M}" in + arm64*) echo aarch64;; + *) echo "${UNAME_M}" + esac +) + get_os() ( case $(uname -s) in Linux*) echo linux ;; diff --git a/dot_local/bin/executable_install-protoc-gen-grpc-gateway-protoc-gen-openapiv2 b/dot_local/bin/executable_install-protoc-gen-grpc-gateway-protoc-gen-openapiv2 index 8876122..5800f8c 100755 --- a/dot_local/bin/executable_install-protoc-gen-grpc-gateway-protoc-gen-openapiv2 +++ b/dot_local/bin/executable_install-protoc-gen-grpc-gateway-protoc-gen-openapiv2 @@ -5,7 +5,7 @@ set -euo pipefail # shellcheck disable=SC1090 source "${XDG_DATA_HOME}/buddy-up/includes/utils.sh" -VERSION=${VERSION:-2.25.1} +VERSION=${VERSION:-2.27.2} DEST=${XDG_DATA_HOME}/apps/releases/protoc-grpc-gateway BASE_URL=https://github.com/grpc-ecosystem/grpc-gateway/releases/download/v${VERSION} GRPC_GATEWAY_URL=${BASE_URL}/protoc-gen-grpc-gateway-v${VERSION}-$(get_os)-$(uname -m) diff --git a/dot_local/bin/executable_install-staticcheck b/dot_local/bin/executable_install-staticcheck index ff75ce5..cb4ab74 100755 --- a/dot_local/bin/executable_install-staticcheck +++ b/dot_local/bin/executable_install-staticcheck @@ -5,8 +5,9 @@ set -e # shellcheck disable=SC1090 source "${XDG_DATA_HOME}/buddy-up/includes/utils.sh" + APP=staticcheck -VERSION=${VERSION:-2023.1.7} +VERSION=${VERSION:-2025.1.1} DEST=${XDG_DATA_HOME}/apps/releases/${APP} URL=https://github.com/dominikh/go-tools/releases/download/${VERSION}/staticcheck_$(get_os)_$(get_arch).tar.gz diff --git a/dot_local/bin/executable_install-templ b/dot_local/bin/executable_install-templ index a0d076f..fe2716f 100755 --- a/dot_local/bin/executable_install-templ +++ b/dot_local/bin/executable_install-templ @@ -6,7 +6,7 @@ set -euo pipefail source "${XDG_DATA_HOME}/buddy-up/includes/utils.sh" APP=templ -VERSION=${VERSION:-v0.3.819} +VERSION=${VERSION:-v0.3.943} DEST=${XDG_DATA_HOME}/apps/releases/${APP} URL=https://github.com/a-h/templ/releases/download/${VERSION}/templ_$(uname)_$(uname -m).tar.gz