Skip to content

Commit

Permalink
Release 0.20240525
Browse files Browse the repository at this point in the history
  • Loading branch information
knyar committed May 25, 2024
1 parent d51ef8f commit eb15e1b
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ This file only calls out major changes. Please see [the list of Git commits](
https://github.com/knyar/nginx-lua-prometheus/commits/master) for the full list
of changes.

## 0.20240525

- Fixed a bug that prevented usage of metrics that had previously been reset
(#171).
- Removed the size limit for per-metric lookup tables, instead resetting the
lookup tables every time a metric is reset.
- Reordered the way histogram counters are incremented to partially mitigate
consistency issues (#161).

## 0.20230607

Improved checking of label values.
Expand Down
2 changes: 1 addition & 1 deletion dist.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = nginx-lua-prometheus
abstract = Prometheus metric library for Nginx
version = 0.20230607
version = 0.20240525
author = Anton Tolchanov
is_original = yes
license = mit
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
-- Note, this file must have version in its name
-- (see https://github.com/knyar/nginx-lua-prometheus/issues/27)
package = "nginx-lua-prometheus"
version = "0.20230607-1"
version = "0.20240525-1"

source = {
url = "git+https://github.com/knyar/nginx-lua-prometheus.git",
tag = "0.20230607",
tag = "0.20240525",
}

description = {
Expand Down

0 comments on commit eb15e1b

Please sign in to comment.