v5.0.72: clean build — ?endpoint= + TLSNextProto + rawQuery fix

This commit is contained in:
“Naeel”
2026-07-01 16:01:33 +04:00
parent f2d2b02e45
commit 11f5464367
3 changed files with 6 additions and 2 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ terraform {
required_providers {
nubes = {
source = "terra.k8c.ru/nubes-test/nubes"
version = "5.0.71"
version = "5.0.72"
}
}
}
@@ -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
+1 -1
View File
@@ -10,7 +10,7 @@ import (
)
var (
version string = "5.0.71"
version string = "5.0.72"
)
func main() {