Skip to content

Commit 2ae0a1b

Browse files
chore: release 0.5.4
1 parent 0e03f47 commit 2ae0a1b

File tree

7 files changed

+29
-8
lines changed

7 files changed

+29
-8
lines changed

.release-please-manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
".": "0.5.3",
2+
".": "0.5.4",
33
"apis": "0.2.38"
44
}

CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# Changelog
22

3+
## [0.5.4](https://github.com/open-feature/open-feature-operator/compare/v0.5.3...v0.5.4) (2024-02-21)
4+
5+
6+
### ✨ New Features
7+
8+
* auto-upgrade flagd-proxy with OFO upgrades ([#596](https://github.com/open-feature/open-feature-operator/issues/596)) ([3271f33](https://github.com/open-feature/open-feature-operator/commit/3271f33623518408b0055b808c22434a46462a05))
9+
10+
11+
### 🧹 Chore
12+
13+
* add link to tutorial in README ([#594](https://github.com/open-feature/open-feature-operator/issues/594)) ([f3f9427](https://github.com/open-feature/open-feature-operator/commit/f3f9427287199e28d3e11313bad616f0e781048b))
14+
* bump go to 1.21 ([#604](https://github.com/open-feature/open-feature-operator/issues/604)) ([73d6319](https://github.com/open-feature/open-feature-operator/commit/73d6319820220fc114cdfc7d72f8c2327a35ec37))
15+
* **deps:** update actions/cache action to v4 ([#602](https://github.com/open-feature/open-feature-operator/issues/602)) ([e4476e2](https://github.com/open-feature/open-feature-operator/commit/e4476e2e5d2e2178ef280e6da324590115b80cb6))
16+
* **deps:** update curlimages/curl docker tag to v8.6.0 ([#599](https://github.com/open-feature/open-feature-operator/issues/599)) ([2b9d63a](https://github.com/open-feature/open-feature-operator/commit/2b9d63a6dbde5a716dc2e472e65b55ba36085c40))
17+
* **deps:** update open-feature/flagd ([#600](https://github.com/open-feature/open-feature-operator/issues/600)) ([0e03f47](https://github.com/open-feature/open-feature-operator/commit/0e03f47c295592fd9eb94185b1a8d69c5fe52559))
18+
19+
20+
### 📚 Documentation
21+
22+
* fix link to the flagd flag definition ([ffc6cec](https://github.com/open-feature/open-feature-operator/commit/ffc6cec3b19d6d59f103c8d6083836bafa14c352))
23+
324
## [0.5.3](https://github.com/open-feature/open-feature-operator/compare/v0.5.2...v0.5.3) (2023-12-29)
425

526

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ARCH?=amd64
66
IMG?=$(RELEASE_REGISTRY)/$(RELEASE_IMAGE)
77
# customize overlay to be used in the build, DEFAULT or HELM
88
KUSTOMIZE_OVERLAY ?= DEFAULT
9-
CHART_VERSION=v0.5.3# x-release-please-version
9+
CHART_VERSION=v0.5.4# x-release-please-version
1010
# ENVTEST_K8S_VERSION refers to the version of kubebuilder assets to be downloaded by envtest binary.
1111
ENVTEST_K8S_VERSION = 1.26.1
1212
WAIT_TIMEOUT_SECONDS?=60

chart/open-feature-operator/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ type: application
1313
# This is the chart version. This version number should be incremented each time you make changes
1414
# to the chart and its templates, including the app version.
1515
# Versions are expected to follow Semantic Versioning (https://semver.org/)
16-
version: "v0.5.3" # x-release-please-version
16+
version: "v0.5.4" # x-release-please-version
1717
# This is the version number of the application being deployed. This version number should be
1818
# incremented each time you make changes to the application. Versions are not expected to
1919
# follow Semantic Versioning. They should reflect the version the application is using.
2020
# It is recommended to use it with quotes.
21-
appVersion: "v0.5.3" # x-release-please-version
21+
appVersion: "v0.5.4" # x-release-please-version
2222

2323
home: https://openfeature.dev
2424
icon: https://open-feature.github.io/open-feature-operator/chart/open-feature-operator/openfeature-logo.png

chart/open-feature-operator/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ controllerManager:
7474
## @param controllerManager.manager.image.repository Sets the image for the operator.
7575
repository: ghcr.io/open-feature/open-feature-operator
7676
## @param controllerManager.manager.image.tag Sets the version tag for the operator.
77-
tag: v0.5.3 # x-release-please-version
77+
tag: v0.5.4 # x-release-please-version
7878
resources:
7979
limits:
8080
## @param controllerManager.manager.resources.limits.cpu Sets cpu resource limits for operator.

docs/installation.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -72,13 +72,13 @@ Apply the release yaml directly via kubectl
7272
<!-- x-release-please-start-version -->
7373
```sh
7474
kubectl create namespace open-feature-operator-system &&
75-
kubectl apply -f https://github.com/open-feature/open-feature-operator/releases/download/v0.5.3/release.yaml
75+
kubectl apply -f https://github.com/open-feature/open-feature-operator/releases/download/v0.5.4/release.yaml
7676
```
7777
<!-- x-release-please-end -->
7878
### Uninstall
7979
<!-- x-release-please-start-version -->
8080
```sh
81-
kubectl delete -f https://github.com/open-feature/open-feature-operator/releases/download/v0.5.3/release.yaml &&
81+
kubectl delete -f https://github.com/open-feature/open-feature-operator/releases/download/v0.5.4/release.yaml &&
8282
kubectl delete namespace open-feature-operator-system
8383
```
8484
<!-- x-release-please-end -->

docs/quick_start.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ helm upgrade --install openfeature openfeature/open-feature-operator
4040
<!-- x-release-please-start-version -->
4141
```sh
4242
kubectl create namespace open-feature-operator-system &&
43-
kubectl apply -f https://github.com/open-feature/open-feature-operator/releases/download/v0.5.3/release.yaml
43+
kubectl apply -f https://github.com/open-feature/open-feature-operator/releases/download/v0.5.4/release.yaml
4444
```
4545
<!-- x-release-please-end -->
4646

0 commit comments

Comments
 (0)