Skip to content

Commit

Permalink
Update all non-major dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Feb 6, 2025
1 parent de8afe2 commit 29e9379
Show file tree
Hide file tree
Showing 7 changed files with 45 additions and 41 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# renovate: datasource=github-releases depName=microsoft/ApplicationInsights-Java
ARG APP_INSIGHTS_AGENT_VERSION=3.4.18
ARG APP_INSIGHTS_AGENT_VERSION=3.7.0
# Application image
FROM hmctspublic.azurecr.io/base/java:17-distroless

Expand Down
72 changes: 36 additions & 36 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,17 @@ plugins {
id 'checkstyle'
id 'jacoco'
id 'pmd'
id 'com.github.ben-manes.versions' version '0.50.0'
id 'com.github.ben-manes.versions' version '0.52.0'
id 'info.solidsoft.pitest' version '1.9.11'
id 'io.spring.dependency-management' version '1.1.4'
id 'org.owasp.dependencycheck' version '10.0.3'
id 'org.sonarqube' version '4.3.0.3225'
id 'io.spring.dependency-management' version '1.1.7'
id 'org.owasp.dependencycheck' version '10.0.4'
id 'org.sonarqube' version '4.4.1.3373'
id 'org.springframework.boot' version '2.7.18'
id 'uk.gov.hmcts.java' version '0.12.63'
id 'uk.gov.hmcts.java' version '0.12.65'
id 'io.freefair.lombok' version '6.2.0'
id 'au.com.dius.pact' version '4.2.14'
id 'au.com.dius.pact' version '4.6.16'
id "name.remal.randomize-test-classes" version "1.5.0"
id 'org.gradle.test-retry' version '1.5.8'
id 'org.gradle.test-retry' version '1.6.2'
}

apply plugin: 'java'
Expand All @@ -34,17 +34,17 @@ apply plugin: 'idea'

def versions = [
jupiter : '5.8.2',
junitPlatform : '1.10.1',
junitPlatform : '1.11.4',
gradlePitest : '1.15.0',
pact_version : '4.1.38',
pitest : '1.15.3',
reformLogging : '6.0.1',
pact_version : '4.6.16',
pitest : '1.18.0',
reformLogging : '6.1.8',
reformHealthStarter: '0.0.5',
restAssured : '5.4.0',
serenity : '4.1.3',
serenity : '4.2.16',
sonarPitest : '0.5',
springHystrix : '2.2.10.RELEASE',
springDoc : '1.7.0',
springDoc : '1.8.0',
springCloud : '3.1.7'
]

Expand Down Expand Up @@ -199,7 +199,7 @@ task fortifyScan(type: JavaExec, description: 'Run fortify scan.') {
}

jacoco {
toolVersion = "0.8.11"
toolVersion = "0.8.12"
}

