Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.19](https://github.com/softwaremill/klag-exporter/compare/v0.1.18...v0.1.19) - 2026-03-17

### Other

- Fix native FFI memory leak and improve memory management

## [0.1.18](https://github.com/softwaremill/klag-exporter/compare/v0.1.17...v0.1.18) - 2026-03-13

### Other
Expand Down
22 changes: 11 additions & 11 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "klag-exporter"
version = "0.1.18"
version = "0.1.19"
edition = "2021"
description = "High-performance Kafka consumer group lag exporter with offset and time lag metrics"
authors = ["Krzysztof Grajek"]
Expand Down
4 changes: 2 additions & 2 deletions helm/klag-exporter/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ description: A Helm chart for Kubernetes

type: application

version: "0.1.18"
version: "0.1.19"

appVersion: "0.1.18"
appVersion: "0.1.19"
2 changes: 1 addition & 1 deletion helm/klag-exporter/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ replicaCount: 1
image:
repository: ghcr.io/softwaremill/klag-exporter
pullPolicy: IfNotPresent
tag: "0.1.18"
tag: "0.1.19"

imagePullSecrets: []
# This is to override the chart name.
Expand Down
Loading