Skip to content

Commit bcc7820

Browse files
authored
release v0.26.4 (#10)
* fix envtest dependency handling * release v0.26.4
1 parent 80a8bd7 commit bcc7820

File tree

6 files changed

+8
-18
lines changed

6 files changed

+8
-18
lines changed

Taskfile.yaml

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ includes:
1515
flatten: true
1616
excludes: # put task names in here which are overwritten in this file
1717
- generate:code
18-
- validate:test
1918
vars:
2019
NESTED_MODULES: api
2120
API_DIRS: '{{.ROOT_DIR}}/api/core/v1alpha1/...'
@@ -24,6 +23,7 @@ includes:
2423
COMPONENTS: 'mcp-operator'
2524
REPO_URL: 'https://github.com/openmcp-project/mcp-operator'
2625
GENERATE_DOCS_INDEX: "true"
26+
ENVTEST_REQUIRED: "true"
2727
common: # imported a second time so that overwriting task definitions can call the overwritten task with a 'c:' prefix
2828
taskfile: hack/common/Taskfile_controller.yaml
2929
internal: true
@@ -37,6 +37,7 @@ includes:
3737
COMPONENTS: 'mcp-operator'
3838
REPO_URL: 'https://github.com/openmcp-project/mcp-operator'
3939
GENERATE_DOCS_INDEX: "true"
40+
ENVTEST_REQUIRED: "true"
4041

4142
tasks:
4243
generate:code: # overwrites shared code task to add external API fetching
@@ -58,14 +59,3 @@ tasks:
5859
cmds:
5960
- 'go run {{.ROOT_DIR}}/hack/external-apis/main.go'
6061
internal: true
61-
62-
validate:test: # overwrites the test task to add a dependency towards envtest
63-
desc: " Run all tests."
64-
aliases:
65-
- val:test
66-
- v:test
67-
run: once
68-
deps:
69-
- tools:envtest
70-
cmds:
71-
- task: c:validate:test

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v0.26.3-dev
1+
v0.26.4

charts/mcp-operator/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: v2
22
name: mcp-operator
33
description: A Helm chart for the mcp-operator
44
type: application
5-
version: v0.26.3
6-
appVersion: v0.26.3
5+
version: v0.26.4
6+
appVersion: v0.26.4
77
home: https://github.com/openmcp-project/mcp-operator
88
sources:
99
- https://github.com/openmcp-project/mcp-operator

charts/mcp-operator/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ deployment:
1414

1515
image:
1616
repository: ghcr.io/openmcp-project/github.com/openmcp-project/mcp-operator/images/mcp-operator
17-
tag: v0.26.3
17+
tag: v0.26.4
1818
pullPolicy: IfNotPresent
1919

2020
imagePullSecrets: []

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ require (
1515
github.com/onsi/gomega v1.36.2
1616
github.com/openmcp-project/control-plane-operator v0.1.4
1717
github.com/openmcp-project/controller-utils v0.4.2
18-
github.com/openmcp-project/mcp-operator/api v0.26.3
18+
github.com/openmcp-project/mcp-operator/api v0.26.4
1919
github.com/spf13/cobra v1.9.1
2020
github.com/spf13/pflag v1.0.6
2121
github.com/stretchr/testify v1.10.0

0 commit comments

Comments
 (0)