-
Notifications
You must be signed in to change notification settings - Fork 63
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
[FLINK-35182] Bump org.apache.commons:commons-compress from 1.24.0 to 1.26.1 for Flink Pulsar connector #90
Conversation
pom.xml
Outdated
<dependency> | ||
<groupId>commons-io</groupId> | ||
<artifactId>commons-io</artifactId> | ||
<version>2.15.1</version> |
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.
Move the version to the properties.
pom.xml
Outdated
<dependency> | ||
<groupId>org.apache.commons</groupId> | ||
<artifactId>commons-lang3</artifactId> | ||
<version>3.14.0</version> |
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.
Move the version to the properties.
@@ -49,7 +49,7 @@ public Foo() {} | |||
|
|||
@Override | |||
public String toString() { | |||
return "" + i + "," + f + "," + (bar == null ? "null" : bar.toString()); | |||
return i + "," + f + "," + (bar == null ? "null" : bar.toString()); |
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.
I prefer to do only one thing in one PR. This refactor shouldn't be included in the version bump.
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.
Because ci failed ,I just modify code to trigger ci. Now,This code had been reverted.
OK, LGTM. We need to get the CI pass, finally. |
…1.26.1 for Flink Pulsar connector
@syhily CI passed~ |
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.
Thank you! This closes #83.
This closes #83.