Skip to content

Commit bd33883

Browse files
authored
Merge pull request #272 from u5surf/cut-v0.2.2
Release v0.2.2
2 parents bf64dbf + 1877c62 commit bd33883

File tree

2 files changed

+35
-11
lines changed

2 files changed

+35
-11
lines changed

CHANGELOG.md

+34-10
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,23 @@
22
## [Unreleased]
33

44

5-
## [v0.2.1] - 2022-09-16
5+
## [v0.2.2] - 2023-04-17
6+
### Bugfix
7+
- fixed issues/228 Change the reffered source of upstream_states in shm_add_upstream()
8+
- fixed issues/248 Shared memory (lock|unlock) is set when using the ngx_http_vhost_traffic_status_display_get_size() function
9+
10+
### Bugfix
11+
- Add shmtx unlock
12+
13+
### Chore
14+
- add cpanm --notest in CI
15+
16+
### Test
17+
- Fix upstream check test properly
18+
- Add upstream check test
19+
20+
21+
## [v0.2.1] - 2022-09-17
622
### Bugfix
723
- use trimmed serverZones name
824
- improved the accuracy of total(*) statistics by nginx-module-sts/pull/10
@@ -33,9 +49,6 @@
3349
- rollback to 549cc4d
3450
- fixed issues/137, issues/98 that maxSize in cacheZones is displayed incorrectly
3551
- fixed issues/174 that XSS vulnerability in the html page Feature: added moduleVersion field in format/json
36-
- added escape strings for filter names in JSON
37-
- fixed the sum value of histogram in upstream metrics
38-
- fixed to display all A records of server without zone directive in the upstream block.
3952

4053
### Chore
4154
- Change module version. ([#241](https://github.com/vozlt/nginx-module-vts/issues/241))
@@ -45,10 +58,6 @@
4558
- added moduleVersion
4659
- added additional information about cacheZones
4760
- added tested versions
48-
- added a diagram for the order of module directives
49-
50-
### Compatibility
51-
- fixed ngx_http_vhost_traffic_status_display_get_upstream_nelts() to calculate all A records of server.
5261

5362
### Docs
5463
- Fix README
@@ -73,6 +82,19 @@
7382
- describe how to test and fix failed test case
7483

7584

85+
## [v0.1.18seravo] - 2022-03-23
86+
### Bugfix
87+
- added escape strings for filter names in JSON
88+
- fixed the sum value of histogram in upstream metrics
89+
- fixed to display all A records of server without zone directive in the upstream block.
90+
91+
### Comment
92+
- added a diagram for the order of module directives
93+
94+
### Compatibility
95+
- fixed ngx_http_vhost_traffic_status_display_get_upstream_nelts() to calculate all A records of server.
96+
97+
7698
## [v0.1.18] - 2018-06-22
7799
### Bugfix
78100
- fixed issues/130 that nginx_vts_main_connections metrics mixed
@@ -329,9 +351,11 @@
329351
- added type casting(ngx_atomic_t) in the ngx_vhost_traffic_status_node_init() and ngx_vhost_traffic_status_node_set()
330352

331353

332-
[Unreleased]: https://github.com/vozlt/nginx-module-vts/compare/v0.2.1...HEAD
354+
[Unreleased]: https://github.com/vozlt/nginx-module-vts/compare/v0.2.2...HEAD
355+
[v0.2.2]: https://github.com/vozlt/nginx-module-vts/compare/v0.2.1...v0.2.2
333356
[v0.2.1]: https://github.com/vozlt/nginx-module-vts/compare/v0.2.0...v0.2.1
334-
[v0.2.0]: https://github.com/vozlt/nginx-module-vts/compare/v0.1.18...v0.2.0
357+
[v0.2.0]: https://github.com/vozlt/nginx-module-vts/compare/v0.1.18seravo...v0.2.0
358+
[v0.1.18seravo]: https://github.com/vozlt/nginx-module-vts/compare/v0.1.18...v0.1.18seravo
335359
[v0.1.18]: https://github.com/vozlt/nginx-module-vts/compare/v0.1.17...v0.1.18
336360
[v0.1.17]: https://github.com/vozlt/nginx-module-vts/compare/v0.1.16...v0.1.17
337361
[v0.1.16]: https://github.com/vozlt/nginx-module-vts/compare/v0.1.15...v0.1.16

src/ngx_http_vhost_traffic_status_module.h

+1-1
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.1"
27+
#define NGX_HTTP_VTS_MODULE_VERSION "v0.2.2"
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)