Skip to content

Commit 4905484

Browse files
committed
Release v0.1.30
1 parent 9986874 commit 4905484

File tree

5 files changed

+16
-7
lines changed

5 files changed

+16
-7
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@ 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.30] - 2022-07-25
9+
10+
### Fixes
11+
12+
- Fixed an [issue](https://bugzilla.redhat.com/show_bug.cgi?id=2109153) where
13+
upgrades from older versions (0.1.24) would fail due to incorrect ownership of
14+
the File Integrity Operator service accounts. We recommend users upgrade to
15+
version 0.1.30 to avoid the issue.
16+
817
## [0.1.29] - 2022-07-19
918
### Changes
1019

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.29'
22+
olm.skipRange: '>=0.1.6 <0.1.30'
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.29
35+
name: file-integrity-operator.v0.1.30
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.29
99+
image: quay.io/file-integrity-operator/file-integrity-operator:0.1.30
100100
imagePullPolicy: Always
101101
name: file-integrity-operator
102102
resources:
@@ -316,4 +316,4 @@ spec:
316316
provider:
317317
name: Red Hat
318318
url: https://github.com/openshift/file-integrity-operator
319-
version: 0.1.29
319+
version: 0.1.30

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.29'
22+
olm.skipRange: '>=0.1.6 <0.1.30'
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.29
5+
VERSION?=0.1.30

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.29"
4+
Version = "0.1.30"
55
)

0 commit comments

Comments
 (0)