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 Oct 11, 2023
1 parent 7b76b99 commit 09ebabc
Show file tree
Hide file tree
Showing 10 changed files with 456 additions and 344 deletions.
66 changes: 33 additions & 33 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ plugins {
id 'application'
id 'idea'
id 'jacoco'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'org.springframework.boot' version '2.4.9'
id 'com.github.ben-manes.versions' version '0.38.0'
id 'org.sonarqube' version '3.1.1'
id 'uk.gov.hmcts.java' version '0.12.43'
id 'com.github.spacialcircumstances.gradle-cucumber-reporting' version '0.1.23'
id 'io.spring.dependency-management' version '1.1.3'
id 'org.springframework.boot' version '2.7.16'
id 'com.github.ben-manes.versions' version '0.49.0'
id 'org.sonarqube' version '3.5.0.2730'
id 'uk.gov.hmcts.java' version '0.12.45'
id 'com.github.spacialcircumstances.gradle-cucumber-reporting' version '0.1.25'
}

group = 'uk.gov.hmcts.reform'
Expand All @@ -34,7 +34,7 @@ configurations.configureEach {
}

jacoco {
toolVersion = "0.8.8"
toolVersion = "0.8.10"
}


Expand Down Expand Up @@ -213,17 +213,17 @@ sonarqube {
}

def versions = [
junit : '5.7.1',
junitPlatform : '1.7.1',
lombok : '1.18.28',
junit : '5.10.0',
junitPlatform : '1.10.0',
lombok : '1.18.30',
mapstruct : '1.4.2.Final',
reformLogging : '5.1.9',
springBoot : springBoot.class.package.implementationVersion,
springCloud : '2020.0.1',
springfoxSwagger: '3.0.0',
testcontainers : '1.15.2',
jetty : '9.4.51.v20230217',
netty : '4.1.86.Final'
jetty : '9.4.53.v20231009',
netty : '4.1.100.Final'
]

