generated from SAP/repository-template
-
Notifications
You must be signed in to change notification settings - Fork 3
fix(deps): update non-minor dependencies #26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
renovate
wants to merge
1
commit into
main
Choose a base branch
from
renovate/non-minor-deps
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+68
−25
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6bdfb33 to
47c531a
Compare
47c531a to
47fa26c
Compare
47fa26c to
7d4dfe0
Compare
7d4dfe0 to
d314216
Compare
d314216 to
b028878
Compare
b028878 to
b0edf25
Compare
b0edf25 to
dc5e5cf
Compare
dc5e5cf to
2b3e252
Compare
b631156 to
91e94fe
Compare
91e94fe to
0803ddc
Compare
0803ddc to
1d7d150
Compare
1d7d150 to
2f4e46a
Compare
2f4e46a to
7443b79
Compare
7443b79 to
f0ee7a4
Compare
f0ee7a4 to
63d02fa
Compare
63d02fa to
82a3666
Compare
82a3666 to
5fa659d
Compare
5fa659d to
8b8837b
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
v1.19.1→v1.19.2v2.27.1→v2.27.4v0.1.73→v0.1.80v0.3.115→v0.3.127v0.2.42→v0.2.471.25.3→1.25.51.25.3→1.25.5v0.35.0-alpha.2→v0.35.0v0.22.3→v0.22.4fb2beab→0c3a910Release Notes
cert-manager/cert-manager (github.com/cert-manager/cert-manager)
v1.19.2Compare Source
cert-manager is the easiest way to automatically manage certificates in Kubernetes and OpenShift clusters.
We updated Go to fix some vulnerabilities in the standard library.
Changes since
v1.19.1Bug or Regression
CVE-2025-47914andCVE-2025-58181which were reported by Trivy. (#8283, @SgtCoDFish)v1.25.5to fixCVE-2025-61727andCVE-2025-61729(#8294, @wallrj-cyberark)global.nodeSelectorto helm chart to perform amergeand allow for a singlenodeSelectorto be set across all services. (#8233, @cert-manager-bot)Other (Cleanup or Flake)
golang/x/crypto(#8270, @SgtCoDFish)onsi/ginkgo (github.com/onsi/ginkgo/v2)
v2.27.4Compare Source
2.27.4
Fixes
59bc751]v2.27.3Compare Source
2.27.3
Fixes
report exit result in case of failure [
1c9f356]fix data race [
ece19c8]v2.27.2Compare Source
2.27.2
Fixes
a69113a]Maintenance
a99c6e0]f993df5]sap/admission-webhook-runtime (github.com/sap/admission-webhook-runtime)
v0.1.80Compare Source
v0.1.79Compare Source
v0.1.78Compare Source
v0.1.77Compare Source
v0.1.76Compare Source
v0.1.75Compare Source
v0.1.74Compare Source
sap/component-operator-runtime (github.com/sap/component-operator-runtime)
v0.3.127Compare Source
Fixes/Enhancements
Clear finalizers when orphaning: the framework protects certain dependent objects (i.e.
CustomResourceDefinitionandAPIService) by adding an own finalizer. Now if such a dependent object is orphaned (e.g. through thedelete-policy: orphanannotation), then this finalizer should be removed. Note that this situation might also occur if we render a Helm chart (byHelmGenerator) usinghelm.sh/resource-policy: keep. This is fixed by this release: from now on, when orphaning objects, our finalizer is cleared from the protected objects.Allow to suppress events on dependents: in some cases, the framework does not have permission to create events on the target (e.g. if a kubeconfig or impersonation is used). Now, by setting the annotation
on the component, emitting events can be suppressed. In a later phase, we might formalize this annotation into a
Configurationinterface.Enhance scaffolded Helm chart: the chart generated by
scaffoldnow has options to tweak the containedPodDisruptionBudget.v0.3.126Compare Source
Disclaimer
This release contains incompatible changes:
.Release.IsInstalland.Release.IsUpgradebehave a differently (but more in line with the original helm behaviour); also the handling of hooks has changes; see below.Incompatible changes/enhancements
This release introduces a new status field:
status.revision. The initial value of the field is zero. It is increased by one, whenever a changed component digest is applied to the cluster; to be precise, that means:status.processingDigestchanges compared to the last reconcile iterationreconciler.Apply()is called.Notes:
status.processingDigestchanges, butstatus.revisionis not increased; that can happen, if no 'apply' happens; for example, if an early requeue happens (e.g. due to aRetriableError)The new
status.revisionattribute allows us to improve the behaviour of theHelmGenerator. First of all, the helm.Release.Revisionbuiltin is now supported, and populated by the value of the component'sstatus.revision. Furthermore, previously, it was not really possible to distinguish between 'install' and 'upgrade' invocations. As a consequence,.Release.IsInstallwas always set totrue,.Release.IsUpgradewas always set tofalse, and certain hook combinations using(pre|post)-install,(pre|post)-upgradewere not supported. With this PR, we set.Release.IsInstalltotrueif and only ifstatus.revision == 1, and we set.Release.IsUpgradeto the inverse value of.Release.IsInstall. Furthermore, all combinations of the(pre|post)-(install|upgrade)hooks are accepted (but still might be treated slightly different, compared to the original helm behaviour).Finally, note that the
status.revisionvalue is accessible also withKustomizeGenerator, through the new template functioncomponentRevision.v0.3.125Compare Source
Enhancements
So far, instances of the
KustomizeGeneratorare 'fenced' to the directory which is passed askustomizationPathwhen instantiating it. That means:kustomization.yaml(if present) cannot reference resources (bases) or patches outside that directory, such as../basesreadFiletemplate function cannot reference files outsidekustomizationPath.This gap is addressed by this release: two new attributes are recognized in
.component-config.yaml:includedKustomizations: []string: a list of directory paths relative tokustomizationPath; targeted directories are treated as own components, rendered with the including component's parameters (values), and then supplied to kustomize at the identical pathincludedFiles: []string: a list of paths relative tokustomizationPath(single files or directories); all referenced files (recursively in case a directory is specified) can be used withreadFile.Recursive inclusions are possible, but must not lead to cycles (there is a circuit breaking logic that will fail the generator in case of cycles).
Example:
Then,
mycomp/kustomization.yamlcan reference../bases, such asand templates in
mycompcan callreadFile "../meta.yaml".Refactorings
A step towards the standard 'errors' package is made. That is, any references to
utilerrors.NewAggregate()andmultierror.Append()are replaced byerrors.Join(). Note that errors produced byerrors.Join()support botherrors.Is()anderrors.As().Furthermore, all imports of the deprecated 'github.com/pkg/errors' package are aliased as 'legacyerrors'. The only remaining usage of 'legacyerrors' should be
legacyerrors.Wrap()andlegacyerrors.Wrapf(). In a later phase, we will replace these byfmt.Errorf()with%w.The K8s client handling in
component.Reconcile()is revisited. That is, instead of using the manager's client (i.e.mgr.GetClient()) for the component reconciler (that is the client interacting with the component resources), we construct a dedicated client frommgr.GetConfig()andmgr.GetScheme(). Notes:component.Reference[T]still use the manager's client.v0.3.124Compare Source
v0.3.123Compare Source
v0.3.122Compare Source
v0.3.121Compare Source
v0.3.120Compare Source
v0.3.119Compare Source
v0.3.118Compare Source
Enhancements
Kustomize generator
This release add three new template functions to the
KustomizeGenerator:lookupList <apiVersion> <kind> <namespace> <labelSelector>localLookupList <apiVersion> <kind> <namespace> <labelSelector>lookupListWithKubeConfig <apiVersion> <kind> <namespace> <labelSelector> <kubeConfig>They can be used to list objects (optionally by a label selector) from the Kubernetes API. To be called like this:
The 'local' variant uses the effective local (controller-side) kubeconfig (in case of remotely deployed components).
The 'WithKubeConfig' variant takes an arbitrary kubeconfig (as
string) as last argument.All three methods return an array of
map[string]any, representing the found resources.For namespaced objects, if the given namespace is empty, objects are selected from all namespaces. For non-namespaced objects, the namespace should be specified empty. An empty selector means: 'select everything'.
v0.3.117Compare Source
v0.3.116Compare Source
sap/go-generics (github.com/sap/go-generics)
v0.2.47Compare Source
v0.2.46Compare Source
v0.2.45Compare Source
v0.2.44Compare Source
v0.2.43Compare Source
golang/go (go)
v1.25.5v1.25.4kubernetes/apimachinery (k8s.io/apimachinery)
v0.35.0Compare Source
v0.35.0-rc.1Compare Source
v0.35.0-rc.0Compare Source
v0.35.0-beta.0Compare Source
v0.35.0-alpha.3Compare Source
kubernetes-sigs/controller-runtime (sigs.k8s.io/controller-runtime)
v0.22.4Compare Source
What's Changed
Full Changelog: kubernetes-sigs/controller-runtime@v0.22.3...v0.22.4
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.