Skip to content

Commit e480f5c

Browse files
committed
Release v0.1.28
1 parent 4136c9e commit e480f5c

File tree

5 files changed

+38
-7
lines changed

5 files changed

+38
-7
lines changed

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,37 @@ 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.28] - 2022-07-14
9+
10+
### Fixes
11+
12+
- Improved contributor experience by making cleanup `make` targets more robust.
13+
- Fixes a [bug](https://bugzilla.redhat.com/show_bug.cgi?id=2104897) where the
14+
operator isn't able to install into namespaces other than
15+
`openshift-file-integrity`.
16+
- Expose a new environment variable used by `make catalog-deploy` to deploy the
17+
operator in a non-default namespace.
18+
- The operator now uses the appropriate labels to prevent
19+
[warnings](https://bugzilla.redhat.com/show_bug.cgi?id=2088201) about
20+
elevated privileges.
21+
22+
### Internal Changes
23+
24+
- Minor documentation fixes clarifying details of the release process.
25+
- Removed unused `setup-envtest` dependency required by older versions of
26+
Operator SDK. This is no longer needed since upgrading the Operator SDK
27+
version.
28+
- Removed unnecessary `make` targets for build directories since `build/` is
29+
tracked as part of the repository.
30+
- Increased the grace period for end-to-end tests, giving setup functions
31+
enough time to prepare test environments, reducing transient test failures.
32+
- End-to-end tests now use a pod for generating files for test data instead of
33+
a daemon set to improve test speeds.
34+
35+
### Documentation
36+
37+
- The File Integrity Operator now explicitly contains an Apache 2.0 License.
38+
839
## [0.1.27] - 2022-07-06
940

1041
### 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.27'
22+
olm.skipRange: '>=0.1.6 <0.1.28'
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.27
35+
name: file-integrity-operator.v0.1.28
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.27
99+
image: quay.io/file-integrity-operator/file-integrity-operator:0.1.28
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.27
288+
version: 0.1.28

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

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

0 commit comments

Comments
 (0)