Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update logback and logstash dependencies #4216

Merged
merged 1 commit into from
Jan 16, 2025
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
8 changes: 4 additions & 4 deletions data-plane/THIRD-PARTY.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Lists of 238 third-party dependencies.
(Eclipse Public License - v 1.0) (GNU Lesser General Public License) Logback Classic Module (ch.qos.logback:logback-classic:1.4.14 - http://logback.qos.ch/logback-classic)
(Eclipse Public License - v 1.0) (GNU Lesser General Public License) Logback Core Module (ch.qos.logback:logback-core:1.4.14 - http://logback.qos.ch/logback-core)
(Eclipse Public License - v 1.0) (GNU Lesser General Public License) Logback Classic Module (ch.qos.logback:logback-classic:1.5.16 - http://logback.qos.ch/logback-classic)
(Eclipse Public License - v 1.0) (GNU Lesser General Public License) Logback Core Module (ch.qos.logback:logback-core:1.5.16 - http://logback.qos.ch/logback-core)
(Apache License 2.0) brotli4j (com.aayushatharva.brotli4j:brotli4j:1.16.0 - https://github.com/hyperxpro/Brotli4j/brotli4j)
(Apache License 2.0) native-linux-x86_64 (com.aayushatharva.brotli4j:native-linux-x86_64:1.16.0 - https://github.com/hyperxpro/Brotli4j/natives/native-linux-x86_64)
(Apache License 2.0) service (com.aayushatharva.brotli4j:service:1.16.0 - https://github.com/hyperxpro/Brotli4j/service)
Expand Down Expand Up @@ -184,7 +184,7 @@ Lists of 238 third-party dependencies.
(Eclipse Public License 1.0) JUnit (junit:junit:4.12 - http://junit.org)
(Apache License, Version 2.0) Byte Buddy (without dependencies) (net.bytebuddy:byte-buddy:1.14.15 - https://bytebuddy.net/byte-buddy)
(Apache License, Version 2.0) Byte Buddy agent (net.bytebuddy:byte-buddy-agent:1.14.15 - https://bytebuddy.net/byte-buddy-agent)
(Apache License, Version 2.0) (MIT License) Logstash Logback Encoder (net.logstash.logback:logstash-logback-encoder:7.2 - https://github.com/logfellow/logstash-logback-encoder)
(Apache License, Version 2.0) (MIT License) Logstash Logback Encoder (net.logstash.logback:logstash-logback-encoder:8.0 - https://github.com/logfellow/logstash-logback-encoder)
(The MIT License) JOpt Simple (net.sf.jopt-simple:jopt-simple:5.0.4 - http://jopt-simple.github.io/jopt-simple)
(MIT) argparse4j (net.sourceforge.argparse4j:argparse4j:0.7.0 - http://argparse4j.github.io)
(The BSD License) ANTLR 4 Runtime (org.antlr:antlr4-runtime:4.9.2 - http://www.antlr.org/antlr4-runtime)
Expand Down Expand Up @@ -233,7 +233,7 @@ Lists of 238 third-party dependencies.
(Apache-2.0) Scala Library (org.scala-lang:scala-library:2.13.14 - https://www.scala-lang.org/)
(Apache-2.0) scala-collection-compat (org.scala-lang.modules:scala-collection-compat_2.13:2.10.0 - http://www.scala-lang.org/)
(Apache-2.0) scala-java8-compat (org.scala-lang.modules:scala-java8-compat_2.13:1.0.2 - http://www.scala-lang.org/)
(MIT License) SLF4J API Module (org.slf4j:slf4j-api:2.0.9 - http://www.slf4j.org)
(MIT License) SLF4J API Module (org.slf4j:slf4j-api:2.0.16 - http://www.slf4j.org)
(Apache License, Version 2.0) SnakeYAML Engine (org.snakeyaml:snakeyaml-engine:2.7 - https://bitbucket.org/snakeyaml/snakeyaml-engine)
(Apache License 2.0) wildfly-common (org.wildfly.common:wildfly-common:1.7.0.Final - http://www.jboss.org)
(Apache-2.0) snappy-java (org.xerial.snappy:snappy-java:1.1.10.5 - https://github.com/xerial/snappy-java)
Expand Down
6 changes: 3 additions & 3 deletions data-plane/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@
<jackson.version>2.14.1</jackson.version>
<protobuf.version>3.25.2</protobuf.version>
<bucket4j.version>7.6.0</bucket4j.version>
<slf4j.version>2.0.9</slf4j.version>
<ch.qos.logback.version>1.4.14</ch.qos.logback.version>
<net.logstash.logback.encoder.version>7.2</net.logstash.logback.encoder.version>
<slf4j.version>2.0.16</slf4j.version>
<ch.qos.logback.version>1.5.16</ch.qos.logback.version>
<net.logstash.logback.encoder.version>8.0</net.logstash.logback.encoder.version>
<assertj.version>3.26.0</assertj.version>
<awaitility.version>4.2.0</awaitility.version>
<junit.jupiter.version>5.10.2</junit.jupiter.version>
Expand Down
2 changes: 1 addition & 1 deletion data-plane/profiler/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ java \
dispatcher_pid=$!

# Download Sacura
GO111MODULE=off go get github.com/pierdipi/sacura/cmd/sacura || exit 1
GO111MODULE=off go install github.com/pierdipi/sacura/cmd/sacura@main || exit 1

# Suppress failure since it fails when it doesn't receive all events.
echo "Warm up $(date)"
Expand Down
Loading