Skip to content

Update module sigs.k8s.io/kustomize/kustomize/v5 to v5.8.1#125

Open
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/sigs.k8s.io-kustomize-kustomize-v5-5.x
Open

Update module sigs.k8s.io/kustomize/kustomize/v5 to v5.8.1#125
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/sigs.k8s.io-kustomize-kustomize-v5-5.x

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Mar 14, 2023

This PR contains the following updates:

Package Change Age Confidence
sigs.k8s.io/kustomize/kustomize/v5 v5.0.0v5.8.1 age confidence

Release Notes

kubernetes-sigs/kustomize (sigs.k8s.io/kustomize/kustomize/v5)

v5.8.1

Introduction

This release completes a fix for namespace propagation that occurred in v5.8.0. #​6031 (comment)
Also addressed the breaking changes introduced in helm v4. #​6016

fix

#​5990: fix: allow empty patches files
#​6016: fix: support helm v4 beside v3
#​6038: Fix a failing test
#​6044: Fix namespace propagation problem at v5.8.0

Dependencies

#​6057: Upgrade json-patch to v4.13.0 to remove pkg/errors dependency

chore

#​6065: Update kyaml to v0.21.1
#​6066: Update cmd/config to v0.21.1
#​6067: Update api to v0.21.1

v5.8.0

IMPORTANT NOTICE: REGRESSION

Due to the new features introduced in this release, a regression has occurred in the functionality that propagates namespaces to child kustomizations.
We are currently preparing a patch release, so please refrain from making changes to this version.

#​6031 (comment)

Highlights

implements to replacements value in the structured data

Now, We can edit yaml/json in yaml manifests with replacements transformer.
See #​5679

For example
## source
apiVersion: v1
kind: ConfigMap
metadata:
  name: source-configmap
data:
  HOSTNAME: www.example.com
---
apiVersion: v1
kind: ConfigMap
metadata:
  name: target-configmap
data:
  config.json: |-
    {"config": {
      "id": "42",
      "hostname": "REPLACE_TARGET_HOSTNAME"
    }}
## replacement
replacements:
- source:
    kind: ConfigMap
    name: source-configmap
    fieldPath: data.HOSTNAME
  targets:
  - select:
      kind: ConfigMap
      name: target-configmap
    fieldPaths:
    - data.config\.json.config.hostname
fix: Propagate Namespace correctly to Helm

The long-standing bug where kustomize's namespace transformer did not pass namespaces to helmCharts has been fixed.
See #​5940

For example
## define namespace
namespace: any-namespace

helmCharts:
- name: minecraft
  repo: https://kubernetes-charts.storage.googleapis.com
  version: v1.2.0
  # namespace: any-namespace   ## propagates without additional namespace specific
  valuesFile: values.yaml

Feature

#​5679: implements to replacements value in the structured data
#​5863: Add regex support for Replacement selectors
#​5930: feat: add PatchArgs API type to populate patch options

fix

#​5940: fix: Propagate Namespace correctly to Helm
#​5971: fix: performance recession when propagating namespace to helm
#​5942: fix fnplugin storagemounts validation
#​5958: fix: make AbsorbAll conflict error more verbose
#​5961: refactor: nested format string
#​5967: Fix infinite loop in HTTP client by validating URLs before requests
#​5985: fix(kyaml/yaml): minor nil safety fix for RNode.Content etc
#​5991: Fix duplicate key error when adding multiple labels with --without-selector

Dependencies

#​5962: chore: update dependencies from security alert
#​5959: update go 1.24.6

chore

#​6007: Update kyaml to v0.21.0
#​6008: Update cmd/config to v0.21.0
#​6009: Update api to v0.21.0

v5.7.1

This release introduces code to replace the shlex library used for parsing arguments in the exec plugin.
If any existing manifests become corrupted, please file an issue. discussion: kubernetes/kubernetes#132593 (comment)

Dependencies

#​5943: drop shlex dependency

Chore

#​5948: Update kyaml to v0.20.1
#​5949: Update cmd/config to v0.20.1
#​5950: Update api to v0.20.1

