Skip to content

Commit a03d80e

Browse files
committed
Release v1.6.0
1 parent fed54b4 commit a03d80e

File tree

6 files changed

+21
-11
lines changed

6 files changed

+21
-11
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,16 @@ Versioning](https://semver.org/spec/v2.0.0.html).
3232
-
3333

3434

35+
## [1.6.0] - 2024-09-12
36+
37+
### Enhancements
38+
39+
- The operator now supports timestamps on each `ComplianceCheckResult` with the
40+
`compliance.openshift.io/last-scanned-timestamp` annotation. This annotation
41+
is updated each time a scan runs.
42+
- Each `ComplianceScan` resource now includes a total `ComplianceCheckResult`
43+
count using the `compliance.openshift.io/check-count` annotation.
44+
3545
## [1.5.0] - 2024-05-31
3646

3747
### Enhancements

bundle/manifests/compliance-operator.clusterserviceversion.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ metadata:
161161
capabilities: Seamless Upgrades
162162
categories: Monitoring,Security
163163
must-gather-image: ghcr.io/complianceascode/must-gather-ocp:latest
164-
olm.skipRange: '>=0.1.17 <1.5.0'
164+
olm.skipRange: '>=0.1.17 <1.6.0'
165165
operatorframework.io/cluster-monitoring: "true"
166166
operatorframework.io/suggested-namespace: openshift-compliance
167167
operators.openshift.io/infrastructure-features: '["disconnected", "fips", "proxy-aware"]'
@@ -175,7 +175,7 @@ metadata:
175175
operatorframework.io/arch.amd64: supported
176176
operatorframework.io/arch.ppc64le: supported
177177
operatorframework.io/arch.s390x: supported
178-
name: compliance-operator.v1.5.0
178+
name: compliance-operator.v1.6.0
179179
namespace: placeholder
180180
spec:
181181
apiservicedefinitions: {}
@@ -1679,5 +1679,5 @@ spec:
16791679
name: operator
16801680
- image: ghcr.io/complianceascode/k8scontent:latest
16811681
name: profile
1682-
replaces: compliance-operator.v1.4.1
1683-
version: 1.5.0
1682+
replaces: compliance-operator.v1.5.0
1683+
version: 1.6.0

catalog/preamble.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
"package": "compliance-operator",
1414
"entries": [
1515
{
16-
"name": "compliance-operator.v1.5.0",
17-
"skipRange": ">=0.1.17 <1.5.0"
16+
"name": "compliance-operator.v1.6.0",
17+
"skipRange": ">=0.1.17 <1.6.0"
1818
}
1919
]
2020
}

config/manifests/bases/compliance-operator.clusterserviceversion.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ metadata:
161161
capabilities: Seamless Upgrades
162162
categories: Monitoring,Security
163163
must-gather-image: ghcr.io/complianceascode/must-gather-ocp:latest
164-
olm.skipRange: '>=0.1.17 <1.5.0'
164+
olm.skipRange: '>=0.1.17 <1.6.0'
165165
operatorframework.io/cluster-monitoring: "true"
166166
operatorframework.io/suggested-namespace: openshift-compliance
167167
operators.openshift.io/infrastructure-features: '["disconnected", "fips", "proxy-aware"]'
@@ -1558,5 +1558,5 @@ spec:
15581558
provider:
15591559
name: Red Hat Inc.
15601560
url: www.redhat.com
1561-
replaces: compliance-operator.v1.4.1
1562-
version: 1.5.0
1561+
replaces: compliance-operator.v1.5.0
1562+
version: 1.6.0

version.Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# - use the VERSION as arg of the bundle target (e.g make bundle VERSION=0.0.2)
33
# - use environment variables to overwrite this value (e.g export VERSION=0.0.2)
44

5-
VERSION?=1.5.0
5+
VERSION?=1.6.0

version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package version
22

33
var (
4-
Version = "1.5.0"
4+
Version = "1.6.0"
55
)

0 commit comments

Comments
 (0)