-
Notifications
You must be signed in to change notification settings - Fork 8.8k
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
security: upgrade kafka-clients to 3.6.1 #6147
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -27,6 +27,7 @@ | |||||
|
||||||
### security: | ||||||
- [[#6069](https://github.com/seata/seata/pull/6069)] 升级Guava依赖版本,修复安全漏洞 | ||||||
- [[#6147](https://github.com/seata/seata/pull/6147)] 升级 kafka-clients依赖至3.5.2 | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
### test: | ||||||
- [[#6081](https://github.com/seata/seata/pull/6081)] 添加 `test-os.yml` 用于测试seata在各种操作系统下的运行情况 | ||||||
|
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -91,6 +91,7 @@ | |||||
<logback.version>1.2.9</logback.version> | ||||||
<logstash-logback-encoder.version>6.5</logstash-logback-encoder.version> | ||||||
<kafka-appender.version>0.2.0-RC2</kafka-appender.version> | ||||||
<kafka-clients.version>3.5.2</kafka-clients.version> | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why not use 3.6.1?
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. all resolved. |
||||||
|
||||||
<!-- redis --> | ||||||
<jedis.version>3.8.0</jedis.version> | ||||||
|
@@ -687,6 +688,17 @@ | |||||
<groupId>com.github.danielwegener</groupId> | ||||||
<artifactId>logback-kafka-appender</artifactId> | ||||||
<version>${kafka-appender.version}</version> | ||||||
<exclusions> | ||||||
<exclusion> | ||||||
<groupId>org.apache.kafka</groupId> | ||||||
<artifactId>kafka-clients</artifactId> | ||||||
</exclusion> | ||||||
</exclusions> | ||||||
</dependency> | ||||||
<dependency> | ||||||
<groupId>org.apache.kafka</groupId> | ||||||
<artifactId>kafka-clients</artifactId> | ||||||
<version>${kafka-clients.version}</version> | ||||||
</dependency> | ||||||
|
||||||
|
||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.