Skip to content

Commit 5807950

Browse files
authored
docs: add changelog for v0.4.0 (#177)
1 parent e0e8a3c commit 5807950

File tree

2 files changed

+55
-29
lines changed

2 files changed

+55
-29
lines changed

.chglog/CHANGELOG.tpl.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66
### {{ .Title }}
77

88
{{ range .Commits -}}
9-
* {{ if .Scope }}**{{ .Scope }}:** {{ end }}{{ .Subject }}
9+
* {{ if .Scope }}**{{ .Scope }}:** {{ end }}{{ .Subject }} - _by {{ .Author.Name }}_
1010
{{ end }}
1111
{{ end -}}
1212

1313
{{- if .RevertCommits -}}
1414
### Reverts
1515

1616
{{ range .RevertCommits -}}
17-
* {{ .Revert.Header }}
17+
* {{ .Revert.Header }} - _by {{ .Revert.Author.Name }}_
1818
{{ end }}
1919
{{ end -}}
2020

CHANGELOG.md

Lines changed: 53 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,73 +1,99 @@
11

2+
<a name="v0.4.0"></a>
3+
## [v0.4.0](https://github.com/FunctionStream/function-stream/compare/v0.3.0...v0.4.0) (2024-05-09)
4+
5+
### Features
6+
7+
* add contube config validation ([#174](https://github.com/FunctionStream/function-stream/issues/174)) - _by Zike Yang_
8+
* support pluggable state store ([#173](https://github.com/FunctionStream/function-stream/issues/173)) - _by Zike Yang_
9+
* improve function configuration ([#170](https://github.com/FunctionStream/function-stream/issues/170)) - _by Zike Yang_
10+
* improve configuration ([#169](https://github.com/FunctionStream/function-stream/issues/169)) - _by Zike Yang_
11+
* refactor fs http service ([#168](https://github.com/FunctionStream/function-stream/issues/168)) - _by Zike Yang_
12+
13+
### Build
14+
15+
* add change log ([#160](https://github.com/FunctionStream/function-stream/issues/160)) - _by Zike Yang_
16+
* **deps:** bump google.golang.org/protobuf from 1.32.0 to 1.33.0 ([#162](https://github.com/FunctionStream/function-stream/issues/162)) - _by dependabot[bot]_
17+
18+
### Bug Fixes
19+
20+
* prevent panic by closing channel in NewSourceTube goroutine ([#156](https://github.com/FunctionStream/function-stream/issues/156)) - _by wy-os_
21+
* **tube:** move the getOrCreatChan outside of the goroutine ([#161](https://github.com/FunctionStream/function-stream/issues/161)) - _by wy-os_
22+
23+
### Tests
24+
25+
* fix duplicated close on the server ([#163](https://github.com/FunctionStream/function-stream/issues/163)) - _by Zike Yang_
26+
27+
228
<a name="v0.3.0"></a>
329
## [v0.3.0](https://github.com/FunctionStream/function-stream/compare/v0.2.0...v0.3.0) (2024-03-13)
430

531
### Features
632

7-
* state store ([#153](https://github.com/FunctionStream/function-stream/issues/153))
8-
* add http source tube ([#149](https://github.com/FunctionStream/function-stream/issues/149))
9-
* add sink, source and runtime config to function config ([#136](https://github.com/FunctionStream/function-stream/issues/136))
10-
* add grpc runtime ([#135](https://github.com/FunctionStream/function-stream/issues/135))
33+
* state store ([#153](https://github.com/FunctionStream/function-stream/issues/153)) - _by Zike Yang_
34+
* add http source tube ([#149](https://github.com/FunctionStream/function-stream/issues/149)) - _by Zike Yang_
35+
* add sink, source and runtime config to function config ([#136](https://github.com/FunctionStream/function-stream/issues/136)) - _by Zike Yang_
36+
* add grpc runtime ([#135](https://github.com/FunctionStream/function-stream/issues/135)) - _by Zike Yang_
1137

1238
### Tests
1339

14-
* add tests for chan utils ([#140](https://github.com/FunctionStream/function-stream/issues/140))
15-
* fix flaky test for grpc_func ([#142](https://github.com/FunctionStream/function-stream/issues/142))
40+
* add tests for chan utils ([#140](https://github.com/FunctionStream/function-stream/issues/140)) - _by wy-os_
41+
* fix flaky test for grpc_func ([#142](https://github.com/FunctionStream/function-stream/issues/142)) - _by Zike Yang_
1642

1743
### Bug Fixes
1844

19-
* fix deadlock issue in grpc_func and add cors support ([#158](https://github.com/FunctionStream/function-stream/issues/158))
20-
* cli doesn't respect replica when creating function ([#145](https://github.com/FunctionStream/function-stream/issues/145))
21-
* fix race condition issues in function manager ([#141](https://github.com/FunctionStream/function-stream/issues/141))
22-
* fix context value setting for the function instance ([#139](https://github.com/FunctionStream/function-stream/issues/139))
45+
* fix deadlock issue in grpc_func and add cors support ([#158](https://github.com/FunctionStream/function-stream/issues/158)) - _by Zike Yang_
46+
* cli doesn't respect replica when creating function ([#145](https://github.com/FunctionStream/function-stream/issues/145)) - _by Zike Yang_
47+
* fix race condition issues in function manager ([#141](https://github.com/FunctionStream/function-stream/issues/141)) - _by Zike Yang_
48+
* fix context value setting for the function instance ([#139](https://github.com/FunctionStream/function-stream/issues/139)) - _by wy-os_
2349

2450
### Code Refactoring
2551

26-
* improve grpc function protocol ([#147](https://github.com/FunctionStream/function-stream/issues/147))
27-
* improve logging ([#146](https://github.com/FunctionStream/function-stream/issues/146))
52+
* improve grpc function protocol ([#147](https://github.com/FunctionStream/function-stream/issues/147)) - _by Zike Yang_
53+
* improve logging ([#146](https://github.com/FunctionStream/function-stream/issues/146)) - _by Zike Yang_
2854

2955
### Miscellaneous
3056

31-
* rename module ([#137](https://github.com/FunctionStream/function-stream/issues/137))
57+
* rename module ([#137](https://github.com/FunctionStream/function-stream/issues/137)) - _by Zike Yang_
3258

3359

3460
<a name="v0.2.0"></a>
3561
## [v0.2.0](https://github.com/FunctionStream/function-stream/compare/v0.1.0...v0.2.0) (2024-02-17)
3662

3763
### Features
3864

39-
* add directory structure to readme and improve structure ([#132](https://github.com/FunctionStream/function-stream/issues/132))
40-
* support basic function operations using CLI tool ([#128](https://github.com/FunctionStream/function-stream/issues/128))
41-
* support pluggable queue ([#125](https://github.com/FunctionStream/function-stream/issues/125))
42-
* support delete function ([#3](https://github.com/FunctionStream/function-stream/issues/3))
43-
* add integration test and CI ([#1](https://github.com/FunctionStream/function-stream/issues/1))
44-
* support loading wasm file
65+
* add directory structure to readme and improve structure ([#132](https://github.com/FunctionStream/function-stream/issues/132)) - _by Zike Yang_
66+
* support basic function operations using CLI tool ([#128](https://github.com/FunctionStream/function-stream/issues/128)) - _by Zike Yang_
67+
* support pluggable queue ([#125](https://github.com/FunctionStream/function-stream/issues/125)) - _by Zike Yang_
68+
* support delete function ([#3](https://github.com/FunctionStream/function-stream/issues/3)) - _by Zike Yang_
69+
* add integration test and CI ([#1](https://github.com/FunctionStream/function-stream/issues/1)) - _by Zike Yang_
70+
* support loading wasm file - _by Zike Yang_
4571

4672
### License
4773

48-
* update license header ([#130](https://github.com/FunctionStream/function-stream/issues/130))
74+
* update license header ([#130](https://github.com/FunctionStream/function-stream/issues/130)) - _by Zike Yang_
4975

5076
### Build
5177

52-
* add license checker ([#7](https://github.com/FunctionStream/function-stream/issues/7))
78+
* add license checker ([#7](https://github.com/FunctionStream/function-stream/issues/7)) - _by Zike Yang_
5379

5480
### Bug Fixes
5581

56-
* fix mem queue bench doesn't show result ([#129](https://github.com/FunctionStream/function-stream/issues/129))
82+
* fix mem queue bench doesn't show result ([#129](https://github.com/FunctionStream/function-stream/issues/129)) - _by Zike Yang_
5783

5884
### Performance Improvements
5985

60-
* improve performance ([#124](https://github.com/FunctionStream/function-stream/issues/124))
61-
* add bench perf ([#6](https://github.com/FunctionStream/function-stream/issues/6))
86+
* improve performance ([#124](https://github.com/FunctionStream/function-stream/issues/124)) - _by Zike Yang_
87+
* add bench perf ([#6](https://github.com/FunctionStream/function-stream/issues/6)) - _by Zike Yang_
6288

6389
### Code Refactoring
6490

65-
* use tube term instead of queue ([#134](https://github.com/FunctionStream/function-stream/issues/134))
66-
* abstract contube-go impl ([#131](https://github.com/FunctionStream/function-stream/issues/131))
91+
* use tube term instead of queue ([#134](https://github.com/FunctionStream/function-stream/issues/134)) - _by Zike Yang_
92+
* abstract contube-go impl ([#131](https://github.com/FunctionStream/function-stream/issues/131)) - _by Zike Yang_
6793

6894
### Documentation
6995

70-
* fix readme format ([#133](https://github.com/FunctionStream/function-stream/issues/133))
96+
* fix readme format ([#133](https://github.com/FunctionStream/function-stream/issues/133)) - _by Zike Yang_
7197

7298

7399
<a name="v0.1.0"></a>

0 commit comments

Comments
 (0)