Skip to content

Commit 0009b3b

Browse files
authored
Merge pull request #247 from vozlt/cut-v0.2.1
Release v0.2.1
2 parents 99b0389 + f4d24d2 commit 0009b3b

File tree

3 files changed

+29
-4
lines changed

3 files changed

+29
-4
lines changed

CHANGELOG.md

Lines changed: 27 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,30 @@
22
## [Unreleased]
33

44

5-
## [v0.2.0] - 2022-09-05
5+
## [v0.2.1] - 2022-09-16
6+
### Bugfix
7+
- use trimmed serverZones name
8+
- improved the accuracy of total(*) statistics by nginx-module-sts/pull/10
9+
10+
### Chore
11+
- Add CI badge in README ([#245](https://github.com/vozlt/nginx-module-vts/issues/245))
12+
13+
### Compatibility
14+
- fixed an issues/232 with compile errors in gcc 11.3
15+
16+
### Debug
17+
- added ngx_log_error() when ngx_http_vhost_traffic_status_node_position_key() failed for issues/212
18+
19+
### Docs
20+
- Fixed README
21+
22+
### Test
23+
- build without -Wno-stringop-overread ([#243](https://github.com/vozlt/nginx-module-vts/issues/243))
24+
- Add test for prometheus syntax
25+
- Add test for display prometheus
26+
27+
28+
## [v0.2.0] - 2022-09-06
629
### Bugfix
730
- fixed for PR[#238](https://github.com/vozlt/nginx-module-vts/issues/238)
831
- fixed for PR[#238](https://github.com/vozlt/nginx-module-vts/issues/238)
@@ -15,6 +38,7 @@
1538
- fixed to display all A records of server without zone directive in the upstream block.
1639

1740
### Chore
41+
- Change module version. ([#241](https://github.com/vozlt/nginx-module-vts/issues/241))
1842
- Use git-chglog
1943

2044
### Comment
@@ -305,7 +329,8 @@
305329
- added type casting(ngx_atomic_t) in the ngx_vhost_traffic_status_node_init() and ngx_vhost_traffic_status_node_set()
306330

307331

308-
[Unreleased]: https://github.com/vozlt/nginx-module-vts/compare/v0.2.0...HEAD
332+
[Unreleased]: https://github.com/vozlt/nginx-module-vts/compare/v0.2.1...HEAD
333+
[v0.2.1]: https://github.com/vozlt/nginx-module-vts/compare/v0.2.0...v0.2.1
309334
[v0.2.0]: https://github.com/vozlt/nginx-module-vts/compare/v0.1.18...v0.2.0
310335
[v0.1.18]: https://github.com/vozlt/nginx-module-vts/compare/v0.1.17...v0.1.18
311336
[v0.1.17]: https://github.com/vozlt/nginx-module-vts/compare/v0.1.16...v0.1.17

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1821,7 +1821,7 @@ To cut a release, create a changelog entry PR with [git-chglog](https://github.c
18211821
git checkout -b "cut-${version}"
18221822
git-chglog -o CHANGELOG.md --next-tag "${version}"
18231823
git add CHANGELOG.md
1824-
sed -i "s/NGX_HTTP_VTS_MODULE_VERSION \".*/NGX_HTTP_VTS_MODULE_VERSION \"${version}\"" src/ngx_http_vhost_traffic_status_module.h
1824+
sed -i "s/NGX_HTTP_VTS_MODULE_VERSION \".*/NGX_HTTP_VTS_MODULE_VERSION \"${version}\"/" src/ngx_http_vhost_traffic_status_module.h
18251825
git add src/ngx_http_vhost_traffic_status_module.h
18261826
git-chglog -t .chglog/RELNOTES.tmpl --next-tag "${version}" "${version}" | git commit -F-
18271827

src/ngx_http_vhost_traffic_status_module.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* I.E "v0.2.0+h0a1s2h"
2525
*
2626
*/
27-
#define NGX_HTTP_VTS_MODULE_VERSION "v0.2.0"
27+
#define NGX_HTTP_VTS_MODULE_VERSION "v0.2.1"
2828

2929
#define NGX_HTTP_VHOST_TRAFFIC_STATUS_UPSTREAM_NO 0
3030
#define NGX_HTTP_VHOST_TRAFFIC_STATUS_UPSTREAM_UA 1

0 commit comments

Comments
 (0)