jacocoTestReport {
Expand Down Expand Up @@ -297,26 +297,26 @@ repositories {
dependencyManagement {
dependencies {

dependencySet(group: 'org.yaml', version: '2.2') {
dependencySet(group: 'org.yaml', version: '2.3') {
entry 'snakeyaml'
}

dependencySet(group: 'commons-fileupload', version: '1.5') {
entry 'commons-fileupload'
}

dependencySet(group: 'com.fasterxml.jackson.core', version: '2.16.0') {
dependencySet(group: 'com.fasterxml.jackson.core', version: '2.18.2') {
entry 'jackson-databind'
entry 'jackson-core'
entry 'jackson-annotations'
}

dependencySet(group: 'com.fasterxml.jackson.dataformat', version: '2.16.0') {
dependencySet(group: 'com.fasterxml.jackson.dataformat', version: '2.18.2') {
entry 'jackson-dataformat-yaml'
entry 'jackson-dataformat-csv'
}

dependencySet(group: 'com.fasterxml.jackson.datatype', version: '2.16.0') {
dependencySet(group: 'com.fasterxml.jackson.datatype', version: '2.18.2') {
entry 'jackson-datatype-jsr310'
entry 'jackson-datatype-jdk8'
}
Expand Down Expand Up @@ -349,10 +349,10 @@ dependencies {
implementation group: 'org.springframework.security', name: 'spring-security-oauth2-jose'

// CVE-2019-17195
implementation group: 'com.nimbusds', name: 'nimbus-jose-jwt', version: '9.37.2'
implementation group: 'com.nimbusds', name: 'nimbus-jose-jwt', version: '9.48'

// CVE-2021-27568
implementation group: 'net.minidev', name: 'json-smart', version: '2.5.0'
implementation group: 'net.minidev', name: 'json-smart', version: '2.5.1'

implementation group: 'com.github.ben-manes.caffeine', name: 'caffeine', version: '2.9.3'

Expand All @@ -368,8 +368,8 @@ dependencies {
implementation group: 'ch.qos.logback', name: 'logback-core', version: '1.2.13'
implementation group: 'net.logstash.logback', name: 'logstash-logback-encoder', version: '8.0'

implementation group: 'org.apache.tomcat.embed', name: 'tomcat-embed-core', version: '9.0.83'
implementation group: 'org.apache.tomcat.embed', name: 'tomcat-embed-websocket', version: '9.0.83'
implementation group: 'org.apache.tomcat.embed', name: 'tomcat-embed-core', version: '9.0.98'
implementation group: 'org.apache.tomcat.embed', name: 'tomcat-embed-websocket', version: '9.0.98'

implementation group: 'com.sun.xml.bind', name: 'jaxb-osgi', version: '2.3.9'
implementation (group: 'com.github.hmcts', name: 'document-management-client', version: '7.0.1'){
Expand All @@ -378,36 +378,36 @@ dependencies {

implementation group: 'com.github.hmcts.java-logging', name: 'logging', version: versions.reformLogging
implementation group: 'com.github.hmcts.java-logging', name: 'logging-appinsights', version: versions.reformLogging
implementation(group: 'com.github.hmcts', name: 'service-auth-provider-java-client', version: '4.0.2') {
implementation(group: 'com.github.hmcts', name: 'service-auth-provider-java-client', version: '4.1.2') {
exclude group: "org.bouncycastle", module: "bcprov-jdk15on"
}

implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.14.0'
implementation group: 'commons-io', name: 'commons-io', version: '2.15.1'
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.17.0'
implementation group: 'commons-io', name: 'commons-io', version: '2.18.0'

implementation(group: 'org.springframework.cloud', name: 'spring-cloud-starter-openfeign', version: '3.1.8') {
implementation(group: 'org.springframework.cloud', name: 'spring-cloud-starter-openfeign', version: '3.1.9') {
exclude group: "org.bouncycastle", module: "bcprov-jdk15on"
}
implementation(group: 'org.springframework.cloud', name: 'spring-cloud-starter-bootstrap' , version: '3.1.7') {
implementation(group: 'org.springframework.cloud', name: 'spring-cloud-starter-bootstrap' , version: '3.1.9') {
exclude group: "org.bouncycastle", module: "bcprov-jdk15on"
}
implementation group: 'org.bouncycastle', name: 'bcprov-jdk18on', version: '1.75'
implementation group: 'org.bouncycastle', name: 'bcprov-jdk18on', version: '1.80'

implementation 'ch.qos.logback:logback-classic:1.2.13'
implementation 'ch.qos.logback:logback-core:1.2.13'
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-cache'

implementation group: 'uk.gov.service.notify', name: 'notifications-java-client', version: '5.0.1-RELEASE'
implementation group: 'uk.gov.service.notify', name: 'notifications-java-client', version: '5.2.1-RELEASE'

implementation group: 'com.google.guava', name: 'guava', version: '32.1.3-jre'
annotationProcessor 'org.projectlombok:lombok:1.18.30'
compileOnly 'org.projectlombok:lombok:1.18.30'
annotationProcessor 'org.projectlombok:lombok:1.18.36'
compileOnly 'org.projectlombok:lombok:1.18.36'
implementation group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.14'

implementation group: 'com.launchdarkly', name: 'launchdarkly-java-server-sdk', version: '6.2.1'
implementation group: 'com.launchdarkly', name: 'launchdarkly-java-server-sdk', version: '6.3.0'

testImplementation group: 'org.mockito', name: 'mockito-inline', version: '3.6.28'
testImplementation group: 'org.assertj', name: 'assertj-core', version: '3.16.1'
testImplementation group: 'org.mockito', name: 'mockito-inline', version: '3.12.4'
testImplementation group: 'org.assertj', name: 'assertj-core', version: '3.27.3'
testImplementation group: 'org.powermock', name: 'powermock-api-mockito2', version: '2.0.9'
testImplementation(group: 'org.springframework.boot', name: 'spring-boot-starter-test') {
exclude group: "com.vaadin.external.google", module: "android-json"
Expand All @@ -427,14 +427,14 @@ dependencies {
testImplementation group: 'net.serenity-bdd', name: 'serenity-junit', version: versions.serenity
testImplementation group: 'net.serenity-bdd', name: 'serenity-rest-assured', version: versions.serenity
testImplementation group: 'net.serenity-bdd', name: 'serenity-spring', version: versions.serenity
testImplementation group: 'com.github.hmcts', name: 'fortify-client', version: '1.3.0', classifier: 'all', {
testImplementation group: 'com.github.hmcts', name: 'fortify-client', version: '1.4.7', classifier: 'all', {
exclude group: 'commons-io', module: 'commons-io'
exclude group: 'org.apache.commons', module: 'commons-lang3'
}

testImplementation 'pl.pragmatists:JUnitParams:1.1.1'

testImplementation(group: 'org.springframework.cloud', name: 'spring-cloud-contract-wiremock', version: '3.1.6') {
testImplementation(group: 'org.springframework.cloud', name: 'spring-cloud-contract-wiremock', version: '3.1.10') {
exclude group: "com.github.tomakehurst", module: "wiremock-standalone"
}

Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12.1-all.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
6 changes: 4 additions & 2 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 @@ -84,7 +86,7 @@ done
# shellcheck disable=SC2034
APP_BASE_NAME=${0##*/}
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit

# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD=maximum
Expand Down
2 changes: 2 additions & 0 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
2 changes: 1 addition & 1 deletion infrastructure/state.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "~> 3.47.0"
version = "~> 3.117.0"
}
}
}

0 comments on commit 29e9379

Please sign in to comment.