Skip to content

Commit

Permalink
Update All patch-minor dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Nov 13, 2024
1 parent aacf97a commit e146826
Show file tree
Hide file tree
Showing 6 changed files with 69 additions and 58 deletions.
62 changes: 31 additions & 31 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ plugins {
id 'idea'
id 'pmd'
id 'jacoco'
id 'io.spring.dependency-management' version '1.1.5'
id 'io.spring.dependency-management' version '1.1.6'
id 'org.springframework.boot' version '2.7.18'
id 'com.github.ben-manes.versions' version '0.51.0'
id 'org.sonarqube' version '5.0.0.4638'
id 'uk.gov.hmcts.java' version '0.12.57'
id 'com.github.hmcts.rse-cft-lib' version '0.19.1214'
id 'org.sonarqube' version '5.1.0.4882'
id 'uk.gov.hmcts.java' version '0.12.63'
id 'com.github.hmcts.rse-cft-lib' version '0.19.1457'
id 'com.github.spacialcircumstances.gradle-cucumber-reporting' version '0.1.25'
id 'info.solidsoft.pitest' version '1.15.0'

Expand Down Expand Up @@ -89,7 +89,7 @@ tasks.withType(JavaExec).configureEach {
}

checkstyle {
toolVersion '10.3.1'
toolVersion '10.20.1'
}

tasks.withType(Checkstyle) {
Expand Down Expand Up @@ -209,12 +209,12 @@ task smoke(type: Test) {

checkstyle {
maxWarnings = 0
toolVersion = '9.2.1'
toolVersion = '9.3'
getConfigDirectory().set(new File(rootDir, 'config/checkstyle'))
}

pmd {
toolVersion = "6.41.0"
toolVersion = "6.55.0"
sourceSets = [sourceSets.main, sourceSets.test, sourceSets.functionalTest, sourceSets.integrationTest, sourceSets.smokeTest]
reportsDir = file("$project.buildDir/reports/pmd")
// https://github.com/pmd/pmd/issues/876
Expand Down Expand Up @@ -302,18 +302,18 @@ pitest {
project.tasks['pitest'].group = "Verification"

ext {
set('springCloudVersion', "2021.0.8")
reformLogging = '6.0.1'
set('springCloudVersion', "2021.0.9")
reformLogging = '6.1.7'
lombokVersion = '1.18.34'
jacksonVersion = '2.14.2'
springFrameworkVersion = '5.3.27'
springFrameworkSecurityVersion = '5.8.10'
jacksonVersion = '2.18.1'
springFrameworkVersion = '5.3.39'
springFrameworkSecurityVersion = '5.8.15'
cucumberVersion = '5.7.0'
wiremockVersion = '2.35.0'
elasticsearchVersion = '7.17.8'
testcontainersVersion = '1.20.2'
gradlePitestVersion = '1.9.0'
pitestVersion = '1.9.11'
wiremockVersion = '2.35.2'
elasticsearchVersion = '7.17.25'
testcontainersVersion = '1.20.3'
gradlePitestVersion = '1.15.0'
pitestVersion = '1.17.1'
sonarPitestVersion = '0.5'
}

Expand All @@ -340,35 +340,35 @@ dependencies {
implementation group: 'org.springframework.security', name: 'spring-security-oauth2-resource-server', version: springFrameworkSecurityVersion
implementation group: 'org.springframework.security', name: 'spring-security-web', version: springFrameworkSecurityVersion

implementation group: 'org.springframework.security', name: 'spring-security-rsa', version: '1.1.1'
implementation group: 'org.springframework.security', name: 'spring-security-rsa', version: '1.1.5'
implementation group: 'org.springframework.cloud', name: 'spring-cloud-starter-openfeign'
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: jacksonVersion
implementation group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jsr310', version: jacksonVersion

implementation group: 'org.yaml', name: 'snakeyaml', version: '2.0'
implementation group: 'org.yaml', name: 'snakeyaml', version: '2.3'

implementation group: 'com.github.hmcts.java-logging', name: 'logging', version: reformLogging
implementation group: 'com.github.hmcts.java-logging', name: 'logging-appinsights', version: reformLogging

implementation group: 'net.logstash.logback', name: 'logstash-logback-encoder', version: '7.2'
implementation group: 'net.logstash.logback', name: 'logstash-logback-encoder', version: '7.4'
implementation group: 'com.microsoft.azure', name: 'applicationinsights-spring-boot-starter', version: '2.6.4'

implementation group: 'commons-validator', name: 'commons-validator', version: '1.7'
implementation group: 'commons-io', name: 'commons-io', version: '2.14.0'
implementation group: 'commons-validator', name: 'commons-validator', version: '1.9.0'
implementation group: 'commons-io', name: 'commons-io', version: '2.17.0'
implementation group: 'commons-fileupload', name: 'commons-fileupload', version: '1.5'

implementation group: 'com.github.hmcts', name: 'service-auth-provider-java-client', version: '4.1.2'
implementation group: 'com.github.hmcts', name: 'idam-java-client', version: '2.1.1'
implementation group: 'com.github.hmcts', name: 'ccd-client', version: 'v4.9.1'
implementation group: 'com.github.hmcts', name: 'ccd-client', version: '4.9.5-SPRING2'

implementation group: 'io.github.openfeign', name: 'feign-jackson', version: '12.1'
implementation group: 'io.github.openfeign', name: 'feign-jackson', version: '12.5'

annotationProcessor group: 'org.projectlombok', name: 'lombok', version: lombokVersion
implementation group: 'org.projectlombok', name: 'lombok', version: lombokVersion


// Unit test dependencies
testImplementation(platform('org.junit:junit-bom:5.9.2'))
testImplementation(platform('org.junit:junit-bom:5.11.3'))
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
testImplementation group: 'org.springframework.boot', name: 'spring-boot-starter-test', {
exclude group: 'junit', module: 'junit'
Expand All @@ -381,7 +381,7 @@ dependencies {
testImplementation group: 'org.codehaus.sonar-plugins', name: 'sonar-pitest-plugin', version: sonarPitestVersion

// CFTLib dependencies
cftlibImplementation group: 'org.awaitility', name: 'awaitility', version: '4.2.0'
cftlibImplementation group: 'org.awaitility', name: 'awaitility', version: '4.2.2'
cftlibImplementation group: 'org.testcontainers', name: 'testcontainers', version: testcontainersVersion
cftlibAnnotationProcessor group: 'org.projectlombok', name: 'lombok', version: lombokVersion

Expand All @@ -394,7 +394,7 @@ dependencies {
integrationTestImplementation group: 'org.elasticsearch.client', name: 'elasticsearch-rest-high-level-client', version: elasticsearchVersion
integrationTestImplementation group: 'org.testcontainers', name: 'junit-jupiter', version: testcontainersVersion
integrationTestImplementation group: 'org.testcontainers', name: 'elasticsearch', version: testcontainersVersion
integrationTestImplementation group: 'com.pivovarit', name: 'throwing-function', version: '1.5.1'
integrationTestImplementation group: 'com.pivovarit', name: 'throwing-function', version: '1.6.1'
integrationTestAnnotationProcessor group: 'org.projectlombok', name: 'lombok', version: lombokVersion
integrationTestImplementation group: 'org.projectlombok', name: 'lombok', version: lombokVersion

Expand All @@ -405,11 +405,11 @@ dependencies {
functionalTestImplementation sourceSets.integrationTest.runtimeClasspath
functionalTestImplementation group: 'io.cucumber', name: 'cucumber-junit', version: cucumberVersion
functionalTestImplementation group: 'io.cucumber', name: 'cucumber-java', version: cucumberVersion
functionalTestImplementation group: 'io.vavr', name: 'vavr', version: '0.10.4'
functionalTestImplementation group: 'io.rest-assured', name: 'rest-assured', version: '4.4.0'
functionalTestImplementation group: 'io.vavr', name: 'vavr', version: '0.10.5'
functionalTestImplementation group: 'io.rest-assured', name: 'rest-assured', version: '4.5.1'

testImplementation group: 'com.github.hmcts', name: 'befta-fw', version: '9.0.2'
testImplementation group: 'com.github.hmcts', name: 'ccd-test-definitions', version: '7.22.2'
testImplementation group: 'com.github.hmcts', name: 'befta-fw', version: '9.2.0'
testImplementation group: 'com.github.hmcts', name: 'ccd-test-definitions', version: '7.24.1-prerelease-CME-109'

}

Expand Down
6 changes: 3 additions & 3 deletions charts/ccd-next-hearing-date-updater/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ appVersion: "1.0"
description: A Helm chart for ccd-next-hearing-date-updater App
name: ccd-next-hearing-date-updater
home: https://github.com/hmcts/ccd-next-hearing-date-updater
version: 0.0.12
version: 0.0.13
maintainers:
- name: HMCTS CCD Team
dependencies:
- name: job
version: 2.1.1
version: 2.1.2
repository: 'https://hmctspublic.azurecr.io/helm/v1/repo/'
- name: elasticsearch
version: 7.17.3
Expand All @@ -19,6 +19,6 @@ dependencies:
repository: 'https://helm.elastic.co'
condition: elastic.enabled
- name: ccd
version: 8.0.27
version: 8.0.29
repository: 'https://hmctspublic.azurecr.io/helm/v1/repo/'
condition: ccd.enabled
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
3 changes: 2 additions & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11-all.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
34 changes: 21 additions & 13 deletions gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
# SPDX-License-Identifier: Apache-2.0
#

##############################################################################
#
Expand Down Expand Up @@ -55,7 +57,7 @@
# Darwin, MinGW, and NonStop.
#
# (3) This script is generated from the Groovy template
# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
# within the Gradle project.
#
# You can find Gradle at https://github.com/gradle/gradle/.
Expand Down Expand Up @@ -83,10 +85,9 @@ done
# This is normally unused
# shellcheck disable=SC2034
APP_BASE_NAME=${0##*/}
APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit

# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
' "$PWD" ) || exit

# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD=maximum
Expand Down Expand Up @@ -133,26 +134,29 @@ location of your Java installation."
fi
else
JAVACMD=java
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
if ! command -v java >/dev/null 2>&1
then
die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
fi

# Increase the maximum file descriptors if we can.
if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
case $MAX_FD in #(
max*)
# In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
# shellcheck disable=SC3045
# shellcheck disable=SC2039,SC3045
MAX_FD=$( ulimit -H -n ) ||
warn "Could not query maximum file descriptor limit"
esac
case $MAX_FD in #(
'' | soft) :;; #(
*)
# In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
# shellcheck disable=SC3045
# shellcheck disable=SC2039,SC3045
ulimit -n "$MAX_FD" ||
warn "Could not set maximum file descriptor limit to $MAX_FD"
esac
Expand Down Expand Up @@ -197,11 +201,15 @@ if "$cygwin" || "$msys" ; then
done
fi

# Collect all arguments for the java command;
# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of
# shell script including quotes and variable substitutions, so put them in
# double quotes to make sure that they get re-expanded; and
# * put everything else in single quotes, so that it's not re-expanded.

# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'

# Collect all arguments for the java command:
# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
# and any embedded shellness will be escaped.
# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
# treated as '${Hostname}' itself on the command line.

set -- \
"-Dorg.gradle.appname=$APP_BASE_NAME" \
Expand Down
22 changes: 12 additions & 10 deletions gradlew.bat
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
@rem See the License for the specific language governing permissions and
@rem limitations under the License.
@rem
@rem SPDX-License-Identifier: Apache-2.0
@rem

@if "%DEBUG%"=="" @echo off
@rem ##########################################################################
Expand Down Expand Up @@ -43,11 +45,11 @@ set JAVA_EXE=java.exe
%JAVA_EXE% -version >NUL 2>&1
if %ERRORLEVEL% equ 0 goto execute

echo.
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
echo. 1>&2
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2
echo. 1>&2
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
echo location of your Java installation. 1>&2

goto fail

Expand All @@ -57,11 +59,11 @@ set JAVA_EXE=%JAVA_HOME%/bin/java.exe

if exist "%JAVA_EXE%" goto execute

echo.
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
echo. 1>&2
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2
echo. 1>&2
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
echo location of your Java installation. 1>&2

goto fail

Expand Down

0 comments on commit e146826

Please sign in to comment.