-
Notifications
You must be signed in to change notification settings - Fork 23
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
Issue-281: Updates dependencies version to fix CVE-2023-2976 #282
Changes from all commits
2ae661f
a9e8208
61375e3
86fae3c
90774c1
e45cb58
4a6dc20
1c91a8f
d94f8bc
0019d27
0e2f76d
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 |
---|---|---|
|
@@ -13,7 +13,7 @@ dockerExecutable=/usr/bin/docker | |
#3rd party Versions | ||
apacheCommonsCsvVersion=1.5 | ||
apacheCommonsCompressVersion=1.21 | ||
checkstyleToolVersion=8.23 | ||
checkstyleToolVersion=10.12.3 | ||
commonsBeanutilsVersion=1.9.4 | ||
commonsioVersion=2.11.0 | ||
commonsLang3Version=3.7 | ||
|
@@ -24,7 +24,7 @@ spotbugsPluginVersion=4.4.4 | |
gradleDockerPlugin=3.1.0 | ||
gradleLombokPluginVersion=4.0.0 | ||
gradleSshPluginVersion=2.9.0 | ||
guavaVersion=30.1-jre | ||
guavaVersion=32.0.1-jre | ||
javaxServletApiVersion=4.0.0 | ||
jacksonVersion=2.14.1 | ||
everitVersion=1.12.1 | ||
|
@@ -39,10 +39,10 @@ nettyBoringSSLVersion=2.0.54.Final | |
jacocoVersion=0.8.5 | ||
protobufGradlePlugin=0.8.15 | ||
protobufProtocVersion=3.21.7 | ||
protobufUtilVersion=3.19.4 | ||
protobufUtilVersion=3.24.3 | ||
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. I see there is a PR on Pravega too for similar issue. Can we check the versions and try to keep them in sync just in order to avoid backward-forward incompatibility issue at a later stage? 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.
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.
already syncing |
||
qosLogbackVersion=1.2.10 | ||
shadowGradlePlugin=4.0.2 | ||
swaggerJersey2JaxrsVersion=1.6.2 | ||
swaggerJersey2JaxrsVersion=1.6.11 | ||
slf4jApiVersion=1.7.25 | ||
gradleGitPluginVersion=4.1.1 | ||
avroVersion=1.11.1 | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -74,7 +74,7 @@ private JSONSchema(SchemaInfo schemaInfo, String schemaString, Class<T> derived) | |
* | ||
* @param tClass Class whose object's schema is used. | ||
* @param <T> Type of the Java class. | ||
* @return {@link JSONSchema} with generic type T that extracts and captures the json schema. | ||
* @return {@link JSONSchema} with generic type T that extracts and captures the json schema. | ||
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. Please Ignore these spaces are automatically removed by IntelliJ. |
||
*/ | ||
public static <T> JSONSchema<T> of(Class<T> tClass) { | ||
Preconditions.checkNotNull(tClass); | ||
|
@@ -96,7 +96,7 @@ public static <T> JSONSchema<T> of(Class<T> tClass) { | |
* @param schema Schema to use. | ||
* @param tClass class for the type of object | ||
* @param <T> Type of object | ||
* @return Returns an JSONSchema with {@link Object} type. | ||
* @return Returns an JSONSchema with {@link Object} type. | ||
*/ | ||
public static <T> JSONSchema<T> of(String type, JsonSchema schema, Class<T> tClass) { | ||
Preconditions.checkNotNull(type); | ||
|
@@ -132,7 +132,7 @@ public static <T> JSONSchema<T> of(String type, String schemaString, Class<T> tC | |
* | ||
* @param tBase Base class whose type is used in the JSON schema object. | ||
* @param tDerived Class whose schema should be used. | ||
* @param <T> Type of base class. | ||
* @param <T> Type of base class. | ||
* @return Returns an JsonSchema of type T. | ||
*/ | ||
public static <T> JSONSchema<T> ofBaseType(Class<? extends T> tDerived, Class<T> tBase) { | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -75,7 +75,7 @@ public static StoreExceptions create(final Type type, final String errorMessage) | |
* @return Instance of type of StoreException. | ||
*/ | ||
public static StoreExceptions create(final Type type, final Throwable cause, final String errorMessage) { | ||
Preconditions.checkArgument(cause != null || (errorMessage != null && !errorMessage.isEmpty()), | ||
Preconditions.checkArgument(cause != null || errorMessage != null && !errorMessage.isEmpty(), | ||
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 is this change required? 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. As we are changing the Checkstyle version it was claimed by that, it was claiming that |
||
"Either cause or errorMessage should be non-empty"); | ||
StoreExceptions exception; | ||
switch (type) { | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -86,7 +86,7 @@ public CompletableFuture<Void> updateEntries(List<Entry<Integer>> updates) { | |
TableKey key = update.getKey(); | ||
Integer version = update.getVersion(); | ||
Value<TableValue, Integer> val = table.get(key); | ||
return version == null || (val != null && version.equals(val.getVersion())); | ||
return version == null || val != null && version.equals(val.getVersion()); | ||
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. Didn't get the reason behind this 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. As we are changing the Checkstyle version it was claimed by that, it was claiming that |
||
}); | ||
|
||
if (isValid) { | ||
|
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.
Why are these javaDocsMethod checkstyle properties removed?
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.
These all are deprecated in new checkStyle version