From 1489ddaf98a458f41a3fb0c1871961068fb39a00 Mon Sep 17 00:00:00 2001 From: vincent Date: Thu, 19 May 2022 11:25:31 -0700 Subject: [PATCH] Release v0.1.52 --- CHANGELOG.md | 20 +++++++++++++------ deploy/compliance-operator-chart/Chart.yaml | 2 +- ...liance-operator.clusterserviceversion.yaml | 10 +++++----- version/version.go | 2 +- 4 files changed, 21 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fa7981189..8509b29a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,12 +13,7 @@ Versioning](https://semver.org/spec/v2.0.0.html). ### Fixes -- It came to notice that Machine Config Operator is using base64 encoding - instead of url-encoding for Machine Config source on OVN cluster. And it - is causing remediation to fail on OVN cluster. This fix addresses that issue - by checking encoding to handle both base64 and url-encoded MC source, so - that the remediation will work properly. - [bug](https://bugzilla.redhat.com/show_bug.cgi?id=2082431) for more information. +- ### Internal Changes @@ -37,6 +32,19 @@ Versioning](https://semver.org/spec/v2.0.0.html). - +## [0.1.52] - 2022-05-19 + + +### Fixes + +- It came to notice that Machine Config Operator is using base64 encoding + instead of url-encoding for Machine Config source on OVN cluster. And it + is causing remediation to fail on OVN cluster. This fix addresses that issue + by checking encoding to handle both base64 and url-encoded MC source, so + that the remediation will work properly. + [bug](https://bugzilla.redhat.com/show_bug.cgi?id=2082431) for more information. + + ## [0.1.51] - 2022-05-10 ### Enhancements diff --git a/deploy/compliance-operator-chart/Chart.yaml b/deploy/compliance-operator-chart/Chart.yaml index f913619e9..97a8b49b2 100644 --- a/deploy/compliance-operator-chart/Chart.yaml +++ b/deploy/compliance-operator-chart/Chart.yaml @@ -21,4 +21,4 @@ version: 0.1.0 # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "0.1.51" +appVersion: "0.1.52" diff --git a/deploy/olm-catalog/compliance-operator/manifests/compliance-operator.clusterserviceversion.yaml b/deploy/olm-catalog/compliance-operator/manifests/compliance-operator.clusterserviceversion.yaml index 2116d951d..56dab0754 100644 --- a/deploy/olm-catalog/compliance-operator/manifests/compliance-operator.clusterserviceversion.yaml +++ b/deploy/olm-catalog/compliance-operator/manifests/compliance-operator.clusterserviceversion.yaml @@ -160,7 +160,7 @@ metadata: ] capabilities: Seamless Upgrades categories: Monitoring,Security - olm.skipRange: '>=0.1.17 <0.1.51' + olm.skipRange: '>=0.1.17 <0.1.52' operatorframework.io/cluster-monitoring: "true" operatorframework.io/suggested-namespace: openshift-compliance operators.openshift.io/infrastructure-features: '["disconnected", "fips", "proxy-aware"]' @@ -170,7 +170,7 @@ metadata: operatorframework.io/arch.amd64: supported operatorframework.io/arch.ppc64le: supported operatorframework.io/arch.s390x: supported - name: compliance-operator.v0.1.51 + name: compliance-operator.v0.1.52 namespace: placeholder spec: apiservicedefinitions: {} @@ -1292,10 +1292,10 @@ spec: - name: RELATED_IMAGE_OPENSCAP value: quay.io/compliance-operator/openscap-ocp:1.3.5 - name: RELATED_IMAGE_OPERATOR - value: quay.io/compliance-operator/compliance-operator:0.1.51 + value: quay.io/compliance-operator/compliance-operator:0.1.52 - name: RELATED_IMAGE_PROFILE value: quay.io/compliance-operator/compliance-operator-content:latest - image: quay.io/compliance-operator/compliance-operator:0.1.51 + image: quay.io/compliance-operator/compliance-operator:0.1.52 imagePullPolicy: Always name: compliance-operator resources: @@ -1618,4 +1618,4 @@ spec: provider: name: Red Hat Inc. url: www.redhat.com - version: 0.1.51 + version: 0.1.52 diff --git a/version/version.go b/version/version.go index 7969ceabe..49cf80f1a 100644 --- a/version/version.go +++ b/version/version.go @@ -1,5 +1,5 @@ package version var ( - Version = "0.1.51" + Version = "0.1.52" )