From a434b10bfd67437d337d90d5e65b14b172299c43 Mon Sep 17 00:00:00 2001 From: Donal McBreen Date: Sun, 6 Oct 2024 13:48:00 -0400 Subject: [PATCH] Update to kamal-proxy 0.8.0 Proxy changes: - Add option to use custom TLS certificates (#17) - Don't buffer SSE responses (#36) - Allow routing to wildcard subdomains (#45) Custom TLS certificates not supported in Kamal itself yet. Buffering SSE responses and wildcard subdomains will work without any Kamal changes. --- lib/kamal/configuration.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/kamal/configuration.rb b/lib/kamal/configuration.rb index 6e8799bff..857de9b75 100644 --- a/lib/kamal/configuration.rb +++ b/lib/kamal/configuration.rb @@ -14,7 +14,7 @@ class Kamal::Configuration include Validation - PROXY_MINIMUM_VERSION = "v0.7.0" + PROXY_MINIMUM_VERSION = "v0.8.0" PROXY_HTTP_PORT = 80 PROXY_HTTPS_PORT = 443