Skip to content

Commit 8daff3c

Browse files
authored
Upgrade some dependencies to their latest versions (#62)
1 parent 070887e commit 8daff3c

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# The LabKey Remote API Library for Java - Change Log
22

3-
## version 5.4.0-SNAPSHOT
3+
## version 6.0.0-SNAPSHOT
44
*Released*: TBD
55
* Obfuscate SQL parameters passed by `ExecuteSqlCommand` and `SqlExecuteCommand` to avoid rejection by web application firewalls
66
* Earliest compatible LabKey Server version: 23.9.0
77
* These commands are no longer compatible with earlier versions of LabKey Server (23.8.x and before) by default, however,
88
if targeting an older server, calling `ExecuteSqlCommand.setWafEncoding(false)` will restore the previous behavior.
9-
* Update HttpCore version
9+
* Update HttpCore, JSON-java, Gradle Plugins, and Gradle versions
1010

1111
## version 5.3.0
1212
*Released*: 7 September 2023

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ artifactory_contextUrl=https://labkey.jfrog.io/artifactory
77
sourceCompatibility=17
88
targetCompatibility=17
99

10-
gradlePluginsVersion=1.41.2
10+
gradlePluginsVersion=1.42.1
1111

1212
commonsCodecVersion=1.16.0
1313
commonsLoggingVersion=1.2
@@ -17,7 +17,7 @@ hamcrestVersion=1.3
1717
httpclient5Version=5.2.1
1818
httpcore5Version=5.2.3
1919

20-
jsonObjectVersion=20230618
20+
jsonObjectVersion=20231013
2121

2222
junitVersion=4.13.2
2323

gradle/wrapper/gradle-wrapper.jar

346 Bytes
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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

0 commit comments

Comments
 (0)