Skip to content

Commit a16628f

Browse files
release v0.1.9 (#311)
* add v0.1.9 release notes * bump to v0.1.9 * Update CHANGELOG.md Co-authored-by: Huanli Meng <48120384+Huanli-Meng@users.noreply.github.com> * Update CHANGELOG.md Co-authored-by: Huanli Meng <48120384+Huanli-Meng@users.noreply.github.com> * Update CHANGELOG.md Co-authored-by: Huanli Meng <48120384+Huanli-Meng@users.noreply.github.com> * Update CHANGELOG.md Co-authored-by: Huanli Meng <48120384+Huanli-Meng@users.noreply.github.com> * Update CHANGELOG.md Co-authored-by: Huanli Meng <48120384+Huanli-Meng@users.noreply.github.com> * Update CHANGELOG.md Co-authored-by: Huanli Meng <48120384+Huanli-Meng@users.noreply.github.com> Co-authored-by: Huanli Meng <48120384+Huanli-Meng@users.noreply.github.com>
1 parent 6669699 commit a16628f

6 files changed

Lines changed: 26 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
# Function Mesh v0.1.9 Release Notes
2+
3+
## v0.1.9 What's New
4+
5+
Action required: We have moved the Function Mesh Worker service into a separate repository [streamnative/function-mesh-worker-service](https://github.com/streamnative/function-mesh-worker-service). Therefore, the `function-mesh` repo will not include releases of the Function Mesh Worker service.
6+
7+
- [Runner Images] Make runner images rootless ([#278](https://github.com/streamnative/function-mesh/pull/278))
8+
- [Runner Images] Simplify the runner image layers ([#292](https://github.com/streamnative/function-mesh/pull/292))
9+
- [Controller] Support CRD validation with WebHook ([#238](https://github.com/streamnative/function-mesh/pull/238), [#299](https://github.com/streamnative/function-mesh/pull/299))
10+
- [Controller] Support `EnvironmentBasedSecretsProvider` as the default secret provider ([#295](https://github.com/streamnative/function-mesh/pull/295))
11+
- [Controller] Provide the default `SecurityContext` to run Pulsar Functions and connectors in the rootless mode ([#294](https://github.com/streamnative/function-mesh/pull/294))
12+
- [Function Mesh Worker service] Support customizing runner images ([#291](https://github.com/streamnative/function-mesh/pull/291))
13+
- [Function Mesh Worker service] Fix the default value for `ForwardSourceMessageProperty` ([#300](https://github.com/streamnative/function-mesh/pull/300))
14+
- [Function Mesh Worker service] Use Pulsar Package Management Service as the backend and redirect uploading JAR requests to the backend ([#308](https://github.com/streamnative/function-mesh/pull/308))
15+
- [Function Mesh Worker service] Move the Function Mesh Worker service into a separate repository ([#1](https://github.com/streamnative/function-mesh-worker-service/issues/1))
16+
- [Function Mesh Worker service] Support `secretsMap` on branch-2.8 ([#21](https://github.com/streamnative/function-mesh-worker-service/pull/21))
17+
18+
> **Note**
19+
>
20+
> From this release, the release note will not contain any changes to the `function-mesh-worker-service` repository.
21+
122
# Function Mesh v0.1.8 Release Notes
223

324
## v0.1.8 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.1.9-rc2
2+
VERSION ?= 0.1.9
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: 1 addition & 1 deletion
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.1.9-rc2/install.sh | bash
7+
curl -sSL https://github.com/streamnative/function-mesh/releases/download/v0.1.9/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.

charts/function-mesh-operator/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ type: application
1818
# This is the chart version. This version number should be incremented each time you make changes
1919
# to the chart and its templates, including the app version.
2020
# Versions are expected to follow Semantic Versioning (https://semver.org/)
21-
version: 0.1.9-rc2
21+
version: 0.1.9
2222

2323
# This is the version number of the application being deployed. This version number should be
2424
# incremented each time you make changes to the application. Versions are not expected to

charts/function-mesh-operator/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ rbac:
77
create: true
88

99
# operatorImage is Function Mesh Operator image
10-
operatorImage: streamnative/function-mesh:v0.1.9-rc2
10+
operatorImage: streamnative/function-mesh:v0.1.9
1111
imagePullPolicy: IfNotPresent
1212
imagePullSecrets: []
1313

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ EOF
5656

5757
main() {
5858
local local_kube="kind"
59-
local fm_version="v0.1.9-rc2"
59+
local fm_version="v0.1.9"
6060
local kind_name="kind"
6161
local kind_version="v0.7.0"
6262
local node_num=2

0 commit comments

Comments
 (0)