Skip to content

Commit e3eaccb

Browse files
release 0.19.0 (#718)
* Update release 0.19.0-rc-1 version * Bump github.com/dvsekhvalnov/jose2go (#715) Bumps [github.com/dvsekhvalnov/jose2go](https://github.com/dvsekhvalnov/jose2go) from 0.0.0-20180829124132-7f401d37b68a to 1.6.0. - [Commits](https://github.com/dvsekhvalnov/jose2go/commits/v1.6.0) --- updated-dependencies: - dependency-name: github.com/dvsekhvalnov/jose2go dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump github.com/dvsekhvalnov/jose2go (#716) Bumps [github.com/dvsekhvalnov/jose2go](https://github.com/dvsekhvalnov/jose2go) from 0.0.0-20200901110807-248326c1351b to 1.6.0. - [Commits](https://github.com/dvsekhvalnov/jose2go/commits/v1.6.0) --- updated-dependencies: - dependency-name: github.com/dvsekhvalnov/jose2go dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * fix action permissions (#717) * release 0.19.0 --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 7df159f commit e3eaccb

File tree

12 files changed

+29
-19
lines changed

12 files changed

+29
-19
lines changed

.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: kind-registry:5000/streamnativeio/function-mesh-catalog:v0.18.0
8+
image: kind-registry:5000/streamnativeio/function-mesh-catalog:v0.19.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.18.0
9+
startingCSV: function-mesh.v0.19.0
1010
source: my-test-catalog
1111
sourceNamespace: olm

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# Function Mesh v0.19.0 Release Notes
2+
3+
## v0.19.0 What's New
4+
5+
* [Controller] Optimize jvm parameters ([#708](https://github.com/streamnative/function-mesh/pull/708))
6+
* [Controller] Avoid NPE error when convert HPA V2 to V2beta2 ([#713](https://github.com/streamnative/function-mesh/pull/713))
7+
* [Controller] Use `bash -c` instead of `sh -c` ([#714](https://github.com/streamnative/function-mesh/pull/714))
8+
9+
For the full changes in this release, see the [Pull Requests](https://github.com/streamnative/function-mesh/pulls?q=is%3Apr+label%3Am%2F2024-01+is%3Aclosed+)
10+
111
# Function Mesh v0.18.0 Release Notes
212

313
## v0.18.0 What's New

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Current Operator version
2-
VERSION ?= 0.18.0
2+
VERSION ?= 0.19.0
33
# Default image tag
44
DOCKER_REPO := $(if $(DOCKER_REPO),$(DOCKER_REPO),streamnative)
55
OPERATOR_IMG ?= ${DOCKER_REPO}/function-mesh:v$(VERSION)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ A Kubernetes-Native way to run pulsar functions, connectors and composed functio
44
## Install
55

66
```bash
7-
curl -sSL https://github.com/streamnative/function-mesh/releases/download/v0.18.0/install.sh | bash
7+
curl -sSL https://github.com/streamnative/function-mesh/releases/download/v0.19.0/install.sh | bash
88
```
99

1010
The above command installs all the CRDs, required service account configuration, and all function-mesh operator components. Before you start running a function-mesh example, verify if Function Mesh is installed correctly.
@@ -28,6 +28,7 @@ This table outlines the supported Kubernetes versions. We have tested these vers
2828

2929
| Function Mesh operator | Kubernetes 1.19 | Kubernetes 1.20 | Kubernetes 1.21 | Kubernetes 1.22 | Kubernetes 1.23 | Kubernetes 1.24 | Kubernetes 1.25 |
3030
|---------------------------------------------------------------------------------|---------------|--------------|---------------|----------------|-----------------| --------------- | --------------- |
31+
| [`v0.19.0`](https://github.com/streamnative/function-mesh/releases/tag/v0.19.0) ||||||||
3132
| [`v0.18.0`](https://github.com/streamnative/function-mesh/releases/tag/v0.18.0) ||||||||
3233
| [`v0.17.0`](https://github.com/streamnative/function-mesh/releases/tag/v0.17.0) ||||||||
3334
| [`v0.16.0`](https://github.com/streamnative/function-mesh/releases/tag/v0.16.0) ||||||||
@@ -36,7 +37,6 @@ This table outlines the supported Kubernetes versions. We have tested these vers
3637
| [`v0.13.0`](https://github.com/streamnative/function-mesh/releases/tag/v0.13.0) ||||||||
3738
| [`v0.12.0`](https://github.com/streamnative/function-mesh/releases/tag/v0.12.0) ||||||||
3839
| [`v0.11.2`](https://github.com/streamnative/function-mesh/releases/tag/v0.11.2) ||||||||
39-
| [`v0.10.0`](https://github.com/streamnative/function-mesh/releases/tag/v0.10.0) ||||||||
4040
| [`Master`](https://github.com/streamnative/function-mesh/tree/master) ||||||||
4141

4242
## Development

charts/function-mesh-operator/Chart.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ type: application
1919
# This is the chart version. This version number should be incremented each time you make changes
2020
# to the chart and its templates, including the app version.
2121
# Versions are expected to follow Semantic Versioning (https://semver.org/)
22-
version: 0.2.24
22+
version: 0.2.25
2323

2424
# This is the version number of the application being deployed. This version number should be
2525
# incremented each time you make changes to the application. Versions are not expected to
2626
# follow Semantic Versioning. They should reflect the version the application is using.
27-
appVersion: 0.18.0
27+
appVersion: 0.19.0
2828

2929
home: https://github.com/streamnative/function-mesh
3030
sources:
@@ -33,5 +33,5 @@ sources:
3333
dependencies:
3434
- name: admission-webhook
3535
condition: admissionWebhook.enabled
36-
version: 0.2.24
36+
version: 0.2.25
3737
# repository: https://charts.functionmesh.io/

charts/function-mesh-operator/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# function-mesh-operator
22

3-
![Version: 0.2.24](https://img.shields.io/badge/Version-0.2.24-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.18.0](https://img.shields.io/badge/AppVersion-0.18.0-informational?style=flat-square)
3+
![Version: 0.2.25](https://img.shields.io/badge/Version-0.2.25-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.19.0](https://img.shields.io/badge/AppVersion-0.19.0--rc--1-informational?style=flat-square)
44

55
function mesh operator Helm chart for Kubernetes
66

@@ -20,7 +20,7 @@ function mesh operator Helm chart for Kubernetes
2020

2121
| Repository | Name | Version |
2222
|------------|------|---------|
23-
| | admission-webhook | 0.2.24 |
23+
| | admission-webhook | 0.2.25 |
2424

2525
## Values
2626

@@ -47,8 +47,8 @@ function mesh operator Helm chart for Kubernetes
4747
| imagePullPolicy | string | `"IfNotPresent"` | |
4848
| imagePullSecrets | list | `[]` | |
4949
| installation.namespace | string | `"function-mesh-system"` | |
50-
| operatorImage | string | `"streamnative/function-mesh:v0.18.0"` | |
50+
| operatorImage | string | `"streamnative/function-mesh:v0.19.0"` | |
5151
| rbac.create | bool | `true` | |
5252

5353
----------------------------------------------
54-
Autogenerated from chart metadata using [helm-docs v1.11.2](https://github.com/norwoodj/helm-docs/releases/v1.11.2)
54+
Autogenerated from chart metadata using [helm-docs v1.12.0](https://github.com/norwoodj/helm-docs/releases/v1.12.0)

charts/function-mesh-operator/charts/admission-webhook/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ type: application
1919
# This is the chart version. This version number should be incremented each time you make changes
2020
# to the chart and its templates, including the app version.
2121
# Versions are expected to follow Semantic Versioning (https://semver.org/)
22-
version: 0.2.24
22+
version: 0.2.25
2323

2424
# This is the version number of the application being deployed. This version number should be
2525
# incremented each time you make changes to the application. Versions are not expected to
2626
# follow Semantic Versioning. They should reflect the version the application is using.
2727
# It is recommended to use it with quotes.
28-
appVersion: 0.18.0
28+
appVersion: 0.19.0
2929

3030
home: https://github.com/streamnative/function-mesh
3131
sources:

charts/function-mesh-operator/charts/admission-webhook/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# admission-webhook
22

3-
![Version: 0.2.24](https://img.shields.io/badge/Version-0.2.24-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.18.0](https://img.shields.io/badge/AppVersion-0.18.0-informational?style=flat-square)
3+
![Version: 0.2.25](https://img.shields.io/badge/Version-0.2.25-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.19.0](https://img.shields.io/badge/AppVersion-0.19.0--rc--1-informational?style=flat-square)
44

55
function mesh admission webhook Helm chart for Kubernetes
66

@@ -26,4 +26,4 @@ function mesh admission webhook Helm chart for Kubernetes
2626
| admissionWebhook.secretsWebhookNamespace | string | `"default"` | |
2727

2828
----------------------------------------------
29-
Autogenerated from chart metadata using [helm-docs v1.11.2](https://github.com/norwoodj/helm-docs/releases/v1.11.2)
29+
Autogenerated from chart metadata using [helm-docs v1.12.0](https://github.com/norwoodj/helm-docs/releases/v1.12.0)

charts/function-mesh-operator/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ installation:
1111
namespace: function-mesh-system
1212

1313
# operatorImage is Function Mesh Operator image
14-
operatorImage: streamnative/function-mesh:v0.18.0
14+
operatorImage: streamnative/function-mesh:v0.19.0
1515
imagePullPolicy: IfNotPresent
1616
imagePullSecrets: []
1717

0 commit comments

Comments
 (0)