Skip to content

Commit

Permalink
feat: upgrade deps (#2555)
Browse files Browse the repository at this point in the history
* feat: upgrade deps

Signed-off-by: Ilya Kheifets <[email protected]>

* Updating version of certifi and urllib3 packages

* fix: upgrade setuptools

Signed-off-by: Ilya Kheifets <[email protected]>

* fix: warning during startup

Signed-off-by: Ilya Kheifets <[email protected]>

---------

Signed-off-by: Ilya Kheifets <[email protected]>
Co-authored-by: cwadhwani-splunk <[email protected]>
  • Loading branch information
ikheifets-splunk and cwadhwani-splunk authored Aug 13, 2024
1 parent 239f6c7 commit 091acca
Show file tree
Hide file tree
Showing 8 changed files with 23 additions and 34 deletions.
4 changes: 2 additions & 2 deletions package/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#work. If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.


ARG SYSLOGNG_VERSION=4.6.0
ARG SYSLOGNG_VERSION=4.8.0
FROM ghcr.io/axoflow/axosyslog:${SYSLOGNG_VERSION}


Expand All @@ -41,7 +41,7 @@ RUN apk add -U --upgrade --no-cache \
cargo \
ca-certificates \
poetry \
&& curl -fsSL https://goss.rocks/install | GOSS_VER=v0.4.7 sh \
&& curl -fsSL https://goss.rocks/install | GOSS_VER=v0.4.8 sh \
&& groupadd --gid 1024 syslog \
&& useradd -M -g 1024 -u 1024 syslog \
&& usermod -L syslog \
Expand Down
4 changes: 2 additions & 2 deletions package/Dockerfile.lite
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#work. If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.


ARG SYSLOGNG_VERSION=4.6.0
ARG SYSLOGNG_VERSION=4.8.0
FROM ghcr.io/axoflow/axosyslog:${SYSLOGNG_VERSION}


Expand All @@ -41,7 +41,7 @@ RUN apk add -U --upgrade --no-cache \
cargo \
ca-certificates \
poetry \
&& curl -fsSL https://goss.rocks/install | GOSS_VER=v0.4.7 sh \
&& curl -fsSL https://goss.rocks/install | GOSS_VER=v0.4.8 sh \
&& groupadd --gid 1024 syslog \
&& useradd -M -g 1024 -u 1024 syslog \
&& usermod -L syslog \
Expand Down
2 changes: 1 addition & 1 deletion package/etc/pylib/parser_cef.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def parse(self, log_message):
del pairs[vk]
del pairs[k]
elif k == "rawEvent":
pairs[k] = pairs[k].replace("\=", "=").replace("&&", "\n")
pairs[k] = pairs[k].replace(r"\=", "=").replace("&&", "\n")

for k, v in pairs.items():
kc = k.replace(" ", "_").replace(".", "_")
Expand Down
2 changes: 1 addition & 1 deletion package/etc/syslog-ng.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@version:4.6
@version:4.8


# syslog-ng configuration file.
Expand Down
2 changes: 1 addition & 1 deletion package/lite/etc/syslog-ng.conf.jinja
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@version:4.6
@version:4.8


# syslog-ng configuration file.
Expand Down
39 changes: 14 additions & 25 deletions poetry.lock

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

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ sqlitedict = "^2.0.0"
requests = "^2.28.1"
shortuuid = "^1.0.11"
pyyaml = "6.0.1"
setuptools = ">=69.0"
setuptools = "70.0.0"


[tool.poetry.group.dev.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion tests/Dockerfile.nc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG SYSLOGNG_VERSION=4.6.0
ARG SYSLOGNG_VERSION=4.8.0
FROM ghcr.io/axoflow/axosyslog:${SYSLOGNG_VERSION}

RUN apk add -U netcat-openbsd

0 comments on commit 091acca

Please sign in to comment.