Skip to content

Commit a908a77

Browse files
authored
Merge pull request #827 from axoflow/version/4.19.1
Version: 4.19.1
2 parents 6a49eaa + 56e8516 commit a908a77

File tree

7 files changed

+19
-42
lines changed

7 files changed

+19
-42
lines changed

NEWS.md

Lines changed: 5 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
4.19.0
1+
4.19.1
22
======
33

4+
_This is a hotfix release that fixes a config reload time memory leak_
5+
46
AxoSyslog is binary-compatible with syslog-ng [1] and serves as a drop-in replacement.
57

68
We provide [cloud-ready container images](https://github.com/axoflow/axosyslog/#container-images) and Helm charts.
@@ -9,45 +11,12 @@ Packages are available in our [APT](https://github.com/axoflow/axosyslog/#deb-pa
911

1012
Check out the [AxoSyslog documentation](https://axoflow.com/docs/axosyslog-core/) for all the details.
1113

12-
## Features
13-
14-
* `dict_to_pairs()` FilterX function: Added a new function to convert dicts to list of pairs
15-
16-
Example usage:
17-
```
18-
dict = {
19-
"value_1": "foo",
20-
"value_2": "bar",
21-
"value_3": ["baz", "bax"],
22-
};
23-
24-
list = dict_to_pairs(dict, "key", "value");
25-
# Becomes:
26-
# [
27-
# {"key":"value_1","value":"foo"},
28-
# {"key":"value_2","value":"bar"},
29-
# {"key":"value_3","value":["baz","bax"]}
30-
# ]
31-
```
32-
([#810](https://github.com/axoflow/axosyslog/pull/810))
33-
3414

3515
## Bugfixes
3616

37-
* `syslogng_output_unreachable` metric: fix marking destinations unreachable during reload
38-
([#818](https://github.com/axoflow/axosyslog/pull/818))
39-
40-
* `transport(proxied-tcp)`: Fix a HAProxy protocol v2 parsing issue that
41-
caused a failed assertion. This essentially triggers a crash with a SIGABRT
42-
whenever a "LOCAL" command was sent in the HAProxy header without address
43-
information.
44-
([#814](https://github.com/axoflow/axosyslog/pull/814))
45-
46-
* filterx: fix `parse_csv` function crash if coulumns specified non-existent variable
47-
([#819](https://github.com/axoflow/axosyslog/pull/819))
17+
* `filterx`: Fixed a memory leak that occurs during reloads.
18+
([#827](https://github.com/axoflow/axosyslog/pull/827))
4819

49-
* `opentelemetry()` source: fix various crashes during startup/reload
50-
([#822](https://github.com/axoflow/axosyslog/pull/822))
5120

5221

5322
[1] syslog-ng is a trademark of One Identity.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ docker pull ghcr.io/axoflow/axosyslog:nightly
8585
> Note: These named packages are automatically updated when a new AxoSyslog package is released. To install a specific version, run `docker pull ghcr.io/axoflow/axosyslog:<version-number>`, for example:
8686
>
8787
> ```shell
88-
> docker pull ghcr.io/axoflow/axosyslog:4.19.0
88+
> docker pull ghcr.io/axoflow/axosyslog:4.19.1
8989
> ```
9090
9191
The container images contain a default configuration file which you probably

VERSION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.19.0
1+
4.19.1

docker/apkbuild/axoflow/axosyslog/APKBUILD

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# Contributor: jv <jens@eisfair.org>
66
# Maintainer: László Várady <laszlo.varady@axoflow.com>
77
pkgname=axosyslog
8-
pkgver=4.19.0
8+
pkgver=4.19.1
99
pkgrel=0
1010
pkgdesc="Next generation logging daemon"
1111
url="https://axoflow.com/docs/axosyslog/"
@@ -179,5 +179,5 @@ _submv() {
179179
}
180180

181181
sha512sums="
182-
SKIP axosyslog-4.19.0.tar.gz
182+
SKIP axosyslog-4.19.1.tar.gz
183183
"

news/bugfix-827.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

packaging/debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
axosyslog (4.19.1-1) unstable; urgency=medium
2+
3+
* New upstream release 4.19.1
4+
5+
-- github-actions <41898282+github-actions@users.noreply.github.com> Thu, 16 Oct 2025 13:00:00 +0000
6+
17
axosyslog (4.19.0-1) unstable; urgency=medium
28

39
* New upstream release 4.19.0

packaging/rhel/axosyslog.spec

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: axosyslog
2-
Version: 4.19.0
2+
Version: 4.19.1
33
Release: 2%{?dist}
44
Summary: Next-generation syslog server
55

@@ -683,6 +683,9 @@ fi
683683

684684

685685
%changelog
686+
* Thu Oct 16 2025 github-actions <41898282+github-actions@users.noreply.github.com> - 4.19.1-1
687+
- updated to 4.19.1
688+
686689
* Fri Oct 10 2025 github-actions <41898282+github-actions@users.noreply.github.com> - 4.19.0-1
687690
- updated to 4.19.0
688691

0 commit comments

Comments
 (0)