Skip to content

Commit 45651ae

Browse files
chore: release 0.5.6 (#637)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 546635e commit 45651ae

File tree

7 files changed

+35
-8
lines changed

7 files changed

+35
-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.5",
2+
".": "0.5.6",
33
"apis": "0.2.41"
44
}

CHANGELOG.md

+27
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,32 @@
11
# Changelog
22

3+
## [0.5.6](https://github.com/open-feature/open-feature-operator/compare/v0.5.5...v0.5.6) (2024-05-28)
4+
5+
6+
### ✨ New Features
7+
8+
* add `flagd` CRD with ingress support ([#633](https://github.com/open-feature/open-feature-operator/issues/633)) ([b0b99a7](https://github.com/open-feature/open-feature-operator/commit/b0b99a7d101fb7e281394acd0d8b22a16546708f))
9+
* introduce new CRD for in-process evaluation ([#632](https://github.com/open-feature/open-feature-operator/issues/632)) ([51db913](https://github.com/open-feature/open-feature-operator/commit/51db913bc708cc60f00e430e372b68c28c7cbda2))
10+
11+
12+
### 🐛 Bug Fixes
13+
14+
* helm sidecar resources not applied ([#639](https://github.com/open-feature/open-feature-operator/issues/639)) ([d549144](https://github.com/open-feature/open-feature-operator/commit/d54914460b9f01e10bdc958a46ff210fd0f4c374))
15+
* inject env variables to all pod containers ([#634](https://github.com/open-feature/open-feature-operator/issues/634)) ([b21378e](https://github.com/open-feature/open-feature-operator/commit/b21378e4e58b050b36abb8492f6f15be5bca6268))
16+
* use flagd standalone tag instead of sidecar tag for flagd deployments ([#643](https://github.com/open-feature/open-feature-operator/issues/643)) ([a8b7ad4](https://github.com/open-feature/open-feature-operator/commit/a8b7ad49d8364492ffef9c96bfe08c66cfaf6fe3))
17+
18+
19+
### 🧹 Chore
20+
21+
* init workspace before linting ([#638](https://github.com/open-feature/open-feature-operator/issues/638)) ([65e20cf](https://github.com/open-feature/open-feature-operator/commit/65e20cf72b3e1c90e3c3a6ab714fd82c2189cd33))
22+
* release apis 0.2.41 ([#627](https://github.com/open-feature/open-feature-operator/issues/627)) ([546635e](https://github.com/open-feature/open-feature-operator/commit/546635e6d486fd0dbc4aba985e43a928918fd1f4))
23+
24+
25+
### 📚 Documentation
26+
27+
* document new Flagd CRD ([#641](https://github.com/open-feature/open-feature-operator/issues/641)) ([06b399e](https://github.com/open-feature/open-feature-operator/commit/06b399e0cf39bcee3a2804759649e7a28a38a55a))
28+
* support in-process evaluation ([#640](https://github.com/open-feature/open-feature-operator/issues/640)) ([9721825](https://github.com/open-feature/open-feature-operator/commit/972182539ea9ce0440f700456ddeb7d36672a8fb))
29+
330
## [0.5.5](https://github.com/open-feature/open-feature-operator/compare/v0.5.4...v0.5.5) (2024-05-13)
431

532

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.5# x-release-please-version
9+
CHART_VERSION=v0.5.6# 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.5" # x-release-please-version
16+
version: "v0.5.6" # 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.5" # x-release-please-version
21+
appVersion: "v0.5.6" # 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
@@ -123,7 +123,7 @@ controllerManager:
123123
## @param controllerManager.manager.image.repository Sets the image for the operator.
124124
repository: ghcr.io/open-feature/open-feature-operator
125125
## @param controllerManager.manager.image.tag Sets the version tag for the operator.
126-
tag: v0.5.5 # x-release-please-version
126+
tag: v0.5.6 # x-release-please-version
127127
resources:
128128
limits:
129129
## @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
@@ -62,13 +62,13 @@ Apply the release yaml directly via kubectl
6262
<!-- x-release-please-start-version -->
6363
```sh
6464
kubectl create namespace open-feature-operator-system &&
65-
kubectl apply -f https://github.com/open-feature/open-feature-operator/releases/download/v0.5.5/release.yaml
65+
kubectl apply -f https://github.com/open-feature/open-feature-operator/releases/download/v0.5.6/release.yaml
6666
```
6767
<!-- x-release-please-end -->
6868
### Uninstall
6969
<!-- x-release-please-start-version -->
7070
```sh
71-
kubectl delete -f https://github.com/open-feature/open-feature-operator/releases/download/v0.5.5/release.yaml &&
71+
kubectl delete -f https://github.com/open-feature/open-feature-operator/releases/download/v0.5.6/release.yaml &&
7272
kubectl delete namespace open-feature-operator-system
7373
```
7474
<!-- 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.5/release.yaml
43+
kubectl apply -f https://github.com/open-feature/open-feature-operator/releases/download/v0.5.6/release.yaml
4444
```
4545
<!-- x-release-please-end -->
4646

0 commit comments

Comments
 (0)