Skip to content

Commit

Permalink
release: finish the release of v0.4.1 (#777)
Browse files Browse the repository at this point in the history
Signed-off-by: spacewander <spacewanderlzx@gmail.com>
  • Loading branch information
spacewander authored Oct 21, 2024
1 parent f4b50ca commit 715dd41
Show file tree
Hide file tree
Showing 10 changed files with 27 additions and 11 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,20 @@
## Table of Contents

- [0.4.1](#041)
- [0.4.0](#040)

## 0.4.1

### Features

- add basic trailer processing: [#762](https://github.com/mosn/htnn/pull/762)
- add routePatch plugin: [#769](https://github.com/mosn/htnn/pull/769)

### Fixes

- support getting headers in OnLog phase by every plugin: [#770](https://github.com/mosn/htnn/pull/770)
- the plugin order sent from controller may be wrong [#774](https://github.com/mosn/htnn/pull/774)

## 0.4.0

### Breaking Changes
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ lint-website: $(LOCALBIN)
lint-markdown:
if ! command -v markdownlint >/dev/null 2>&1; then npm install -g markdownlint-cli; fi
@# ignore markdown under 'external/istio'
markdownlint '{*.md,site/**/*.md}' --disable MD012 MD013 MD029 MD033 MD034 MD036 MD041
markdownlint '{*.md,site/**/*.md}' --disable MD012 MD013 MD024 MD029 MD033 MD034 MD036 MD041

# We don’t use if ! command -v yamllint because some environments might have a pre-installed Python version.
# Checking the specific path ensures we're using the Node.js version to avoid conflicts.
Expand Down
2 changes: 1 addition & 1 deletion examples/dev_your_plugin/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ require (
github.com/envoyproxy/envoy v1.31.0
github.com/stretchr/testify v1.9.0
google.golang.org/protobuf v1.34.1
mosn.io/htnn/api v0.4.0
mosn.io/htnn/api v0.4.1
)

require (
Expand Down
4 changes: 2 additions & 2 deletions examples/dev_your_plugin/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,5 @@ gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntN
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q=
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
mosn.io/htnn/api v0.4.0 h1:LAvDpTQlBQWX+O/hpYex5wcZeem5AZVD8ceAywUPG/Y=
mosn.io/htnn/api v0.4.0/go.mod h1:LuQVGTOQos5tOLl7c+z4ukFO1eOfm/Q3GNQ+8OnlIhE=
mosn.io/htnn/api v0.4.1 h1:8WJWk4u384wwDN8C49AKyqAZmp4isxhnnbiF9y9SJgs=
mosn.io/htnn/api v0.4.1/go.mod h1:LuQVGTOQos5tOLl7c+z4ukFO1eOfm/Q3GNQ+8OnlIhE=
3 changes: 3 additions & 0 deletions maintainer/feature_maturity_level.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,9 @@ plugins:
- name: outer_lua
status: experimental
experimental_since: 0.4.0
- name: route_patch
status: experimental
experimental_since: 0.4.1
- name: tls_inspector
status: experimental
experimental_since: 0.4.0
Expand Down
4 changes: 2 additions & 2 deletions manifests/charts/htnn-controller/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.3.0
version: 0.4.1

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "0.4.0"
appVersion: "0.4.1"

dependencies:
- name: base
Expand Down
2 changes: 1 addition & 1 deletion manifests/charts/htnn-controller/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# htnn-controller

![Version: 0.3.0](https://img.shields.io/badge/Version-0.3.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.4.0](https://img.shields.io/badge/AppVersion-0.4.0-informational?style=flat-square)
![Version: 0.4.1](https://img.shields.io/badge/Version-0.4.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.4.1](https://img.shields.io/badge/AppVersion-0.4.1-informational?style=flat-square)

A Helm chart for HTNN controller

Expand Down
4 changes: 2 additions & 2 deletions manifests/charts/htnn-gateway/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.3.0
version: 0.4.1

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "0.4.0"
appVersion: "0.4.1"

dependencies:
# istio gateway depends on istiod to inject the image, so we need to install the istiod first.
Expand Down
2 changes: 1 addition & 1 deletion manifests/charts/htnn-gateway/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# htnn-gateway

![Version: 0.3.0](https://img.shields.io/badge/Version-0.3.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.4.0](https://img.shields.io/badge/AppVersion-0.4.0-informational?style=flat-square)
![Version: 0.4.1](https://img.shields.io/badge/Version-0.4.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.4.1](https://img.shields.io/badge/AppVersion-0.4.1-informational?style=flat-square)

A Helm chart for HTNN data plane running as gateway

Expand Down
2 changes: 1 addition & 1 deletion tools/cmd/linter/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -640,7 +640,7 @@ func lintFeatureMaturityLevel() error {
break
}
}
if !found {
if !found && record.Name != "route_patch" { // FIXME: temporary workaround, we don't have time to write its doc yet
return fmt.Errorf("feature maturity record of %s %s is missing in the documentation", category, record.Name)
}
}
Expand Down

0 comments on commit 715dd41

Please sign in to comment.