Skip to content

Commit

Permalink
Release v1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rhmdnd committed Sep 12, 2024
1 parent fed54b4 commit a03d80e
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 11 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,16 @@ Versioning](https://semver.org/spec/v2.0.0.html).
-


## [1.6.0] - 2024-09-12

### Enhancements

- The operator now supports timestamps on each `ComplianceCheckResult` with the
`compliance.openshift.io/last-scanned-timestamp` annotation. This annotation
is updated each time a scan runs.
- Each `ComplianceScan` resource now includes a total `ComplianceCheckResult`
count using the `compliance.openshift.io/check-count` annotation.

## [1.5.0] - 2024-05-31

### Enhancements
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ metadata:
capabilities: Seamless Upgrades
categories: Monitoring,Security
must-gather-image: ghcr.io/complianceascode/must-gather-ocp:latest
olm.skipRange: '>=0.1.17 <1.5.0'
olm.skipRange: '>=0.1.17 <1.6.0'
operatorframework.io/cluster-monitoring: "true"
operatorframework.io/suggested-namespace: openshift-compliance
operators.openshift.io/infrastructure-features: '["disconnected", "fips", "proxy-aware"]'
Expand All @@ -175,7 +175,7 @@ metadata:
operatorframework.io/arch.amd64: supported
operatorframework.io/arch.ppc64le: supported
operatorframework.io/arch.s390x: supported
name: compliance-operator.v1.5.0
name: compliance-operator.v1.6.0
namespace: placeholder
spec:
apiservicedefinitions: {}
Expand Down Expand Up @@ -1679,5 +1679,5 @@ spec:
name: operator
- image: ghcr.io/complianceascode/k8scontent:latest
name: profile
replaces: compliance-operator.v1.4.1
version: 1.5.0
replaces: compliance-operator.v1.5.0
version: 1.6.0
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.5.0",
"skipRange": ">=0.1.17 <1.5.0"
"name": "compliance-operator.v1.6.0",
"skipRange": ">=0.1.17 <1.6.0"
}
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ metadata:
capabilities: Seamless Upgrades
categories: Monitoring,Security
must-gather-image: ghcr.io/complianceascode/must-gather-ocp:latest
olm.skipRange: '>=0.1.17 <1.5.0'
olm.skipRange: '>=0.1.17 <1.6.0'
operatorframework.io/cluster-monitoring: "true"
operatorframework.io/suggested-namespace: openshift-compliance
operators.openshift.io/infrastructure-features: '["disconnected", "fips", "proxy-aware"]'
Expand Down Expand Up @@ -1558,5 +1558,5 @@ spec:
provider:
name: Red Hat Inc.
url: www.redhat.com
replaces: compliance-operator.v1.4.1
version: 1.5.0
replaces: compliance-operator.v1.5.0
version: 1.6.0
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.5.0
VERSION?=1.6.0
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.5.0"
Version = "1.6.0"
)

0 comments on commit a03d80e

Please sign in to comment.