Skip to content

Commit

Permalink
Release v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rhmdnd committed Apr 8, 2023
1 parent 6a949a1 commit 1dbee08
Show file tree
Hide file tree
Showing 6 changed files with 41 additions and 16 deletions.
31 changes: 23 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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

Expand Down
16 changes: 13 additions & 3 deletions bundle/manifests/compliance-operator.clusterserviceversion.yaml
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 <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"]'
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.v0.1.61
name: compliance-operator.v1.0.0
namespace: placeholder
spec:
apiservicedefinitions: {}
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -1618,4 +1628,4 @@ spec:
name: operator
- image: ghcr.io/complianceascode/k8scontent:latest
name: profile
version: 0.1.61
version: 1.0.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.v0.1.61",
"skipRange": ">=0.1.17 <0.1.61"
"name": "compliance-operator.v1.0.0",
"skipRange": ">=0.1.17 <1.0.0"
}
]
}
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 <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"]'
Expand Down
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?=0.1.61
VERSION?=1.0.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 = "0.1.61"
Version = "1.0.0"
)

0 comments on commit 1dbee08

Please sign in to comment.