Skip to content

Commit

Permalink
Release v0.1.28
Browse files Browse the repository at this point in the history
  • Loading branch information
rhmdnd committed Jul 14, 2022
1 parent 4136c9e commit e480f5c
Show file tree
Hide file tree
Showing 5 changed files with 38 additions and 7 deletions.
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,37 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic
Versioning](https://semver.org/spec/v2.0.0.html).

## [0.1.28] - 2022-07-14

### Fixes

- Improved contributor experience by making cleanup `make` targets more robust.
- Fixes a [bug](https://bugzilla.redhat.com/show_bug.cgi?id=2104897) where the
operator isn't able to install into namespaces other than
`openshift-file-integrity`.
- Expose a new environment variable used by `make catalog-deploy` to deploy the
operator in a non-default namespace.
- The operator now uses the appropriate labels to prevent
[warnings](https://bugzilla.redhat.com/show_bug.cgi?id=2088201) about
elevated privileges.

### Internal Changes

- Minor documentation fixes clarifying details of the release process.
- Removed unused `setup-envtest` dependency required by older versions of
Operator SDK. This is no longer needed since upgrading the Operator SDK
version.
- Removed unnecessary `make` targets for build directories since `build/` is
tracked as part of the repository.
- Increased the grace period for end-to-end tests, giving setup functions
enough time to prepare test environments, reducing transient test failures.
- End-to-end tests now use a pod for generating files for test data instead of
a daemon set to improve test speeds.

### Documentation

- The File Integrity Operator now explicitly contains an Apache 2.0 License.

## [0.1.27] - 2022-07-06

### Fixes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ metadata:
]
capabilities: Seamless Upgrades
categories: Monitoring,Security
olm.skipRange: '>=0.1.6 <0.1.27'
olm.skipRange: '>=0.1.6 <0.1.28'
operatorframework.io/cluster-monitoring: "true"
operatorframework.io/suggested-namespace: openshift-file-integrity
operators.openshift.io/infrastructure-features: '["disconnected", "fips"]'
Expand All @@ -32,7 +32,7 @@ metadata:
operatorframework.io/arch.s390x: supported
operatorframework.io/os.linux: supported
operatorframework.io/os.zos: supported
name: file-integrity-operator.v0.1.27
name: file-integrity-operator.v0.1.28
namespace: placeholder
spec:
apiservicedefinitions: {}
Expand Down Expand Up @@ -96,7 +96,7 @@ spec:
value: file-integrity-operator
- name: RELATED_IMAGE_OPERATOR
value: quay.io/file-integrity-operator/file-integrity-operator:latest
image: quay.io/file-integrity-operator/file-integrity-operator:0.1.27
image: quay.io/file-integrity-operator/file-integrity-operator:0.1.28
imagePullPolicy: Always
name: file-integrity-operator
resources:
Expand Down Expand Up @@ -285,4 +285,4 @@ spec:
provider:
name: Red Hat
url: https://github.com/openshift/file-integrity-operator
version: 0.1.27
version: 0.1.28
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ metadata:
]
capabilities: Seamless Upgrades
categories: Monitoring,Security
olm.skipRange: '>=0.1.6 <0.1.27'
olm.skipRange: '>=0.1.6 <0.1.28'
operatorframework.io/cluster-monitoring: "true"
operatorframework.io/suggested-namespace: openshift-file-integrity
operators.openshift.io/infrastructure-features: '["disconnected", "fips"]'
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.27
VERSION?=0.1.28
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.27"
Version = "0.1.28"
)

0 comments on commit e480f5c

Please sign in to comment.