v5.7.0

Feature

#​5630: Add static value source for replacement
#​5921: feat: Add images suport for Image Volumes
#​5771: fix: Allow patches with empty files with multiple newlines or comments
#​5865: feat(helm): allow the use of devel alias for helmcharts

fix

#​5846: fix: Get version from the BuildInfo.Main.Version if not found in deps and build flag
#​5859: fix: Don't panic on multiple $patch: delete strategic merge patches in a single patch file
#​5877: fix: make private one field in replacements transformer struct that had a missing JSON tag

Dependencies

#​5847: replace deplecated package github.com/google/shlex with github.com/carapace-sh/carapace-shlex
#​5873: Bump to github.com/spf13/viper v1.20.0
#​5931: Drop usage of forked copies of goyaml.v2 and goyaml.v3

chore

#​5882: Set Git messages to English for TestRemoteLoad_LocalProtocol
#​5934: Update kyaml to v0.20.0
#​5935: Update cmd/config to v0.20.0
#​5936: Update api to v0.20.0


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot added the dependency label Mar 14, 2023
@renovate renovate Bot force-pushed the renovate/sigs.k8s.io-kustomize-kustomize-v5-5.x branch from 0fc2c37 to 26a3e0a Compare March 24, 2023 22:49
@renovate renovate Bot force-pushed the renovate/sigs.k8s.io-kustomize-kustomize-v5-5.x branch from 26a3e0a to ff53e2e Compare April 20, 2023 05:52
@renovate renovate Bot requested a review from a team as a code owner April 20, 2023 05:52
@renovate renovate Bot force-pushed the renovate/sigs.k8s.io-kustomize-kustomize-v5-5.x branch 2 times, most recently from a56d16b to 496f790 Compare May 5, 2023 22:39
@renovate renovate Bot changed the title Update module sigs.k8s.io/kustomize/kustomize/v5 to v5.0.1 Update module sigs.k8s.io/kustomize/kustomize/v5 to v5.0.2 May 5, 2023
@renovate renovate Bot changed the title Update module sigs.k8s.io/kustomize/kustomize/v5 to v5.0.2 Update module sigs.k8s.io/kustomize/kustomize/v5 to v5.0.3 May 9, 2023
@renovate renovate Bot force-pushed the renovate/sigs.k8s.io-kustomize-kustomize-v5-5.x branch from 496f790 to 05c599f Compare May 28, 2023 05:36
@renovate renovate Bot force-pushed the renovate/sigs.k8s.io-kustomize-kustomize-v5-5.x branch from 05c599f to 85c0665 Compare June 19, 2023 19:20
@renovate renovate Bot changed the title Update module sigs.k8s.io/kustomize/kustomize/v5 to v5.0.3 Update module sigs.k8s.io/kustomize/kustomize/v5 to v5.1.0 Jun 19, 2023
@renovate renovate Bot force-pushed the renovate/sigs.k8s.io-kustomize-kustomize-v5-5.x branch from 85c0665 to bdf099a Compare July 31, 2023 19:56
@renovate renovate Bot changed the title Update module sigs.k8s.io/kustomize/kustomize/v5 to v5.1.0 Update module sigs.k8s.io/kustomize/kustomize/v5 to v5.1.1 Jul 31, 2023
@renovate renovate Bot force-pushed the renovate/sigs.k8s.io-kustomize-kustomize-v5-5.x branch from bdf099a to e348039 Compare October 19, 2023 21:14
@renovate renovate Bot changed the title Update module sigs.k8s.io/kustomize/kustomize/v5 to v5.1.1 Update module sigs.k8s.io/kustomize/kustomize/v5 to v5.2.1 Oct 19, 2023
@renovate renovate Bot force-pushed the renovate/sigs.k8s.io-kustomize-kustomize-v5-5.x branch 6 times, most recently from 70184cb to 61bf580 Compare November 29, 2023 14:28
@renovate renovate Bot force-pushed the renovate/sigs.k8s.io-kustomize-kustomize-v5-5.x branch from 61bf580 to 44e28e5 Compare December 7, 2023 12:46
@renovate renovate Bot changed the title Update module sigs.k8s.io/kustomize/kustomize/v5 to v5.2.1 Update module sigs.k8s.io/kustomize/kustomize/v5 to v5.3.0 Dec 7, 2023
@renovate renovate Bot force-pushed the renovate/sigs.k8s.io-kustomize-kustomize-v5-5.x branch from 44e28e5 to e07441e Compare December 19, 2023 10:53
@renovate renovate Bot force-pushed the renovate/sigs.k8s.io-kustomize-kustomize-v5-5.x branch from e07441e to 1ef863b Compare April 4, 2024 16:11
@renovate renovate Bot changed the title Update module sigs.k8s.io/kustomize/kustomize/v5 to v5.3.0 Update module sigs.k8s.io/kustomize/kustomize/v5 to v5.4.0 Apr 4, 2024
@renovate renovate Bot changed the title Update module sigs.k8s.io/kustomize/kustomize/v5 to v5.4.0 Update module sigs.k8s.io/kustomize/kustomize/v5 to v5.4.1 Apr 4, 2024
@renovate renovate Bot force-pushed the renovate/sigs.k8s.io-kustomize-kustomize-v5-5.x branch from 1ef863b to 2a5d7b5 Compare April 4, 2024 18:19
@renovate renovate Bot force-pushed the renovate/sigs.k8s.io-kustomize-kustomize-v5-5.x branch from 2a5d7b5 to 126a4b9 Compare May 9, 2024 10:11
@renovate renovate Bot force-pushed the renovate/sigs.k8s.io-kustomize-kustomize-v5-5.x branch from 126a4b9 to 27af271 Compare May 22, 2024 19:02
@renovate renovate Bot changed the title Update module sigs.k8s.io/kustomize/kustomize/v5 to v5.4.1 Update module sigs.k8s.io/kustomize/kustomize/v5 to v5.4.2 May 22, 2024
@renovate
Copy link
Copy Markdown
Contributor Author

