Skip to content

Commit

Permalink
Release v1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rhmdnd committed May 3, 2024
1 parent e9ca64b commit 96566cc
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 10 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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"]'
Expand All @@ -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: {}
Expand Down Expand Up @@ -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
4 changes: 2 additions & 2 deletions catalog/preamble.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -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"]'
Expand Down Expand Up @@ -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
2 changes: 1 addition & 1 deletion version.Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
VERSION?=1.4.1
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package version

var (
Version = "1.4.0"
Version = "1.4.1"
)

0 comments on commit 96566cc

Please sign in to comment.