From c4ed13526a2ceb2ab271baf1ffbcd5d4d9689b18 Mon Sep 17 00:00:00 2001 From: themilchenko Date: Wed, 2 Oct 2024 16:49:15 +0300 Subject: [PATCH] Release 0.2.0 The release introduces the integration with `httpd` role and latency observation for http endpoint. Now it is possible to reuse server's address from `httpd` role config for `metrics-export-role` configuration. The release contains documentation about these changes. Added - Introduce latency observation for http endpoint (#17). - Support `roles.httpd` integration (#15). --- CHANGELOG.md | 13 +++++++++++-- README.md | 2 +- roles/metrics-export.lua | 2 +- 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aff86ef..3127c42 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,13 +8,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ### Added -- Introduce latency observation for http endpoint (#17). -- Support `roles.httpd` integration (#15). ### Fixed ### Changed +## 0.2.0 - 2024-10-02 + +The release introduces the integration with `httpd` role and latency observation for http +endpoint. Now it is possible to reuse server's address from `httpd` role config for +`metrics-export-role` configuration. The release contains documentation about these changes. + +### Added + +- Introduce latency observation for http endpoint (#17). +- Support `roles.httpd` integration (#15). + ## 0.1.0 - 2024-06-11 The release introduces the `metrics-export-role` module: export metrics diff --git a/README.md b/README.md index b3813b1..410ffab 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ from Tarantool 3. For now only export via HTTP is supported. ```Lua dependencies = { ... - 'metrics-export-role == 0.1.0-1', + 'metrics-export-role == 0.2.0-1', ... } ``` diff --git a/roles/metrics-export.lua b/roles/metrics-export.lua index 03a2bda..96921e2 100644 --- a/roles/metrics-export.lua +++ b/roles/metrics-export.lua @@ -6,7 +6,7 @@ local M = {} -- Сontains the module version. -- Requires manual update in case of release commit. -M._VERSION = "0.1.0" +M._VERSION = "0.2.0" local function is_array(tbl) assert(type(tbl) == "table", "a table expected")