diff --git a/internal/generator/git.go b/internal/generator/git.go index 193f21ec7..5aff0eb1c 100644 --- a/internal/generator/git.go +++ b/internal/generator/git.go @@ -176,7 +176,7 @@ func (generator *GitGenerator) Versions() ([]string, error) { return true } if a != b { - return a < b + return a > b } aa := normalizeVersion(generator.filter.FindAllStringSubmatch(filtered[i], -1)) bb := normalizeVersion(generator.filter.FindAllStringSubmatch(filtered[j], -1)) diff --git a/internal/generator/git_test.go b/internal/generator/git_test.go index afa962e5c..033cc5fc0 100644 --- a/internal/generator/git_test.go +++ b/internal/generator/git_test.go @@ -312,3 +312,31 @@ func TestGitGeneratorVersionsCustomSort(t *testing.T) { assert.Nil(t, err) assert.Equal(t, []string{"2.10.0", "2.2.0", "2.1.0", "1.01.01", "1.0.0"}, versions) } + +func TestGitGeneratorVersionsSortByTimestamp(t *testing.T) { + baseTime := int64(1704000000) + newerTime := baseTime + 86400 + + bundles := []gitBundle{ + {tag: "v1.0.0", timestamp: &baseTime, paths: []gitPath{{path: "crds/v1.yaml", file: "testdata/test-crd.yaml"}}}, + {tag: "v2.0.0", timestamp: &baseTime, paths: []gitPath{{path: "crds/v2.yaml", file: "testdata/test-crd.yaml"}}}, + {tag: "v3.0.0", timestamp: &newerTime, paths: []gitPath{{path: "crds/v3.yaml", file: "testdata/test-crd.yaml"}}}, + } + + p, err := setupGit(t, bundles) + assert.Nil(t, err) + assert.NotNil(t, p) + + config := configuration.Configuration{ + Kind: configuration.Git, + Repository: fmt.Sprintf("file://%s", *p), + } + + filter := regexp.MustCompile(`^v([0-9]+\.[0-9]+\.[0-9]+)$`) + generator := NewGitGenerator(config, nil, filter) + defer generator.Close() + + versions, err := generator.Versions() + assert.Nil(t, err) + assert.Equal(t, []string{"v3.0.0", "v2.0.0", "v1.0.0"}, versions) +} diff --git a/internal/generator/setup_test.go b/internal/generator/setup_test.go index dc9550c0f..98f951857 100644 --- a/internal/generator/setup_test.go +++ b/internal/generator/setup_test.go @@ -15,6 +15,7 @@ import ( "path" "strings" "testing" + "time" "github.com/stretchr/testify/assert" ) @@ -193,9 +194,10 @@ func setupOciServer(t *testing.T, chart ociChart) (mockServer, func()) { } type gitBundle struct { - tag string - branch string - paths []gitPath + tag string + branch string + paths []gitPath + timestamp *int64 } type gitPath struct { @@ -272,7 +274,12 @@ func setupGit(t *testing.T, bundles []gitBundle) (*string, error) { } if len(bundle.paths) > 0 { - err = exec.Command("git", "--git-dir", gitDir, "--work-tree", tmpDir, "commit", "--message", "Add bundle").Run() + cmd := exec.Command("git", "--git-dir", gitDir, "--work-tree", tmpDir, "commit", "--message", "Add bundle") + if bundle.timestamp != nil { + date := time.Unix(*bundle.timestamp, 0).Format("2006-01-02T15:04:05Z") + cmd.Env = append(os.Environ(), "GIT_AUTHOR_DATE="+date, "GIT_COMMITTER_DATE="+date) + } + err = cmd.Run() if err != nil { return nil, fmt.Errorf("unable to commit: %w", err) } diff --git a/registry.yaml b/registry.yaml index e6da01133..f3fcac534 100644 --- a/registry.yaml +++ b/registry.yaml @@ -1,8 +1,8 @@ sources: 1password.connect: kind: helm - version: 2.4.0 - lastUpdated: "2026-03-10T01:28:10Z" + version: 2.3.0 + lastUpdated: "2026-03-01T14:16:15Z" 3scale-operator: kind: git version: 3scale-2.16.2-GA @@ -45,20 +45,20 @@ sources: lastUpdated: "2026-03-01T14:16:26Z" appcat: kind: git - version: v4.182.1 - lastUpdated: "2026-03-11T08:35:30Z" + version: v4.181.0 + lastUpdated: "2026-03-01T14:16:49Z" aquasecurity-aqua-operator: kind: git version: master lastUpdated: "2026-03-01T14:16:51Z" aquasecurity.trivy-operator: kind: helm - version: 0.32.1 - lastUpdated: "2026-03-13T01:43:24Z" + version: 0.32.0 + lastUpdated: "2026-03-01T14:16:49Z" argo.argo-cd: kind: helm - version: 9.4.10 - lastUpdated: "2026-03-10T08:35:10Z" + version: 9.4.7 + lastUpdated: "2026-03-03T16:41:04Z" argo.argo-events: kind: helm version: 2.4.20 @@ -69,16 +69,16 @@ sources: lastUpdated: "2026-03-01T14:16:53Z" argo.argo-workflows: kind: helm - version: 1.0.2 - lastUpdated: "2026-03-13T08:34:34Z" + version: 0.47.4 + lastUpdated: "2026-03-01T14:16:54Z" argo.argocd-image-updater: kind: helm - version: 1.1.3 - lastUpdated: "2026-03-13T16:34:44Z" + version: 1.1.1 + lastUpdated: "2026-03-01T14:16:55Z" atlas-operator: kind: helm-oci - version: 0.7.26 - lastUpdated: "2026-03-12T16:55:27Z" + version: 0.7.23 + lastUpdated: "2026-03-01T14:16:57Z" atlasmap-operator: kind: git version: 0.4.1 @@ -89,8 +89,8 @@ sources: lastUpdated: "2026-03-01T14:17:02Z" aws-amazon-network-policy-controller-k8s: kind: git - version: v1.1.4 - lastUpdated: "2026-03-14T01:41:07Z" + version: v1.1.2 + lastUpdated: "2026-03-01T20:29:09Z" aws-amazon-vpc-resource-controller-k8s: kind: git version: v1.7.18 @@ -105,164 +105,164 @@ sources: lastUpdated: "2026-03-01T20:29:14Z" aws-controllers-k8s-acm-controller: kind: git - version: v1.3.4 - lastUpdated: "2026-03-12T01:28:20Z" + version: v1.3.3 + lastUpdated: "2026-03-01T20:29:15Z" aws-controllers-k8s-acmpca-controller: kind: git - version: v1.2.2 - lastUpdated: "2026-03-12T01:28:23Z" + version: v1.2.1 + lastUpdated: "2026-03-01T20:29:16Z" aws-controllers-k8s-apigatewayv2-controller: kind: git - version: v1.2.2 - lastUpdated: "2026-03-12T01:28:27Z" + version: v1.2.1 + lastUpdated: "2026-03-01T20:29:18Z" aws-controllers-k8s-applicationautoscaling-controller: kind: git - version: v1.2.2 - lastUpdated: "2026-03-12T01:28:30Z" + version: v1.2.1 + lastUpdated: "2026-03-01T20:29:20Z" aws-controllers-k8s-cloudfront-controller: kind: git - version: v1.3.2 - lastUpdated: "2026-03-12T01:28:33Z" + version: v1.3.1 + lastUpdated: "2026-03-01T20:29:21Z" aws-controllers-k8s-cloudtrail-controller: kind: git - version: v1.2.2 - lastUpdated: "2026-03-12T19:21:34Z" + version: v1.2.1 + lastUpdated: "2026-03-01T20:29:22Z" aws-controllers-k8s-cloudwatch-controller: kind: git - version: v1.4.2 - lastUpdated: "2026-03-12T01:28:37Z" + version: v1.4.1 + lastUpdated: "2026-03-01T20:29:22Z" aws-controllers-k8s-cloudwatchlogs-controller: kind: git - version: v1.2.2 - lastUpdated: "2026-03-12T01:28:39Z" + version: v1.2.1 + lastUpdated: "2026-03-01T20:29:23Z" aws-controllers-k8s-documentdb-controller: kind: git - version: v1.3.1 - lastUpdated: "2026-03-12T01:28:41Z" + version: v1.3.0 + lastUpdated: "2026-03-05T19:25:33Z" aws-controllers-k8s-dynamodb-controller: kind: git - version: v1.7.2 - lastUpdated: "2026-03-12T01:28:45Z" + version: v1.7.1 + lastUpdated: "2026-03-01T20:29:26Z" aws-controllers-k8s-ec2-controller: kind: git - version: v1.10.1 - lastUpdated: "2026-03-12T01:28:49Z" + version: v1.10.0 + lastUpdated: "2026-03-04T01:42:54Z" aws-controllers-k8s-ecr-controller: kind: git - version: v1.5.2 - lastUpdated: "2026-03-12T01:28:53Z" + version: v1.5.1 + lastUpdated: "2026-03-01T20:29:31Z" aws-controllers-k8s-efs-controller: kind: git - version: v1.2.2 - lastUpdated: "2026-03-12T01:28:55Z" + version: v1.2.1 + lastUpdated: "2026-03-01T20:29:31Z" aws-controllers-k8s-eks-controller: kind: git - version: v1.12.0 - lastUpdated: "2026-03-13T01:43:42Z" + version: v1.11.3 + lastUpdated: "2026-03-06T01:50:20Z" aws-controllers-k8s-elasticache-controller: kind: git - version: v1.3.4 - lastUpdated: "2026-03-14T01:41:27Z" + version: v1.3.3 + lastUpdated: "2026-03-01T20:29:39Z" aws-controllers-k8s-elbv2-controller: kind: git - version: v1.3.3 - lastUpdated: "2026-03-12T01:29:02Z" + version: v1.3.2 + lastUpdated: "2026-03-01T20:29:40Z" aws-controllers-k8s-emrcontainers-controller: kind: git - version: v1.3.2 - lastUpdated: "2026-03-12T01:29:05Z" + version: v1.3.1 + lastUpdated: "2026-03-01T20:29:41Z" aws-controllers-k8s-eventbridge-controller: kind: git - version: v1.2.2 - lastUpdated: "2026-03-12T01:29:07Z" + version: v1.2.1 + lastUpdated: "2026-03-01T20:29:43Z" aws-controllers-k8s-iam-controller: kind: git - version: v1.6.2 - lastUpdated: "2026-03-12T01:29:11Z" + version: v1.6.1 + lastUpdated: "2026-03-01T20:29:44Z" aws-controllers-k8s-kafka-controller: kind: git - version: v1.4.1 - lastUpdated: "2026-03-12T01:29:14Z" + version: v1.4.0 + lastUpdated: "2026-03-01T20:29:45Z" aws-controllers-k8s-keyspaces-controller: kind: git - version: v1.2.2 - lastUpdated: "2026-03-12T01:29:16Z" + version: v1.2.1 + lastUpdated: "2026-03-01T20:29:46Z" aws-controllers-k8s-kinesis-controller: kind: git - version: v1.2.2 - lastUpdated: "2026-03-12T01:29:19Z" + version: v1.2.1 + lastUpdated: "2026-03-01T20:29:47Z" aws-controllers-k8s-kms-controller: kind: git - version: v1.2.2 - lastUpdated: "2026-03-12T01:29:21Z" + version: v1.2.1 + lastUpdated: "2026-03-01T20:29:49Z" aws-controllers-k8s-lambda-controller: kind: git - version: v1.10.2 - lastUpdated: "2026-03-12T01:29:25Z" + version: v1.10.1 + lastUpdated: "2026-03-01T20:29:51Z" aws-controllers-k8s-memorydb-controller: kind: git - version: v1.2.2 - lastUpdated: "2026-03-12T01:29:27Z" + version: v1.2.1 + lastUpdated: "2026-03-01T20:29:52Z" aws-controllers-k8s-mq-controller: kind: git - version: v1.2.2 - lastUpdated: "2026-03-12T01:29:31Z" + version: v1.2.1 + lastUpdated: "2026-03-01T20:29:53Z" aws-controllers-k8s-networkfirewall-controller: kind: git - version: v1.2.2 - lastUpdated: "2026-03-12T01:29:33Z" + version: v1.2.1 + lastUpdated: "2026-03-01T20:29:54Z" aws-controllers-k8s-opensearchservice-controller: kind: git - version: v1.2.3 - lastUpdated: "2026-03-12T01:29:36Z" + version: v1.2.2 + lastUpdated: "2026-03-01T20:29:55Z" aws-controllers-k8s-organizations-controller: kind: git - version: v1.2.3 - lastUpdated: "2026-03-12T01:29:39Z" + version: v1.2.2 + lastUpdated: "2026-03-01T20:29:56Z" aws-controllers-k8s-pipes-controller: kind: git - version: v1.2.2 - lastUpdated: "2026-03-12T01:29:41Z" + version: v1.2.1 + lastUpdated: "2026-03-01T20:29:57Z" aws-controllers-k8s-prometheusservice-controller: kind: git - version: v1.4.2 - lastUpdated: "2026-03-12T01:29:44Z" + version: v1.4.1 + lastUpdated: "2026-03-01T20:29:58Z" aws-controllers-k8s-rds-controller: kind: git - version: v1.7.7 - lastUpdated: "2026-03-14T01:41:45Z" + version: v1.7.6 + lastUpdated: "2026-03-01T20:30:01Z" aws-controllers-k8s-route53resolver-controller: kind: git - version: v1.2.2 - lastUpdated: "2026-03-12T19:22:18Z" + version: v1.2.1 + lastUpdated: "2026-03-01T20:30:03Z" aws-controllers-k8s-route53-controller: kind: git - version: v1.2.2 - lastUpdated: "2026-03-12T01:29:48Z" + version: v1.2.1 + lastUpdated: "2026-03-01T20:30:02Z" aws-controllers-k8s-s3-controller: kind: git - version: v1.3.2 - lastUpdated: "2026-03-12T01:29:52Z" + version: v1.3.1 + lastUpdated: "2026-03-01T20:30:05Z" aws-controllers-k8s-sagemaker-controller: kind: git - version: v1.7.3 - lastUpdated: "2026-03-13T01:44:07Z" + version: v1.7.2 + lastUpdated: "2026-03-01T20:30:07Z" aws-controllers-k8s-secretsmanager-controller: kind: git - version: v1.2.2 - lastUpdated: "2026-03-12T01:29:55Z" + version: v1.2.1 + lastUpdated: "2026-03-01T20:30:08Z" aws-controllers-k8s-sfn-controller: kind: git - version: v1.2.2 - lastUpdated: "2026-03-12T01:29:59Z" + version: v1.2.1 + lastUpdated: "2026-03-01T20:30:09Z" aws-controllers-k8s-sns-controller: kind: git - version: v1.3.2 - lastUpdated: "2026-03-12T01:30:02Z" + version: v1.3.1 + lastUpdated: "2026-03-01T20:30:11Z" aws-controllers-k8s-sqs-controller: kind: git - version: v1.4.2 - lastUpdated: "2026-03-12T01:30:04Z" + version: v1.4.1 + lastUpdated: "2026-03-01T20:30:12Z" aws-eks-distro-build-tooling: kind: git version: main @@ -273,16 +273,16 @@ sources: lastUpdated: "2026-03-01T14:18:49Z" awx-operator.awx-operator: kind: helm - version: 3.2.1 - lastUpdated: "2026-03-12T19:22:27Z" + version: 3.2.0 + lastUpdated: "2026-03-01T14:18:49Z" azure-application-gateway-kubernetes-ingress: kind: git version: 1.9.7 lastUpdated: "2026-03-01T14:18:53Z" azure-prometheus-collector: kind: git - version: v6.26.0-main-03-10-2026-65eadf68 - lastUpdated: "2026-03-11T01:29:49Z" + version: v6.26.0-main-03-05-2026-701eb75f + lastUpdated: "2026-03-06T08:33:19Z" azure-service-operator: kind: git version: v2.18.0 @@ -337,20 +337,20 @@ sources: lastUpdated: "2026-03-01T14:22:22Z" cert-manager-approver-policy.cert-manager-approver-policy: kind: helm - version: v0.24.0 - lastUpdated: "2026-03-11T08:37:03Z" + version: v0.23.2 + lastUpdated: "2026-03-04T16:42:13Z" cert-manager-aws-privateca-issuer: kind: git version: v1.8.0 lastUpdated: "2026-03-01T14:22:25Z" cert-manager.cert-manager: kind: helm - version: v1.20.0 - lastUpdated: "2026-03-10T16:56:53Z" + version: v1.19.4 + lastUpdated: "2026-03-01T14:22:23Z" cert-trust-manager.trust-manager: kind: helm - version: v0.22.0 - lastUpdated: "2026-03-10T01:29:39Z" + version: v0.21.1 + lastUpdated: "2026-03-01T14:22:25Z" chaos-mesh.chaos-mesh: kind: helm version: 2.8.1 @@ -377,12 +377,12 @@ sources: lastUpdated: "2026-03-01T20:34:00Z" clickhouse-operator: kind: helm-oci - version: 0.0.3 - lastUpdated: "2026-03-11T16:46:56Z" + version: 0.0.2 + lastUpdated: "2026-03-05T19:26:56Z" clickhouse-operator-altinity.altinity-clickhouse-operator: kind: helm - version: 0.26.1 - lastUpdated: "2026-03-13T16:36:21Z" + version: 0.26.0 + lastUpdated: "2026-03-01T14:23:23Z" cloudflare-origin-ca-issuer: kind: git version: v0.13.0 @@ -397,8 +397,8 @@ sources: lastUpdated: "2026-03-01T14:23:24Z" cluster-api-provider-hetzner: kind: git - version: v1.0.10 - lastUpdated: "2026-03-12T16:57:25Z" + version: v1.0.7 + lastUpdated: "2026-03-01T20:34:05Z" clusternet.clusternet-agent: kind: helm version: 0.15.0 @@ -425,8 +425,8 @@ sources: lastUpdated: "2026-03-01T14:23:39Z" confluentinc.confluent-for-kubernetes: kind: helm - version: 0.1514.1 - lastUpdated: "2026-03-11T16:47:06Z" + version: 0.1351.59 + lastUpdated: "2026-03-01T14:23:40Z" confluentinc.cpc-agent: kind: helm version: 0.161.0 @@ -441,8 +441,8 @@ sources: lastUpdated: "2026-03-01T14:23:43Z" coroot.coroot-operator: kind: helm - version: 0.9.1 - lastUpdated: "2026-03-12T19:23:23Z" + version: 0.8.2 + lastUpdated: "2026-03-01T14:23:43Z" crossplane-contrib-provider-upjet-aws: kind: git version: v2.4.0 @@ -465,16 +465,16 @@ sources: lastUpdated: "2026-03-01T14:23:45Z" crunchydata-pgo: kind: helm-oci - version: 6.0.1 - lastUpdated: "2026-03-11T16:47:15Z" + version: 6.0.0 + lastUpdated: "2026-03-01T14:24:44Z" dapr.dapr: kind: helm - version: 1.17.1 - lastUpdated: "2026-03-10T01:30:02Z" + version: 1.17.0 + lastUpdated: "2026-03-01T14:24:44Z" datadog.datadog-crds: kind: helm - version: 2.17.0 - lastUpdated: "2026-03-09T16:57:06Z" + version: 2.16.0 + lastUpdated: "2026-03-01T14:24:45Z" datainfra.druid-operator: kind: helm version: 0.4.0 @@ -489,8 +489,8 @@ sources: lastUpdated: "2026-03-01T14:28:46Z" db-operator.db-operator: kind: helm - version: 3.0.0 - lastUpdated: "2026-03-06T22:59:19Z" + version: 2.6.0 + lastUpdated: "2026-03-01T14:28:48Z" dbaas-operator: kind: git version: v0.1.17 @@ -553,8 +553,8 @@ sources: lastUpdated: "2026-03-04T21:51:25Z" envoyproxy-gateway-crds-helm: kind: helm-oci - version: 1.7.1 - lastUpdated: "2026-03-13T08:36:29Z" + version: v1.7.0 + lastUpdated: "2026-03-01T14:29:39Z" epamedp.cd-pipeline-operator: kind: helm version: 2.26.0 @@ -589,8 +589,8 @@ sources: lastUpdated: "2026-03-05T19:27:21Z" external-secrets-operator.external-secrets: kind: helm - version: 2.1.0 - lastUpdated: "2026-03-08T01:47:44Z" + version: 2.0.1 + lastUpdated: "2026-03-01T14:29:47Z" fairwinds-stable.rbac-manager: kind: helm version: 1.21.5 @@ -609,48 +609,48 @@ sources: lastUpdated: "2026-03-01T14:29:52Z" flux-operator: kind: helm-oci - version: 0.44.0 - lastUpdated: "2026-03-13T01:45:14Z" + version: 0.43.0 + lastUpdated: "2026-03-01T14:29:54Z" fluxcd-helm-controller: kind: git - version: v1.5.2 - lastUpdated: "2026-03-12T16:58:03Z" + version: v1.5.1 + lastUpdated: "2026-03-01T20:35:44Z" fluxcd-helm-operator: kind: git version: v1.4.4 lastUpdated: "2026-03-01T14:29:59Z" fluxcd-image-automation-controller: kind: git - version: v1.1.1 - lastUpdated: "2026-03-12T16:58:09Z" + version: v1.1.0 + lastUpdated: "2026-03-01T20:35:46Z" fluxcd-image-reflector-controller: kind: git - version: v1.1.1 - lastUpdated: "2026-03-12T16:58:12Z" + version: v1.1.0 + lastUpdated: "2026-03-01T20:35:48Z" fluxcd-kustomize-controller: kind: git - version: v1.8.2 - lastUpdated: "2026-03-12T16:58:18Z" + version: v1.8.1 + lastUpdated: "2026-03-01T20:35:51Z" fluxcd-notification-controller: kind: git - version: v1.8.2 - lastUpdated: "2026-03-12T16:58:22Z" + version: v1.8.1 + lastUpdated: "2026-03-01T20:35:53Z" fluxcd-source-controller: kind: git - version: v1.8.1 - lastUpdated: "2026-03-12T16:58:29Z" + version: v1.8.0 + lastUpdated: "2026-03-01T20:35:58Z" frp-operator.frp-operator: kind: helm version: 1.4.0 lastUpdated: "2026-03-01T14:30:14Z" gatekeeper.gatekeeper: kind: helm - version: 3.22.0 - lastUpdated: "2026-03-10T01:30:27Z" + version: 3.21.1 + lastUpdated: "2026-03-01T14:30:14Z" gcp-cloud-sql-proxy-operator: kind: git - version: v1.7.6 - lastUpdated: "2026-03-12T01:31:47Z" + version: v1.7.5 + lastUpdated: "2026-03-01T14:30:17Z" gcp-compute-class-api: kind: git version: 1.33.4 @@ -681,28 +681,28 @@ sources: lastUpdated: "2026-03-01T14:31:05Z" gitlab.gitlab-operator: kind: helm - version: 2.9.2 - lastUpdated: "2026-03-13T16:37:10Z" + version: 2.9.1 + lastUpdated: "2026-03-01T14:31:07Z" gke-networking-recipes: kind: git version: main lastUpdated: "2026-03-01T14:31:09Z" gloo.gloo: kind: helm - version: 1.20.12 - lastUpdated: "2026-03-12T01:32:07Z" + version: 1.20.11 + lastUpdated: "2026-03-04T19:56:22Z" grafana-k6-operator.k6-operator: kind: helm version: 4.3.0 lastUpdated: "2026-03-03T16:48:40Z" grafana-operator: kind: helm-oci - version: 5.22.1 - lastUpdated: "2026-03-14T01:43:19Z" + version: 5.22.0 + lastUpdated: "2026-03-01T14:31:21Z" grafana.alloy: kind: helm - version: 1.6.2 - lastUpdated: "2026-03-10T16:58:02Z" + version: 1.6.1 + lastUpdated: "2026-03-02T16:46:20Z" grafana.alloy-crd: kind: helm version: 1.0.0 @@ -741,12 +741,12 @@ sources: lastUpdated: "2026-03-01T14:31:31Z" hivemq.hivemq-platform: kind: helm - version: 0.2.64 - lastUpdated: "2026-03-10T16:58:10Z" + version: 0.2.63 + lastUpdated: "2026-03-04T01:50:25Z" hivemq.hivemq-platform-operator: kind: helm - version: 0.2.23 - lastUpdated: "2026-03-10T16:58:10Z" + version: 0.2.22 + lastUpdated: "2026-03-01T14:31:30Z" hivemq.hivemq-swarm: kind: helm version: 0.2.65 @@ -765,8 +765,8 @@ sources: lastUpdated: "2026-03-01T14:31:40Z" istio.base: kind: helm - version: 1.29.1 - lastUpdated: "2026-03-11T01:31:17Z" + version: 1.29.0 + lastUpdated: "2026-03-01T14:31:41Z" jaegertracing.jaeger-operator: kind: helm version: 2.57.0 @@ -781,8 +781,8 @@ sources: lastUpdated: "2026-03-01T20:37:03Z" k0s: kind: git - version: v1.35.2+k0s.0 - lastUpdated: "2026-03-13T16:37:45Z" + version: v1.35.1+k0s.1 + lastUpdated: "2026-03-04T22:20:30Z" k0smotron: kind: git version: v1.10.3 @@ -793,12 +793,12 @@ sources: lastUpdated: "2026-03-01T14:32:17Z" k8s-cleaner: kind: helm-oci - version: 0.19.1 - lastUpdated: "2026-03-09T08:44:25Z" + version: 0.18.0 + lastUpdated: "2026-03-01T14:32:19Z" k8ssandra-cass-operator: kind: git - version: v1.29.1 - lastUpdated: "2026-03-09T16:58:34Z" + version: v1.29.0 + lastUpdated: "2026-03-01T20:37:32Z" k8up-io-k8up: kind: git version: k8up-4.8.6 @@ -825,24 +825,24 @@ sources: lastUpdated: "2026-03-05T18:07:29Z" kgateway-crds: kind: helm-oci - version: v2.2.2 - lastUpdated: "2026-03-13T16:37:57Z" + version: v2.2.1 + lastUpdated: "2026-03-02T21:39:19Z" kluctl-template-controller: kind: helm-oci version: 0.9.4 lastUpdated: "2026-03-01T14:32:37Z" kong.ingress: kind: helm - version: 0.23.0 - lastUpdated: "2026-03-12T16:59:36Z" + version: 0.22.0 + lastUpdated: "2026-03-01T14:32:38Z" kong.kong: kind: helm - version: 3.1.0 - lastUpdated: "2026-03-12T16:59:37Z" + version: 3.0.2 + lastUpdated: "2026-03-01T14:32:39Z" konveyor-operator: kind: git - version: v0.9.1 - lastUpdated: "2026-03-12T01:32:40Z" + version: v0.9.0 + lastUpdated: "2026-03-01T14:32:40Z" koperator: kind: git version: 0.28.0-adobe-20260303 @@ -857,8 +857,8 @@ sources: lastUpdated: "2026-03-01T14:32:49Z" kserve: kind: git - version: v0.17.0 - lastUpdated: "2026-03-14T01:43:51Z" + version: v0.16.0 + lastUpdated: "2026-03-01T14:33:01Z" kubeblocks: kind: git version: v1.0.2 @@ -925,8 +925,8 @@ sources: lastUpdated: "2026-03-01T20:39:50Z" kubernetes-sigs-cluster-api-provider-azure: kind: git - version: v1.22.1 - lastUpdated: "2026-03-11T01:32:03Z" + version: v1.21.2 + lastUpdated: "2026-03-04T21:14:31Z" kubernetes-sigs-cluster-api-provider-cloudstack: kind: git version: v0.6.1 @@ -937,8 +937,8 @@ sources: lastUpdated: "2026-03-01T20:40:03Z" kubernetes-sigs-cluster-api-provider-gcp: kind: git - version: v1.11.1 - lastUpdated: "2026-03-10T16:59:05Z" + version: v1.11.0 + lastUpdated: "2026-03-01T20:40:07Z" kubernetes-sigs-cluster-api-provider-ibmcloud: kind: git version: v0.13.1 @@ -977,8 +977,8 @@ sources: lastUpdated: "2026-03-01T14:35:56Z" kubernetes-sigs-gateway-api: kind: git - version: v1.5.1 - lastUpdated: "2026-03-14T01:44:21Z" + version: v1.5.0 + lastUpdated: "2026-03-01T14:36:01Z" kubernetes-sigs-jobset: kind: git version: v0.11.1 @@ -989,8 +989,8 @@ sources: lastUpdated: "2026-03-01T14:36:05Z" kubernetes-sigs-kueue: kind: git - version: v0.15.6 - lastUpdated: "2026-03-13T16:38:44Z" + version: v0.15.5 + lastUpdated: "2026-03-01T20:40:45Z" kubernetes-sigs-lws: kind: git version: v0.8.0 @@ -1021,8 +1021,8 @@ sources: lastUpdated: "2026-03-01T14:36:30Z" kubeshop-testkube: kind: helm-oci - version: 2.7.1 - lastUpdated: "2026-03-10T16:59:24Z" + version: 2.7.0 + lastUpdated: "2026-03-04T16:49:23Z" kubevela.terraform-controller: kind: helm version: 0.8.0 @@ -1057,8 +1057,8 @@ sources: lastUpdated: "2026-03-01T20:41:43Z" linkerd.linkerd-crds: kind: helm - version: 2026.3.2 - lastUpdated: "2026-03-12T17:00:38Z" + version: 2026.3.1 + lastUpdated: "2026-03-06T01:53:23Z" llmnetes: kind: git version: main @@ -1077,8 +1077,8 @@ sources: lastUpdated: "2026-03-01T14:37:39Z" mariadb-operator.mariadb-operator-crds: kind: helm - version: 26.3.0 - lastUpdated: "2026-03-13T16:39:03Z" + version: 25.10.4 + lastUpdated: "2026-03-01T14:37:40Z" marin3r: kind: git version: v0.13.4 @@ -1093,8 +1093,8 @@ sources: lastUpdated: "2026-03-01T14:37:49Z" minio-operator-from-git: kind: git - version: v5.0.19 - lastUpdated: "2026-03-06T23:01:42Z" + version: v5.0.18 + lastUpdated: "2026-03-01T14:37:56Z" minio-operator.minio-operator: kind: helm version: 4.3.7 @@ -1185,20 +1185,20 @@ sources: lastUpdated: "2026-03-04T01:56:16Z" opentelemetry-helm.opentelemetry-operator: kind: helm - version: 0.107.0 - lastUpdated: "2026-03-10T16:59:44Z" + version: 0.106.0 + lastUpdated: "2026-03-01T14:39:08Z" operator-framework-api: kind: git version: v0.41.0 lastUpdated: "2026-03-01T14:39:13Z" oracle-cluster-api-provider-oci: kind: git - version: v0.23.1 - lastUpdated: "2026-03-13T01:46:50Z" + version: v0.23.0 + lastUpdated: "2026-03-04T16:51:17Z" ot-helm.redis-operator: kind: helm - version: 0.24.0 - lastUpdated: "2026-03-14T01:44:45Z" + version: 0.23.0 + lastUpdated: "2026-03-01T14:39:18Z" percona-everest.everest: kind: helm version: 1.13.0 @@ -1233,8 +1233,8 @@ sources: lastUpdated: "2026-03-01T14:39:51Z" piraeus-operator: kind: git - version: v2.10.5 - lastUpdated: "2026-03-10T16:59:55Z" + version: v2.10.4 + lastUpdated: "2026-03-01T20:43:17Z" postgres-operator-charts.postgres-operator: kind: helm version: 1.15.1 @@ -1245,8 +1245,8 @@ sources: lastUpdated: "2026-03-01T14:39:54Z" presslabs.wp-operator: kind: helm - version: 1.57.0 - lastUpdated: "2026-03-12T17:01:05Z" + version: 1.56.1 + lastUpdated: "2026-03-03T16:54:53Z" projectcalico: kind: git version: master @@ -1265,12 +1265,12 @@ sources: lastUpdated: "2026-03-01T14:40:19Z" prometheus-community.kube-prometheus-stack: kind: helm - version: 82.10.3 - lastUpdated: "2026-03-10T17:00:14Z" + version: 82.9.0 + lastUpdated: "2026-03-05T08:39:10Z" radius: kind: git - version: v0.55.0 - lastUpdated: "2026-03-07T01:31:47Z" + version: v0.54.0 + lastUpdated: "2026-03-01T14:40:28Z" rancher: kind: git version: v2.12.7 @@ -1281,16 +1281,16 @@ sources: lastUpdated: "2026-03-01T20:44:08Z" redislabs: kind: git - version: v7.22.2-38 - lastUpdated: "2026-03-13T16:39:52Z" + version: v8.0.10-23 + lastUpdated: "2026-03-01T14:40:56Z" redpanda-operator: kind: git version: v2.4.6 lastUpdated: "2026-03-01T20:44:23Z" renovate-operator: kind: helm-oci - version: 3.1.0 - lastUpdated: "2026-03-10T08:39:22Z" + version: 2.21.1 + lastUpdated: "2026-03-04T08:48:52Z" restatedev-restate-operator-helm: kind: helm-oci version: 2.2.0 @@ -1317,8 +1317,8 @@ sources: lastUpdated: "2026-03-01T14:41:20Z" scylla-operator.scylla-operator: kind: helm - version: v1.20.1 - lastUpdated: "2026-03-11T16:51:03Z" + version: v1.20.0 + lastUpdated: "2026-03-01T14:41:20Z" seaweedfs.seaweedfs-operator: kind: helm version: 0.1.13 @@ -1361,8 +1361,8 @@ sources: lastUpdated: "2026-03-01T14:41:46Z" spicedb-operator: kind: git - version: v1.23.0 - lastUpdated: "2026-03-09T17:00:44Z" + version: v1.22.0 + lastUpdated: "2026-03-01T14:41:48Z" spotahome_redis-operator: kind: http version: 1.12.0 @@ -1389,8 +1389,8 @@ sources: lastUpdated: "2026-03-01T14:41:55Z" teleport-agent-kube.teleport-operator: kind: helm - version: 18.7.3 - lastUpdated: "2026-03-11T01:33:25Z" + version: 18.7.1 + lastUpdated: "2026-03-01T14:41:56Z" temporal-operator.temporal-operator: kind: helm version: 0.6.0 @@ -1413,12 +1413,12 @@ sources: lastUpdated: "2026-03-01T20:44:55Z" traefik.traefik: kind: helm - version: 39.0.5 - lastUpdated: "2026-03-09T17:00:49Z" + version: 39.0.4 + lastUpdated: "2026-03-05T18:09:43Z" tuppr: kind: helm-oci - version: 0.1.2 - lastUpdated: "2026-03-12T17:02:01Z" + version: 0.0.80 + lastUpdated: "2026-03-04T01:58:29Z" twingate-operator: kind: helm-oci version: 0.29.0