Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v1.0.0 #274

Merged
merged 1 commit into from
Apr 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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"
)