diff --git a/docusaurus/data/version.yml b/docusaurus/data/version.yml index 3b49d87..addc807 100644 --- a/docusaurus/data/version.yml +++ b/docusaurus/data/version.yml @@ -2,7 +2,7 @@ # This file is automatically updated by GitHub Actions # Do not manually edit this file -version: "0.0.23" +version: "0.0.25" lastUpdated: "2025-10-13" buildNumber: "202510131527" gitCommit: "69e29fd" diff --git a/go/shim/main.go b/go/shim/main.go index f7ed0f0..6a7906a 100644 --- a/go/shim/main.go +++ b/go/shim/main.go @@ -553,6 +553,10 @@ func helm_sdkpy_upgrade(handle C.helm_sdkpy_handle, release_name *C.char, chart_ client := action.NewUpgrade(state.cfg) client.Namespace = state.envs.Namespace() + // Disable server-side apply to avoid field ownership conflicts + // Valid values: "auto", "true", "false" + client.ServerSideApply = "false" + // Set wait strategy client.WaitStrategy = kube.HookOnlyStrategy diff --git a/pyproject.toml b/pyproject.toml index 2ec286d..a96bf01 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "helm-sdkpy" -version = "0.0.23" +version = "0.0.25" description = "Python bindings for Helm - The Kubernetes Package Manager" readme = "README.md" requires-python = ">=3.12" diff --git a/uv.lock b/uv.lock index 13f2d80..6b837e7 100644 --- a/uv.lock +++ b/uv.lock @@ -153,7 +153,7 @@ wheels = [ [[package]] name = "helm-sdkpy" -version = "0.0.23" +version = "0.0.25" source = { editable = "." } dependencies = [ { name = "cffi" },