diff --git a/CHANGELOG.md b/CHANGELOG.md index 227623d..7454ae7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/dist.ini b/dist.ini index 8390ad1..0dab0a7 100644 --- a/dist.ini +++ b/dist.ini @@ -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 diff --git a/nginx-lua-prometheus-0.20230607-1.rockspec b/nginx-lua-prometheus-0.20240525-1.rockspec similarity index 93% rename from nginx-lua-prometheus-0.20230607-1.rockspec rename to nginx-lua-prometheus-0.20240525-1.rockspec index 969e1da..3aaf07a 100644 --- a/nginx-lua-prometheus-0.20230607-1.rockspec +++ b/nginx-lua-prometheus-0.20240525-1.rockspec @@ -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 = {