From 28ade1941937283f918a6f54ac43a1fb7b10f07d Mon Sep 17 00:00:00 2001 From: Yusuke Kuoka Date: Fri, 23 Apr 2021 09:53:52 +0900 Subject: [PATCH] Bump chartify to 0.8.2 (#1793) * Bump chartify to 0.8.2 This version fixes charitfy not to fail when you used the combination of (1)helm 3 and (2)strategicMergePatches/jsonPatches/transformers etc that triggers chartify on (3)a chart that contains CRDs. See https://github.com/roboll/helmfile/issues/1778#issuecomment-824451990 for details of the issue. The chartify-side of this fix is https://github.com/variantdev/chartify/commit/55b23f9e9d43ae1105a536a659fa35f004806b2a Fixes #1778 --- go.mod | 2 +- go.sum | 2 ++ .../v2/helmx/{patched.yaml => patched_resources.yaml} | 0 .../v3/helmx/{patched.yaml => patched_resources.yaml} | 0 4 files changed, 3 insertions(+), 1 deletion(-) rename test/integration/templates-golden/v2/helmx/{patched.yaml => patched_resources.yaml} (100%) rename test/integration/templates-golden/v3/helmx/{patched.yaml => patched_resources.yaml} (100%) diff --git a/go.mod b/go.mod index ca5947df..0bb82777 100644 --- a/go.mod +++ b/go.mod @@ -28,7 +28,7 @@ require ( github.com/spf13/cobra v1.1.1 github.com/tatsushid/go-prettytable v0.0.0-20141013043238-ed2d14c29939 github.com/urfave/cli v1.22.5 - github.com/variantdev/chartify v0.8.1 + github.com/variantdev/chartify v0.8.2 github.com/variantdev/dag v1.0.0 github.com/variantdev/vals v0.13.0 go.uber.org/multierr v1.6.0 diff --git a/go.sum b/go.sum index 47077b08..e1e4f713 100644 --- a/go.sum +++ b/go.sum @@ -585,6 +585,8 @@ github.com/variantdev/chartify v0.8.0 h1:yIBsS/dIUeMjWP8U6JWlT3PM0Lky7en9QBi+MgD github.com/variantdev/chartify v0.8.0/go.mod h1:qF4XzQlkfH/6k2jAi1hLas+lK4zSCa8kY+r5JdmLA68= github.com/variantdev/chartify v0.8.1 h1:LNW3QjwikyqGK8NQ+qivNvfZ9WLeWB8wZVk+R7OeDDs= github.com/variantdev/chartify v0.8.1/go.mod h1:qF4XzQlkfH/6k2jAi1hLas+lK4zSCa8kY+r5JdmLA68= +github.com/variantdev/chartify v0.8.2 h1:g+BjSvz7LoUH130PO67HwBS5emkzdccJ9tizyQNUy5E= +github.com/variantdev/chartify v0.8.2/go.mod h1:qF4XzQlkfH/6k2jAi1hLas+lK4zSCa8kY+r5JdmLA68= github.com/variantdev/dag v0.0.0-20191028002400-bb0b3c785363 h1:KrfQBEUn+wEOQ/6UIfoqRDvn+Q/wZridQ7t0G1vQqKE= github.com/variantdev/dag v0.0.0-20191028002400-bb0b3c785363/go.mod h1:pH1TQsNSLj2uxMo9NNl9zdGy01Wtn+/2MT96BrKmVyE= github.com/variantdev/dag v1.0.0 h1:7SFjATxHtrYV20P3tx53yNDBMegz6RT4jv8JPHqAHdM= diff --git a/test/integration/templates-golden/v2/helmx/patched.yaml b/test/integration/templates-golden/v2/helmx/patched_resources.yaml similarity index 100% rename from test/integration/templates-golden/v2/helmx/patched.yaml rename to test/integration/templates-golden/v2/helmx/patched_resources.yaml diff --git a/test/integration/templates-golden/v3/helmx/patched.yaml b/test/integration/templates-golden/v3/helmx/patched_resources.yaml similarity index 100% rename from test/integration/templates-golden/v3/helmx/patched.yaml rename to test/integration/templates-golden/v3/helmx/patched_resources.yaml