Skip to content

Commit 4da8ff8

Browse files
committed
Release v0.1.29
1 parent e6f15a0 commit 4da8ff8

File tree

5 files changed

+25
-7
lines changed

5 files changed

+25
-7
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,24 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic
66
Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.1.29] - 2022-07-19
9+
### Changes
10+
11+
### Fixes
12+
13+
- Restore role bindings for `file-integrity-daemon` to use `Role` instead of
14+
`ClusterRole`. Using `ClusterRole` inadvertently broke during upgrades due to
15+
expectations by Operator Lifecycle Manager. No action is required to consume
16+
this fix besides upgrading to 0.1.29. Please see the [bug
17+
report](https://bugzilla.redhat.com/show_bug.cgi?id=2108475) for more
18+
details.
19+
20+
### Internal Changes
21+
22+
- The `make release-images` target was updated to publish new catalog images
23+
with each release to
24+
[quay.io/file-integrity-operator/file-integrity-operator-catalog](https://quay.io/repository/file-integrity-operator/file-integrity-operator-catalog).
25+
826
## [0.1.28] - 2022-07-14
927

1028
### Fixes

bundle/manifests/file-integrity-operator.clusterserviceversion.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ metadata:
1919
]
2020
capabilities: Seamless Upgrades
2121
categories: Monitoring,Security
22-
olm.skipRange: '>=0.1.6 <0.1.28'
22+
olm.skipRange: '>=0.1.6 <0.1.29'
2323
operatorframework.io/cluster-monitoring: "true"
2424
operatorframework.io/suggested-namespace: openshift-file-integrity
2525
operators.openshift.io/infrastructure-features: '["disconnected", "fips"]'
@@ -32,7 +32,7 @@ metadata:
3232
operatorframework.io/arch.s390x: supported
3333
operatorframework.io/os.linux: supported
3434
operatorframework.io/os.zos: supported
35-
name: file-integrity-operator.v0.1.28
35+
name: file-integrity-operator.v0.1.29
3636
namespace: placeholder
3737
spec:
3838
apiservicedefinitions: {}
@@ -96,7 +96,7 @@ spec:
9696
value: file-integrity-operator
9797
- name: RELATED_IMAGE_OPERATOR
9898
value: quay.io/file-integrity-operator/file-integrity-operator:latest
99-
image: quay.io/file-integrity-operator/file-integrity-operator:0.1.28
99+
image: quay.io/file-integrity-operator/file-integrity-operator:0.1.29
100100
imagePullPolicy: Always
101101
name: file-integrity-operator
102102
resources:
@@ -285,4 +285,4 @@ spec:
285285
provider:
286286
name: Red Hat
287287
url: https://github.com/openshift/file-integrity-operator
288-
version: 0.1.28
288+
version: 0.1.29

config/manifests/bases/file-integrity-operator.clusterserviceversion.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ metadata:
1919
]
2020
capabilities: Seamless Upgrades
2121
categories: Monitoring,Security
22-
olm.skipRange: '>=0.1.6 <0.1.28'
22+
olm.skipRange: '>=0.1.6 <0.1.29'
2323
operatorframework.io/cluster-monitoring: "true"
2424
operatorframework.io/suggested-namespace: openshift-file-integrity
2525
operators.openshift.io/infrastructure-features: '["disconnected", "fips"]'

version.Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# - use the VERSION as arg of the bundle target (e.g make bundle VERSION=0.0.2)
33
# - use environment variables to overwrite this value (e.g export VERSION=0.0.2)
44

5-
VERSION?=0.1.28
5+
VERSION?=0.1.29

version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package version
22

33
var (
4-
Version = "0.1.28"
4+
Version = "0.1.29"
55
)

0 commit comments

Comments
 (0)