renovate Bot commented Jun 4, 2024

ℹ Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 28 additional dependencies were updated
  • The go directive was updated for compatibility reasons

Details:

Package Change
go 1.20 -> 1.24.0
github.com/google/uuid v1.4.0 -> v1.6.0
github.com/spf13/cobra v1.8.0 -> v1.9.1
github.com/stretchr/testify v1.8.4 -> v1.10.0
k8s.io/klog/v2 v2.110.1 -> v2.130.1
github.com/emicklei/go-restful/v3 v3.10.1 -> v3.11.0
github.com/go-logr/logr v1.3.0 -> v1.4.2
github.com/go-openapi/jsonpointer v0.19.6 -> v0.21.0
github.com/go-openapi/jsonreference v0.20.1 -> v0.20.2
github.com/go-openapi/swag v0.22.3 -> v0.23.0
github.com/google/go-cmp v0.5.9 -> v0.7.0
github.com/spf13/pflag v1.0.5 -> v1.0.6
github.com/xlab/treeprint v1.1.0 -> v1.2.0
golang.org/x/crypto v0.14.0 -> v0.40.0
golang.org/x/mod v0.11.0 -> v0.26.0
golang.org/x/net v0.17.0 -> v0.42.0
golang.org/x/sync v0.3.0 -> v0.16.0
golang.org/x/sys v0.13.0 -> v0.35.0
golang.org/x/term v0.13.0 -> v0.33.0
golang.org/x/text v0.13.0 -> v0.28.0
golang.org/x/tools v0.6.0 -> v0.35.0
google.golang.org/protobuf v1.31.0 -> v1.36.5
k8s.io/kube-openapi v0.0.0-20230109183929-3758b55a6596 -> v0.0.0-20241212222426-2c72e554b1e7
k8s.io/utils v0.0.0-20231127182322-b307cd553661 -> v0.0.0-20240711033017-18e509b52bc8
sigs.k8s.io/kustomize/api v0.13.1 -> v0.21.0
sigs.k8s.io/kustomize/cmd/config v0.11.0 -> v0.21.0
sigs.k8s.io/kustomize/kyaml v0.14.0 -> v0.21.0
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 -> v4.4.2
sigs.k8s.io/yaml v1.4.0 -> v1.5.0

