Skip to content

Commit

Permalink
Release v0.1.29
Browse files Browse the repository at this point in the history
  • Loading branch information
rhmdnd committed Jul 19, 2022
1 parent e6f15a0 commit 4da8ff8
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 7 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,24 @@ 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.29] - 2022-07-19
### Changes

### Fixes

- Restore role bindings for `file-integrity-daemon` to use `Role` instead of
`ClusterRole`. Using `ClusterRole` inadvertently broke during upgrades due to
expectations by Operator Lifecycle Manager. No action is required to consume
this fix besides upgrading to 0.1.29. Please see the [bug
report](https://bugzilla.redhat.com/show_bug.cgi?id=2108475) for more
details.

### Internal Changes

- The `make release-images` target was updated to publish new catalog images
with each release to
[quay.io/file-integrity-operator/file-integrity-operator-catalog](https://quay.io/repository/file-integrity-operator/file-integrity-operator-catalog).

## [0.1.28] - 2022-07-14

### 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.28'
olm.skipRange: '>=0.1.6 <0.1.29'
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.28
name: file-integrity-operator.v0.1.29
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.28
image: quay.io/file-integrity-operator/file-integrity-operator:0.1.29
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.28
version: 0.1.29
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.28'
olm.skipRange: '>=0.1.6 <0.1.29'
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.28
VERSION?=0.1.29
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.28"
Version = "0.1.29"
)

0 comments on commit 4da8ff8

Please sign in to comment.