ext['spring-framework.version'] = '5.3.27'
Expand Down Expand Up @@ -251,23 +251,23 @@ dependencyCheck {

dependencyManagement {
dependencies {
dependency group: 'org.bouncycastle', name: 'bcpkix-jdk15on', version: '1.68'
dependency group: 'org.bouncycastle', name: 'bcpkix-jdk15on', version: '1.70'
// CVE-2018-10237 - Unbounded memory allocation
dependencySet(group: 'com.google.guava', version: '30.1.1-jre') {
entry 'guava'
}
// Remove once BEFTA rest-assured is updated
dependencySet(group: 'io.rest-assured', version: '4.3.0') {
dependencySet(group: 'io.rest-assured', version: '4.5.1') {
entry 'json-path'
entry 'xml-path'
}
dependencySet(group: 'org.apache.tomcat.embed', version: '9.0.73') {
dependencySet(group: 'org.apache.tomcat.embed', version: '9.0.81') {
entry 'tomcat-embed-core'
entry 'tomcat-embed-el'
entry 'tomcat-embed-websocket'
}
//CVE-2021-22044
dependencySet(group: 'org.springframework.cloud', version: '3.0.5') {
dependencySet(group: 'org.springframework.cloud', version: '3.1.8') {
entry 'spring-cloud-openfeign-core'
entry 'spring-cloud-starter-openfeign'
entry 'spring-cloud-starter-contract-stub-runner'
Expand Down Expand Up @@ -309,31 +309,31 @@ dependencies {
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-cache'
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-validation'
implementation group: 'org.springframework.cloud', name: 'spring-cloud-starter-openfeign'
implementation group: 'io.github.openfeign', name: 'feign-okhttp', version: '12.1'
implementation group: 'com.squareup.okhttp3', name: 'okhttp', version: '4.10.0'
implementation group: 'org.jetbrains.kotlin', name: 'kotlin-stdlib', version: '1.7.21'
implementation group: 'org.jetbrains.kotlin', name: 'kotlin-stdlib-common', version: '1.7.21'
implementation group: 'org.jetbrains.kotlin', name: 'kotlin-stdlib-jdk7', version: '1.7.21'
implementation group: 'org.jetbrains.kotlin', name: 'kotlin-stdlib-jdk8', version: '1.7.21'
implementation group: 'io.github.openfeign', name: 'feign-okhttp', version: '12.5'
implementation group: 'com.squareup.okhttp3', name: 'okhttp', version: '4.11.0'
implementation group: 'org.jetbrains.kotlin', name: 'kotlin-stdlib', version: '1.9.10'
implementation group: 'org.jetbrains.kotlin', name: 'kotlin-stdlib-common', version: '1.9.10'
implementation group: 'org.jetbrains.kotlin', name: 'kotlin-stdlib-jdk7', version: '1.9.10'
implementation group: 'org.jetbrains.kotlin', name: 'kotlin-stdlib-jdk8', version: '1.9.10'
implementation group: 'io.springfox', name: 'springfox-swagger2', version: versions.springfoxSwagger

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: 'javax.inject', name: 'javax.inject', version: '1'
implementation group: 'com.azure', name: 'azure-messaging-servicebus', version: '7.8.0'
implementation group: 'com.azure', name: 'azure-core', version: '1.28.0'
implementation group: 'com.azure', name: 'azure-messaging-servicebus', version: '7.14.4'
implementation group: 'com.azure', name: 'azure-core', version: '1.44.0'

implementation group: 'net.minidev', name: 'json-smart', version: '2.4.7'
implementation group: 'net.minidev', name: 'json-smart', version: '2.5.0'

// Explicitly specify version of jakarta.el to be used to resolve CVE-2021-28170
implementation group: 'org.glassfish', name: 'jakarta.el', version: '4.0.1'
implementation group: 'org.glassfish', name: 'jakarta.el', version: '4.0.2'
// CVE-2021-42550
implementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.10'
implementation group: 'ch.qos.logback', name: 'logback-core', version: '1.2.10'
implementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.4.11'
implementation group: 'ch.qos.logback', name: 'logback-core', version: '1.4.11'

implementation group: 'commons-fileupload', name: 'commons-fileupload', version: '1.5'
implementation group: 'commons-io', name: 'commons-io', version: '2.8.0'
implementation group: 'commons-io', name: 'commons-io', version: '2.14.0'

implementation group: 'org.projectlombok', name: 'lombok', version: versions.lombok
annotationProcessor group: 'org.projectlombok', name: 'lombok', version: versions.lombok
Expand Down Expand Up @@ -375,16 +375,16 @@ dependencies {
implementation group: 'io.netty', name: 'netty-transport-native-epoll', version: versions.netty
implementation group: 'io.netty', name: 'netty-transport-native-kqueue', version: versions.netty
implementation group: 'io.netty', name: 'netty-transport-native-unix-common', version: versions.netty
implementation group: 'io.projectreactor.netty', name: 'reactor-netty-core', version: '1.1.0'
implementation group: 'io.projectreactor.netty', name: 'reactor-netty-http', version: '1.1.0'
implementation group: 'io.projectreactor.netty', name: 'reactor-netty-core', version: '1.1.12'
implementation group: 'io.projectreactor.netty', name: 'reactor-netty-http', version: '1.1.12'

testImplementation libraries.junit5
testImplementation group: 'org.springframework.boot', name: 'spring-boot-starter-test', {
exclude group: 'junit', module: 'junit'
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}

testImplementation group: 'org.mockito', name: 'mockito-inline', version: '3.11.1'
testImplementation group: 'org.mockito', name: 'mockito-inline', version: '3.12.4'
testImplementation group: 'org.powermock', name: 'powermock-api-mockito2', version: '2.0.9'
testImplementation group: 'org.powermock', name: 'powermock-module-junit4', version: '2.0.9'

Expand All @@ -398,7 +398,7 @@ dependencies {
functionalTestImplementation group: 'com.github.hmcts', name: 'befta-fw', version: '8.7.11'
functionalTestImplementation libraries.junit5

testImplementation 'com.github.hmcts:fortify-client:1.2.0:all'
testImplementation 'com.github.hmcts:fortify-client:1.3.0:all'
}

mainClassName = 'uk.gov.hmcts.reform.hmc.Application'
Expand Down
4 changes: 2 additions & 2 deletions charts/hmc-hmi-outbound-adapter/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 hmc-hmi-outbound-adapter App
name: hmc-hmi-outbound-adapter
home: https://github.com/hmcts/hmc-hmi-outbound-adapter
version: 0.1.11
version: 0.1.12
maintainers:
- name: HMCTS CCD Dev Team
dependencies:
- name: java
version: 4.0.13
version: 4.2.0
repository: 'https://hmctspublic.azurecr.io/helm/v1/repo/'
- name: servicebus
version: 1.0.4
Expand Down
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,5 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.3-all.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading

0 comments on commit 09ebabc

Please sign in to comment.