From 384b2334224b6f6599d91963f9a424b290ed58d5 Mon Sep 17 00:00:00 2001 From: Szymon Osiecki Date: Fri, 8 May 2026 14:10:39 +0200 Subject: [PATCH 1/2] chore: update deprecated native-tls uv settings --- .assets/provision/install_azurecli_uv.sh | 2 +- .assets/provision/install_uv.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.assets/provision/install_azurecli_uv.sh b/.assets/provision/install_azurecli_uv.sh index e991a42f..4928e100 100755 --- a/.assets/provision/install_azurecli_uv.sh +++ b/.assets/provision/install_azurecli_uv.sh @@ -45,7 +45,7 @@ dependencies = [ [tool.uv] compile-bytecode = true -native-tls = true +system-certs = true prerelease = "allow" EOF diff --git a/.assets/provision/install_uv.sh b/.assets/provision/install_uv.sh index 29351783..03b3b711 100755 --- a/.assets/provision/install_uv.sh +++ b/.assets/provision/install_uv.sh @@ -38,7 +38,7 @@ if [ -x "$HOME/.local/bin/uv" ]; then retry_count=0 max_retries=5 while [ $retry_count -le $max_retries ]; do - $HOME/.local/bin/uv self update --native-tls >&2 + $HOME/.local/bin/uv self update --system-certs >&2 [ $? -eq 0 ] && break || true ((retry_count++)) || true echo "retrying... $retry_count/$max_retries" >&2 From 2e0096e3bad0253cd3e7f05795cf851a371d0224 Mon Sep 17 00:00:00 2001 From: Szymon Osiecki Date: Fri, 22 May 2026 16:22:14 +0200 Subject: [PATCH 2/2] chore: bump dependencies --- .pre-commit-config.yaml | 2 +- Makefile | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index bb00284b..11313963 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -40,7 +40,7 @@ repos: - id: trailing-whitespace exclude: \.md$ - repo: https://github.com/DavidAnson/markdownlint-cli2 - rev: v0.22.0 + rev: v0.22.1 hooks: - id: markdownlint-cli2 files: \.md$ diff --git a/Makefile b/Makefile index 6d9f827d..31179df2 100644 --- a/Makefile +++ b/Makefile @@ -23,7 +23,6 @@ install: ## Install pre-commit hooks prek install --overwrite upgrade: ## Upgrade prek and hooks versions @printf "\n✅ All dependencies upgraded\n\n" - prek self update prek auto-update .PHONY: hooks