Skip to content

Commit

Permalink
Release v1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rhmdnd committed Jun 8, 2023
1 parent 5080ea3 commit a23e38f
Show file tree
Hide file tree
Showing 6 changed files with 37 additions and 10 deletions.
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,33 @@ 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).

## [1.3.0] - 2023-06-08
### Changes
- Bump github.com/onsi/gomega from 1.27.7 to 1.27.8
- Bump github.com/sirupsen/logrus from 1.9.2 to 1.9.3
- Bump github.com/prometheus-operator/prometheus-operator/pkg/client
- Adjust FIO controller initialization to controller-runtime 0.15
- Bump controller-runtime, k8s deps and library-go
- Bump github.com/stretchr/testify from 1.8.3 to 1.8.4
- Change the default config file to exclude kubelet CA
- Bump github.com/securego/gosec/v2 from 2.15.0 to 2.16.0
- Bump github.com/prometheus/client_golang from 1.15.0 to 1.15.1
- Bump github.com/stretchr/testify from 1.8.2 to 1.8.3
- Bump k8s.io/apimachinery from 0.27.1 to 0.27.2
- Bump github.com/onsi/gomega from 1.27.6 to 1.27.7
- Bump github.com/sirupsen/logrus from 1.9.0 to 1.9.2
- Fix re-inits issues
- Bump golang.org/x/net from 0.9.0 to 0.10.0
- Bump github.com/cenkalti/backoff/v4 from 4.2.0 to 4.2.1
- Bump k8s.io/apimachinery from 0.27.0 to 0.27.1
- Fix Node scaling issue
- Bump github.com/prometheus/client_golang from 1.14.0 to 1.15.0
- Bump k8s.io/apimachinery from 0.26.3 to 0.27.0
- Bump golang.org/x/net from 0.8.0 to 0.9.0
- Bump github.com/spf13/cobra from 1.6.1 to 1.7.0
- Bump golang.org/x/mod from 0.9.0 to 0.10.0
- Bump github.com/onsi/gomega from 1.27.4 to 1.27.6

## [1.2.1] - 2023-03-31
### Changes
- Use RHEL8 for building FIO container images in CI
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ metadata:
]
capabilities: Seamless Upgrades
categories: Monitoring,Security
createdAt: "2023-03-31T19:00:47Z"
olm.skipRange: '>=1.0.0 <1.2.1'
createdAt: "2023-06-08T20:42:55Z"
olm.skipRange: '>=1.0.0 <1.3.0'
operatorframework.io/cluster-monitoring: "true"
operatorframework.io/suggested-namespace: openshift-file-integrity
operators.openshift.io/infrastructure-features: '["disconnected", "fips"]'
Expand All @@ -35,7 +35,7 @@ metadata:
operatorframework.io/arch.s390x: supported
operatorframework.io/os.linux: supported
operatorframework.io/os.zos: supported
name: file-integrity-operator.v1.2.1
name: file-integrity-operator.v1.3.0
namespace: placeholder
spec:
apiservicedefinitions: {}
Expand Down Expand Up @@ -99,7 +99,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:1.2.1
image: quay.io/file-integrity-operator/file-integrity-operator:1.3.0
imagePullPolicy: Always
name: file-integrity-operator
resources:
Expand Down Expand Up @@ -324,4 +324,4 @@ spec:
relatedImages:
- image: quay.io/file-integrity-operator/file-integrity-operator:latest
name: operator
version: 1.2.1
version: 1.3.0
4 changes: 2 additions & 2 deletions catalog/preamble.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
"package": "file-integrity-operator",
"entries": [
{
"name": "file-integrity-operator.v1.2.1",
"skipRange": ">=1.0.0 <1.2.1"
"name": "file-integrity-operator.v1.3.0",
"skipRange": ">=1.0.0 <1.3.0"
}
]
}
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: '>=1.0.0 <1.2.1'
olm.skipRange: '>=1.0.0 <1.3.0'
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?=1.2.1
VERSION?=1.3.0
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 = "1.2.1"
Version = "1.3.0"
)

0 comments on commit a23e38f

Please sign in to comment.