@renovate renovate Bot force-pushed the renovate/sigs.k8s.io-kustomize-kustomize-v5-5.x branch from 27af271 to cdf28f0 Compare June 4, 2024 11:05
@renovate renovate Bot force-pushed the renovate/sigs.k8s.io-kustomize-kustomize-v5-5.x branch from cdf28f0 to fdb09ea Compare June 17, 2024 16:43
@renovate renovate Bot force-pushed the renovate/sigs.k8s.io-kustomize-kustomize-v5-5.x branch from fdb09ea to a29915f Compare July 12, 2024 15:56
@renovate renovate Bot force-pushed the renovate/sigs.k8s.io-kustomize-kustomize-v5-5.x branch from a29915f to 9a38e09 Compare July 19, 2024 18:27
@renovate renovate Bot changed the title Update module sigs.k8s.io/kustomize/kustomize/v5 to v5.4.2 Update module sigs.k8s.io/kustomize/kustomize/v5 to v5.4.3 Jul 19, 2024
@renovate renovate Bot force-pushed the renovate/sigs.k8s.io-kustomize-kustomize-v5-5.x branch from 9a38e09 to 2d6fe71 Compare September 11, 2024 15:13
@renovate renovate Bot force-pushed the renovate/sigs.k8s.io-kustomize-kustomize-v5-5.x branch from 2d6fe71 to edcfa1b Compare October 9, 2024 15:37
@renovate renovate Bot changed the title Update module sigs.k8s.io/kustomize/kustomize/v5 to v5.4.3 Update module sigs.k8s.io/kustomize/kustomize/v5 to v5.5.0 Oct 9, 2024
@renovate renovate Bot force-pushed the renovate/sigs.k8s.io-kustomize-kustomize-v5-5.x branch from edcfa1b to 6c00460 Compare November 17, 2024 15:03
@renovate renovate Bot force-pushed the renovate/sigs.k8s.io-kustomize-kustomize-v5-5.x branch from 6c00460 to 6a82cde Compare December 22, 2024 17:12
@renovate renovate Bot force-pushed the renovate/sigs.k8s.io-kustomize-kustomize-v5-5.x branch from 6a82cde to 1f5c6b6 Compare January 14, 2025 19:08
@renovate renovate Bot changed the title Update module sigs.k8s.io/kustomize/kustomize/v5 to v5.5.0 Update module sigs.k8s.io/kustomize/kustomize/v5 to v5.6.0 Jan 14, 2025
@renovate renovate Bot force-pushed the renovate/sigs.k8s.io-kustomize-kustomize-v5-5.x branch from 1f5c6b6 to e3211f4 Compare March 3, 2025 13:21
@renovate renovate Bot force-pushed the renovate/sigs.k8s.io-kustomize-kustomize-v5-5.x branch from e3211f4 to 78d8d9f Compare March 11, 2025 15:06
@renovate renovate Bot force-pushed the renovate/sigs.k8s.io-kustomize-kustomize-v5-5.x branch from 78d8d9f to 05c2e13 Compare April 8, 2025 15:24
@renovate renovate Bot force-pushed the renovate/sigs.k8s.io-kustomize-kustomize-v5-5.x branch from 05c2e13 to efb2a8a Compare May 7, 2025 09:41
@renovate renovate Bot changed the title Update module sigs.k8s.io/kustomize/kustomize/v5 to v5.6.0 Update module sigs.k8s.io/kustomize/kustomize/v5 to v5.7.0 Jun 28, 2025
@renovate renovate Bot force-pushed the renovate/sigs.k8s.io-kustomize-kustomize-v5-5.x branch from efb2a8a to bf606d2 Compare June 28, 2025 07:38
@renovate renovate Bot force-pushed the renovate/sigs.k8s.io-kustomize-kustomize-v5-5.x branch from bf606d2 to edd5c05 Compare July 23, 2025 15:48
@renovate renovate Bot changed the title Update module sigs.k8s.io/kustomize/kustomize/v5 to v5.7.0 Update module sigs.k8s.io/kustomize/kustomize/v5 to v5.7.1 Jul 23, 2025
@renovate renovate Bot force-pushed the renovate/sigs.k8s.io-kustomize-kustomize-v5-5.x branch from edd5c05 to e23565f Compare August 10, 2025 15:53
@renovate renovate Bot force-pushed the renovate/sigs.k8s.io-kustomize-kustomize-v5-5.x branch from e23565f to fa2d26a Compare October 9, 2025 11:53
@renovate renovate Bot force-pushed the renovate/sigs.k8s.io-kustomize-kustomize-v5-5.x branch from fa2d26a to d4e4ab5 Compare November 9, 2025 19:15
@renovate renovate Bot changed the title Update module sigs.k8s.io/kustomize/kustomize/v5 to v5.7.1 Update module sigs.k8s.io/kustomize/kustomize/v5 to v5.8.0 Nov 9, 2025
@renovate
Copy link
Copy Markdown
Contributor Author

