diff --git a/CHANGELOG.md b/CHANGELOG.md index e047e8346..0acdbe588 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,29 @@ Versioning](https://semver.org/spec/v2.0.0.html). ### Internal Changes +- + +### Deprecations + +- + +### Removals + +- + +### Security + +- + + +## [1.0.0] - 2023-04-08 + +The Compliance Operator is now stable and follows semantic versioning rules. No +backwards incompatible changes were made between version 0.1.61 and 1.0.0 to +allow for smoother upgrades. + +### Internal Changes + - Fix openscap image substitution in Makefile so that the correct image is used. - Fix github operator image workflow to listen to the master branch, added @@ -32,10 +55,6 @@ Versioning](https://semver.org/spec/v2.0.0.html). - Added documentation on how to run platform scan on HyperShift Management Cluster in `doc/usage.md`. -### Deprecations - -- - ### Removals - The `compliance_scan_error_total` metric was designed to count individual @@ -46,10 +65,6 @@ Versioning](https://semver.org/spec/v2.0.0.html). in the metric has been removed to reduce cardinality. Please see the [bug report](https://issues.redhat.com/browse/OCPBUGS-1803) for more details. -### Security - -- - ## [0.1.61] - 2023-02-08 diff --git a/bundle/manifests/compliance-operator.clusterserviceversion.yaml b/bundle/manifests/compliance-operator.clusterserviceversion.yaml index 65c6e84f5..95ce29acf 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 <0.1.61' + olm.skipRange: '>=0.1.17 <1.0.0' 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.v0.1.61 + name: compliance-operator.v1.0.0 namespace: placeholder spec: apiservicedefinitions: {} @@ -1003,6 +1003,16 @@ spec: - get - list - watch + - apiGroups: + - imageregistry.operator.openshift.io + resourceNames: + - cluster + resources: + - imagepruners + verbs: + - get + - list + - watch - apiGroups: - operator.openshift.io resourceNames: @@ -1618,4 +1628,4 @@ spec: name: operator - image: ghcr.io/complianceascode/k8scontent:latest name: profile - version: 0.1.61 + version: 1.0.0 diff --git a/catalog/preamble.json b/catalog/preamble.json index f680f6eca..2749fc5d3 100644 --- a/catalog/preamble.json +++ b/catalog/preamble.json @@ -13,8 +13,8 @@ "package": "compliance-operator", "entries": [ { - "name": "compliance-operator.v0.1.61", - "skipRange": ">=0.1.17 <0.1.61" + "name": "compliance-operator.v1.0.0", + "skipRange": ">=0.1.17 <1.0.0" } ] } diff --git a/config/manifests/bases/compliance-operator.clusterserviceversion.yaml b/config/manifests/bases/compliance-operator.clusterserviceversion.yaml index 3b188bcbf..8cd549515 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 <0.1.61' + olm.skipRange: '>=0.1.17 <1.0.0' operatorframework.io/cluster-monitoring: "true" operatorframework.io/suggested-namespace: openshift-compliance operators.openshift.io/infrastructure-features: '["disconnected", "fips", "proxy-aware"]' diff --git a/version.Makefile b/version.Makefile index cfee40dbb..18979a751 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?=0.1.61 \ No newline at end of file +VERSION?=1.0.0 \ No newline at end of file diff --git a/version/version.go b/version/version.go index cb358fae0..e65edb7e9 100644 --- a/version/version.go +++ b/version/version.go @@ -1,5 +1,5 @@ package version var ( - Version = "0.1.61" + Version = "1.0.0" )