Skip to content

Commit 34e6286

Browse files
authored
Merge pull request #620 from lesserwhirls/release_5_6_2
Release 5.6.2
2 parents bb42b9c + c308025 commit 34e6286

File tree

7 files changed

+28
-12
lines changed

7 files changed

+28
-12
lines changed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@
1515

1616
tasks.wrapper {
1717
// to upgrade the gradle wrapper, bump the version below and run ./gradlew wrapper twice
18-
gradleVersion = "8.1.1"
18+
gradleVersion = "8.3"
1919
}

gradle/wrapper/gradle-wrapper.jar

1.61 KB
Binary file not shown.
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-bin.zip
44
networkTimeout=10000
5+
validateDistributionUrl=true
56
zipStoreBase=GRADLE_USER_HOME
67
zipStorePath=wrapper/dists

gradlew

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
#
4-
# Copyright © 2015-2023 the original authors.
4+
# Copyright © 2015-2021 the original authors.
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License");
77
# you may not use this file except in compliance with the License.
@@ -83,7 +83,8 @@ done
8383
# This is normally unused
8484
# shellcheck disable=SC2034
8585
APP_BASE_NAME=${0##*/}
86-
APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
86+
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
87+
APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit
8788

8889
# Use the maximum available, or set MAX_FD != -1 to use that value.
8990
MAX_FD=maximum
@@ -130,10 +131,13 @@ location of your Java installation."
130131
fi
131132
else
132133
JAVACMD=java
133-
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
134+
if ! command -v java >/dev/null 2>&1
135+
then
136+
die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
134137
135138
Please set the JAVA_HOME variable in your environment to match the
136139
location of your Java installation."
140+
fi
137141
fi
138142

139143
# Increase the maximum file descriptors if we can.

libs.versions.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,18 @@
1616
#
1717
# project version
1818
#
19-
ds3SdkVersion = "5.6.1-SNAPSHOT"
19+
ds3SdkVersion = "5.6.3-SNAPSHOT"
2020
#
2121
# dependency versions
2222
#
2323
commonsLang3Version = "3.12.0"
2424
commonsCodecVersion = "1.15"
2525
commonsIoVersion = "2.11.0"
2626
findbugsVersion = "3.0.1"
27-
guavaVersion = "31.1-jre"
27+
guavaVersion = "32.1.2-jre"
2828
hamcrestVersion = "2.2"
2929
httpclientVersion = "4.5.13"
30-
jacksonVersion = "2.14.2"
30+
jacksonVersion = "2.15.2"
3131
jnaVersion = "5.12.1"
3232
junitJupiterVersion = "5.9.0"
3333
junitVersion = "4.13.2"
@@ -70,10 +70,10 @@ slf4jSimple = { group = "org.slf4j", name = "slf4j-simple", version.ref = "slf4j
7070
# plugins used in buildSrc/
7171
#
7272
kotlinJvmPlugin = { group = "org.jetbrains.kotlin", name = "kotlin-gradle-plugin", version.ref = "kotlinVersion" }
73-
owaspDepCheckPlugin = { group = "org.owasp", name = "dependency-check-gradle", version = "8.1.2" }
74-
versionsPlugin = { group = "com.github.ben-manes", name = "gradle-versions-plugin", version = "0.46.0" }
73+
owaspDepCheckPlugin = { group = "org.owasp", name = "dependency-check-gradle", version = "8.4.0" }
74+
versionsPlugin = { group = "com.github.ben-manes", name = "gradle-versions-plugin", version = "0.47.0" }
7575

7676
[plugins]
77-
gradleDepVers = { id = "com.github.ben-manes.versions", version = "0.46.0" }
77+
gradleDepVers = { id = "com.github.ben-manes.versions", version = "0.47.0" }
7878
gitVersionPlugin = { id = "com.palantir.git-version", version = "0.12.2" } # stuck on this version until we move from building with java 8
7979
shadowPlugin = { id = "com.github.johnrengelman.shadow", version = "7.1.2" }

project_files/owasp/dependency-check-suppression.xml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,15 @@
77
<packageUrl regex="true">^(?!pkg:maven/commons-net/commons-net).*$</packageUrl>
88
<cpe>cpe:/a:apache:commons_net</cpe>
99
</suppress>
10+
<suppress>
11+
<notes><![CDATA[
12+
file name: jackson-databind-2.15.2.jar
13+
reason: DISPUTED: the vendor's perspective is that this is not a valid vulnerability report, because
14+
the steps of constructing a cyclic data structure and trying to serialize it cannot be
15+
achieved by an external attacker. See:
16+
https://github.com/FasterXML/jackson-databind/issues/3972
17+
]]></notes>
18+
<packageUrl regex="true">^pkg:maven/com\.fasterxml\.jackson\.core/jackson\-databind@.*$</packageUrl>
19+
<cve>CVE-2023-35116</cve>
20+
</suppress>
1021
</suppressions>

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
*/
1515

1616
plugins {
17-
id("org.gradle.toolchains.foojay-resolver-convention").version("0.5.0")
17+
id("org.gradle.toolchains.foojay-resolver-convention").version("0.7.0")
1818
}
1919

2020
rootProject.name = "ds3-java-sdk"

0 commit comments

Comments
 (0)