From 96566cc2cd7210eacc8d7ba4525b804711ab79db Mon Sep 17 00:00:00 2001 From: Lance Bragstad Date: Wed, 17 Apr 2024 12:27:03 -0500 Subject: [PATCH] Release v1.4.1 --- CHANGELOG.md | 11 +++++++++++ .../compliance-operator.clusterserviceversion.yaml | 7 ++++--- catalog/preamble.json | 4 ++-- .../compliance-operator.clusterserviceversion.yaml | 6 +++--- version.Makefile | 2 +- version/version.go | 2 +- 6 files changed, 22 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a6550c079..151adecf0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -32,6 +32,17 @@ Versioning](https://semver.org/spec/v2.0.0.html). - +## [1.4.1] - 2024-04-17 + +### Fixes + +- [CMP-29272](https://issues.redhat.com/browse/OCPBUGS-29272) The Compliance + Operator will now clean up scan results when they're removed from a + `ScanSettingBinding`. +- The Compliance Operator nows supports running multiple node profiles in the + same `ScanSettingBinding`. This makes it easier to have a single + `ScanSettingBinding` that contains all profiles for a benchmark. + ## [1.4.0] - 2023-12-01 ### Enhancements diff --git a/bundle/manifests/compliance-operator.clusterserviceversion.yaml b/bundle/manifests/compliance-operator.clusterserviceversion.yaml index c75ce1a37..7a727ee83 100644 --- a/bundle/manifests/compliance-operator.clusterserviceversion.yaml +++ b/bundle/manifests/compliance-operator.clusterserviceversion.yaml @@ -160,7 +160,7 @@ metadata: ] capabilities: Seamless Upgrades categories: Monitoring,Security - olm.skipRange: '>=0.1.17 <1.4.0' + olm.skipRange: '>=0.1.17 <1.4.1' operatorframework.io/cluster-monitoring: "true" operatorframework.io/suggested-namespace: openshift-compliance operators.openshift.io/infrastructure-features: '["disconnected", "fips", "proxy-aware"]' @@ -174,7 +174,7 @@ metadata: operatorframework.io/arch.amd64: supported operatorframework.io/arch.ppc64le: supported operatorframework.io/arch.s390x: supported - name: compliance-operator.v1.4.0 + name: compliance-operator.v1.4.1 namespace: placeholder spec: apiservicedefinitions: {} @@ -1653,4 +1653,5 @@ spec: name: operator - image: ghcr.io/complianceascode/k8scontent:latest name: profile - version: 1.4.0 + replaces: compliance-operator.v1.4.0 + version: 1.4.1 diff --git a/catalog/preamble.json b/catalog/preamble.json index 5aa00e0ff..6fca687cb 100644 --- a/catalog/preamble.json +++ b/catalog/preamble.json @@ -13,8 +13,8 @@ "package": "compliance-operator", "entries": [ { - "name": "compliance-operator.v1.4.0", - "skipRange": ">=0.1.17 <1.4.0" + "name": "compliance-operator.v1.4.1", + "skipRange": ">=0.1.17 <1.4.1" } ] } diff --git a/config/manifests/bases/compliance-operator.clusterserviceversion.yaml b/config/manifests/bases/compliance-operator.clusterserviceversion.yaml index 07a2ad527..2eb67f91e 100644 --- a/config/manifests/bases/compliance-operator.clusterserviceversion.yaml +++ b/config/manifests/bases/compliance-operator.clusterserviceversion.yaml @@ -160,7 +160,7 @@ metadata: ] capabilities: Seamless Upgrades categories: Monitoring,Security - olm.skipRange: '>=0.1.17 <1.4.0' + olm.skipRange: '>=0.1.17 <1.4.1' operatorframework.io/cluster-monitoring: "true" operatorframework.io/suggested-namespace: openshift-compliance operators.openshift.io/infrastructure-features: '["disconnected", "fips", "proxy-aware"]' @@ -1557,5 +1557,5 @@ spec: provider: name: Red Hat Inc. url: www.redhat.com - replaces: 1.3.1 - version: 1.4.0 + replaces: compliance-operator.v1.4.0 + version: 1.4.1 diff --git a/version.Makefile b/version.Makefile index 5eebdcb2d..ff332c839 100644 --- a/version.Makefile +++ b/version.Makefile @@ -2,4 +2,4 @@ # - use the VERSION as arg of the bundle target (e.g make bundle VERSION=0.0.2) # - use environment variables to overwrite this value (e.g export VERSION=0.0.2) -VERSION?=1.4.0 \ No newline at end of file +VERSION?=1.4.1 \ No newline at end of file diff --git a/version/version.go b/version/version.go index 6f3e4ce07..70012cb41 100644 --- a/version/version.go +++ b/version/version.go @@ -1,5 +1,5 @@ package version var ( - Version = "1.4.0" + Version = "1.4.1" )