File tree 4 files changed +44
-3
lines changed 4 files changed +44
-3
lines changed Original file line number Diff line number Diff line change
1
+ # Changelog
2
+
3
+ This file only calls out major changes. Please see [ the list of Git commits] (
4
+ https://github.com/knyar/nginx-lua-prometheus/commits/master)for the full list
5
+ of changes.
6
+
7
+ ## 0.20201118
8
+
9
+ Allow utf8 label values (#110 )
10
+
11
+ ## 0.20200523
12
+
13
+ - Scalability improvements that allow tracking a larger number of metrics
14
+ without impacting nginx performance (#82 )
15
+ - Simplified library initialization, moving all of it to ` init_worker_by_lua_block ` .
16
+ - Error metric name is now configurable (#91 )
17
+
18
+ ## 0.20200420
19
+
20
+ This is a significant release that includes counter performance improvements.
21
+
22
+ ** BREAKING CHANGE** : this release requires additional per-worker initialization
23
+ in the ` init_worker_by_lua_block ` section of nginx configuration.
24
+
25
+ - Added support for incrementing and decrementing gauges (#52 )
26
+ - Added del and reset for gauge and counter metrics (#56 )
27
+ - Added per-worker lua counters that allow incrementing counter metrics
28
+ without locking the dictionary (#75 )
29
+
30
+ ## 0.20181120
31
+
32
+ Added stream module support (#42 ).
33
+
34
+ ## 0.20171117
35
+
36
+ Improved performance of metric collection (#25 ).
37
+
38
+ ## 0.1-20170610
39
+
40
+ Initial version of the library.
Original file line number Diff line number Diff line change @@ -430,6 +430,7 @@ but will still be functional. The recommended older release to use is
430
430
431
431
### Releasing new version
432
432
433
+ - update CHANGELOG.md
433
434
- update version in the ` dist.ini `
434
435
- rename ` .rockspec ` file and update version inside it
435
436
- commit changes
Original file line number Diff line number Diff line change 1
1
name = nginx-lua-prometheus
2
2
abstract = Prometheus metric library for Nginx
3
- version = 0.20200523
3
+ version = 0.20201118
4
4
author = Anton Tolchanov
5
5
is_original = yes
6
6
license = mit
Original file line number Diff line number Diff line change 1
1
-- Note, this file must have version in its name
2
2
-- (see https://github.com/knyar/nginx-lua-prometheus/issues/27)
3
3
package = " nginx-lua-prometheus"
4
- version = " 0.20200523 -1"
4
+ version = " 0.20201118 -1"
5
5
6
6
source = {
7
7
url = " git://github.com/knyar/nginx-lua-prometheus.git" ,
8
- tag = " 0.20200523 " ,
8
+ tag = " 0.20201118 " ,
9
9
}
10
10
11
11
description = {
You can’t perform that action at this time.
0 commit comments