Skip to content

Commit 4278c0b

Browse files
release v0.28.0 (#844)
* release v0.28.0 * fix vulnerability
1 parent 6b79393 commit 4278c0b

24 files changed

Lines changed: 49 additions & 36 deletions

File tree

.ci/olm-tests/catalog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ metadata:
55
namespace: olm
66
spec:
77
sourceType: grpc
8-
image: localhost:5000/streamnativeio/function-mesh-catalog:v0.27.2
8+
image: localhost:5000/streamnativeio/function-mesh-catalog:v0.28.0

.ci/olm-tests/subs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ metadata:
66
spec:
77
channel: alpha
88
name: function-mesh
9-
startingCSV: function-mesh.v0.27.2
9+
startingCSV: function-mesh.v0.28.0
1010
source: my-test-catalog
1111
sourceNamespace: olm

.github/workflows/bundle-release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@ jobs:
4949
username: ${{ secrets.DOCKER_USER }}
5050
password: ${{ secrets.DOCKER_PASSWORD }}
5151

52-
- name: Set up GO 1.25.10
52+
- name: Set up GO 1.25.11
5353
uses: actions/setup-go@v5
5454
with:
55-
go-version: 1.25.10
55+
go-version: 1.25.11
5656
id: go
5757

5858
- name: InstallKubebuilder
@@ -180,10 +180,10 @@ jobs:
180180
username: ${{ secrets.DOCKER_USER }}
181181
password: ${{ secrets.DOCKER_PASSWORD }}
182182

183-
- name: Set up GO 1.25.10
183+
- name: Set up GO 1.25.11
184184
uses: actions/setup-go@v5
185185
with:
186-
go-version: 1.25.10
186+
go-version: 1.25.11
187187
id: go
188188

189189
- name: InstallKubebuilder

.github/workflows/olm-verify.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ jobs:
3434
- name: checkout
3535
uses: actions/checkout@v2
3636

37-
- name: Set up GO 1.25.10
37+
- name: Set up GO 1.25.11
3838
uses: actions/setup-go@v5
3939
with:
40-
go-version: 1.25.10
40+
go-version: 1.25.11
4141
id: go
4242

4343
- name: InstallKubebuilder

.github/workflows/project.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
strategy:
1919
fail-fast: false
2020
matrix:
21-
go-version: [1.25.10]
21+
go-version: [1.25.11]
2222
steps:
2323
- name: Free Disk Space (Ubuntu)
2424
uses: jlumbroso/free-disk-space@v1.3.0

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ jobs:
4040
- name: Set up Docker Buildx
4141
uses: docker/setup-buildx-action@v3
4242

43-
- name: Set up GO 1.25.10
43+
- name: Set up GO 1.25.11
4444
uses: actions/setup-go@v5
4545
with:
46-
go-version: 1.25.10
46+
go-version: 1.25.11
4747
id: go
4848

4949
- name: InstallKubebuilder

.github/workflows/test-helm-charts.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,11 +83,11 @@ jobs:
8383
run: hack/kind-cluster-build.sh --name chart-testing -c 1 -v 10 --k8sVersion v1.23.17
8484
if: steps.list-changed.outputs.changed == 'true'
8585

86-
- name: Set up GO 1.25.10
86+
- name: Set up GO 1.25.11
8787
if: steps.list-changed.outputs.changed == 'true'
8888
uses: actions/setup-go@v5
8989
with:
90-
go-version: 1.25.10
90+
go-version: 1.25.11
9191
id: go
9292

9393
- name: setup kubebuilder 3.6.0

.github/workflows/trivy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,10 @@ jobs:
5757
repository: ${{github.event.pull_request.head.repo.full_name}}
5858
ref: ${{ github.event.pull_request.head.sha }}
5959

60-
- name: Set up GO 1.25.10
60+
- name: Set up GO 1.25.11
6161
uses: actions/setup-go@v5
6262
with:
63-
go-version: 1.25.10
63+
go-version: 1.25.11
6464
id: go
6565

6666
- name: InstallKubebuilder

.github/workflows/trivy_scheduled_master.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,10 +67,10 @@ jobs:
6767
repository: ${{github.event.pull_request.head.repo.full_name}}
6868
ref: ${{ github.event.pull_request.head.sha }}
6969

70-
- name: Set up GO 1.25.10
70+
- name: Set up GO 1.25.11
7171
uses: actions/setup-go@v5
7272
with:
73-
go-version: 1.25.10
73+
go-version: 1.25.11
7474
id: go
7575

7676
- name: InstallKubebuilder

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
# Function Mesh v0.28.0 Release Notes
2+
3+
## v0.28.0 What's New
4+
5+
* [Runtime] feat: export DownloadServiceConfig and GeneratePythonLogConfigCommand in #835
6+
* [Runtime] fix: ensure proper shell quoting for parameters in #837
7+
* [Image] Optimize multi-arch docker image build in #838
8+
* [Runtime] feat: add a global flag to enable/disable PauseRollout in #840
9+
* [CI] update Python version to 3.12 in integration test configs in #842
10+
* [Runtime] feat: Support startupProbe in pod policy in #841
11+
* [Runtime] feat: support Kafka protocol for functions in #843
12+
113
# Function Mesh v0.27.2 Release Notes
214

315
## v0.27.2 What's New

0 commit comments

Comments
 (0)