renovate Bot commented Dec 15, 2025

ℹ️ Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 28 additional dependencies were updated
  • The go directive was updated for compatibility reasons

Details:

Package Change
go 1.20 -> 1.24.0
github.com/google/uuid v1.4.0 -> v1.6.0
github.com/spf13/cobra v1.8.0 -> v1.9.1
github.com/stretchr/testify v1.8.4 -> v1.10.0
k8s.io/klog/v2 v2.110.1 -> v2.130.1
github.com/emicklei/go-restful/v3 v3.10.1 -> v3.11.0
github.com/go-logr/logr v1.3.0 -> v1.4.2
github.com/go-openapi/jsonpointer v0.19.6 -> v0.21.0
github.com/go-openapi/jsonreference v0.20.1 -> v0.20.2
github.com/go-openapi/swag v0.22.3 -> v0.23.0
github.com/google/go-cmp v0.5.9 -> v0.7.0
github.com/spf13/pflag v1.0.5 -> v1.0.6
github.com/xlab/treeprint v1.1.0 -> v1.2.0
golang.org/x/crypto v0.14.0 -> v0.40.0
golang.org/x/mod v0.11.0 -> v0.26.0
golang.org/x/net v0.17.0 -> v0.42.0
golang.org/x/sync v0.3.0 -> v0.16.0
golang.org/x/sys v0.13.0 -> v0.35.0
golang.org/x/term v0.13.0 -> v0.33.0
golang.org/x/text v0.13.0 -> v0.28.0
golang.org/x/tools v0.6.0 -> v0.35.0
google.golang.org/protobuf v1.31.0 -> v1.36.5
k8s.io/kube-openapi v0.0.0-20230109183929-3758b55a6596 -> v0.0.0-20241212222426-2c72e554b1e7
k8s.io/utils v0.0.0-20231127182322-b307cd553661 -> v0.0.0-20240711033017-18e509b52bc8
sigs.k8s.io/kustomize/api v0.13.1 -> v0.21.1
sigs.k8s.io/kustomize/cmd/config v0.11.0 -> v0.21.1
sigs.k8s.io/kustomize/kyaml v0.14.0 -> v0.21.1
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 -> v4.4.2
sigs.k8s.io/yaml v1.4.0 -> v1.5.0

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
@renovate renovate Bot force-pushed the renovate/sigs.k8s.io-kustomize-kustomize-v5-5.x branch from d4e4ab5 to d5522ec Compare February 9, 2026 19:54
@renovate renovate Bot changed the title Update module sigs.k8s.io/kustomize/kustomize/v5 to v5.8.0 Update module sigs.k8s.io/kustomize/kustomize/v5 to v5.8.1 Feb 9, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants