diff --git a/CHANGELOG.md b/CHANGELOG.md index 9cc3a9df8..449d7af91 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/bundle/manifests/file-integrity-operator.clusterserviceversion.yaml b/bundle/manifests/file-integrity-operator.clusterserviceversion.yaml index 6d47538f6..4acdf351e 100644 --- a/bundle/manifests/file-integrity-operator.clusterserviceversion.yaml +++ b/bundle/manifests/file-integrity-operator.clusterserviceversion.yaml @@ -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"]' @@ -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: {} @@ -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: @@ -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 diff --git a/catalog/preamble.json b/catalog/preamble.json index 6e6209fa4..4a0bc1f39 100644 --- a/catalog/preamble.json +++ b/catalog/preamble.json @@ -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" } ] } diff --git a/config/manifests/bases/file-integrity-operator.clusterserviceversion.yaml b/config/manifests/bases/file-integrity-operator.clusterserviceversion.yaml index 55e2f7a36..fa1738a40 100644 --- a/config/manifests/bases/file-integrity-operator.clusterserviceversion.yaml +++ b/config/manifests/bases/file-integrity-operator.clusterserviceversion.yaml @@ -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"]' diff --git a/version.Makefile b/version.Makefile index 431d711db..a27d1fab7 100644 --- a/version.Makefile +++ b/version.Makefile @@ -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 \ No newline at end of file +VERSION?=1.3.0 \ No newline at end of file diff --git a/version/version.go b/version/version.go index 251811c4b..5ab462930 100644 --- a/version/version.go +++ b/version/version.go @@ -1,5 +1,5 @@ package version var ( - Version = "1.2.1" + Version = "1.3.0" )