From 11f5464367d38c2fe6e0ff6ed4282b37763a99dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CNaeel=E2=80=9D?= Date: Wed, 1 Jul 2026 16:01:33 +0400 Subject: [PATCH] =?UTF-8?q?v5.0.72:=20clean=20build=20=E2=80=94=20=3Fendpo?= =?UTF-8?q?int=3D=20+=20TLSNextProto=20+=20rawQuery=20fix?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- TEST_STAND/buck0/main.tf | 2 +- universal_rebuild/internal/core/client.go | 4 ++++ universal_rebuild/main.go | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/TEST_STAND/buck0/main.tf b/TEST_STAND/buck0/main.tf index 78e82da..2466062 100644 --- a/TEST_STAND/buck0/main.tf +++ b/TEST_STAND/buck0/main.tf @@ -2,7 +2,7 @@ terraform { required_providers { nubes = { source = "terra.k8c.ru/nubes-test/nubes" - version = "5.0.71" + version = "5.0.72" } } } diff --git a/universal_rebuild/internal/core/client.go b/universal_rebuild/internal/core/client.go index 8f8a1d4..3840dd3 100644 --- a/universal_rebuild/internal/core/client.go +++ b/universal_rebuild/internal/core/client.go @@ -862,6 +862,10 @@ func (c *UniversalClient) doRequest(ctx context.Context, method, path string, pa fmt.Fprintf(os.Stderr, "\n>>> REQ %s %s\n%s\n", method, path, dump) } + // DEBUG + if os.Getenv("NUBES_DEBUG_HTTP") == "1" { + fmt.Fprintf(os.Stderr, ">>> %s %s\n", method, req.URL.String()) + } resp, err := c.HttpClient.Do(req) if err != nil { lastErr = err diff --git a/universal_rebuild/main.go b/universal_rebuild/main.go index 04a7521..d759ddb 100644 --- a/universal_rebuild/main.go +++ b/universal_rebuild/main.go @@ -10,7 +10,7 @@ import ( ) var ( - version string = "5.0.71" + version string = "5.0.72" ) func main() {