Skip to content

Commit

Permalink
Merge pull request #1363 from CDCgov/renovate/all-minor
Browse files Browse the repository at this point in the history
Update minor dependencies
  • Loading branch information
halprin authored Sep 27, 2024
2 parents c7f1b64 + ff228fd commit ee5fede
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 15 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
plugins {
id 'groovy'
id 'application'
id 'com.github.johnrengelman.shadow' version '8.0.0'
id 'com.github.johnrengelman.shadow' version '8.1.1'
}

java {
Expand All @@ -28,7 +28,7 @@ dependencies {
testImplementation 'org.apache.groovy:groovy:4.0.23'
testImplementation 'org.spockframework:spock-core:2.3-groovy-4.0'
testImplementation 'com.openpojo:openpojo:0.9.1'
testImplementation 'nl.jqno.equalsverifier:equalsverifier:3.16.2'
testImplementation 'nl.jqno.equalsverifier:equalsverifier:3.17'
}

jacocoTestCoverageVerification {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,11 @@ public static RequestSessionTokenUsecase getInstance() {
private RequestSessionTokenUsecase() {}

public String getToken(AuthRequest request)
throws InvalidTokenException, IllegalArgumentException, TokenGenerationException,
SecretRetrievalException, UnknownOrganizationException {
throws InvalidTokenException,
IllegalArgumentException,
TokenGenerationException,
SecretRetrievalException,
UnknownOrganizationException {

logger.logInfo("Validating that organization {} exists", request.scope());
var organization =
Expand Down
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ plugins {
id 'java'
id 'jacoco'
id 'jacoco-report-aggregation'
id 'com.diffplug.spotless' version '6.11.0'
id 'com.github.johnrengelman.shadow' version '8.0.0'
id 'org.cyclonedx.bom' version '1.7.4'
id 'org.sonarqube' version '5.0.0.4638'
id 'com.diffplug.spotless' version '6.25.0'
id 'com.github.johnrengelman.shadow' version '8.1.1'
id 'org.cyclonedx.bom' version '1.10.0'
id 'org.sonarqube' version '5.1.0.4882'
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion e2e/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ dependencies {
implementation 'org.apache.httpcomponents.client5:httpclient5-fluent:5.4'

//jackson
implementation 'com.fasterxml.jackson.core:jackson-core:2.17.2'
implementation 'com.fasterxml.jackson.core:jackson-core:2.18.0'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.17.2'

//fhir
Expand Down
2 changes: 1 addition & 1 deletion etor/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ dependencies {
testImplementation 'org.apache.groovy:groovy:4.0.23'
testImplementation 'org.spockframework:spock-core:2.3-groovy-4.0'
testImplementation 'com.openpojo:openpojo:0.9.1'
testImplementation 'nl.jqno.equalsverifier:equalsverifier:3.16.2'
testImplementation 'nl.jqno.equalsverifier:equalsverifier:3.17'
}

jacocoTestCoverageVerification {
Expand Down
6 changes: 3 additions & 3 deletions shared/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ dependencies {
implementation 'net.logstash.logback:logstash-logback-encoder:8.0'

//jackson
implementation 'com.fasterxml.jackson.core:jackson-core:2.17.2'
implementation 'com.fasterxml.jackson.core:jackson-core:2.18.0'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.17.2'
implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.17.2'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.17.2'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.18.0'

//fhir
api 'ca.uhn.hapi.fhir:hapi-fhir-base:7.4.2'
Expand All @@ -51,7 +51,7 @@ dependencies {
testFixturesImplementation 'org.apache.groovy:groovy:4.0.23'
testImplementation 'org.spockframework:spock-core:2.3-groovy-4.0'
testFixturesImplementation 'com.openpojo:openpojo:0.9.1'
testFixturesImplementation 'nl.jqno.equalsverifier:equalsverifier:3.16.2'
testFixturesImplementation 'nl.jqno.equalsverifier:equalsverifier:3.17'

// dotenv-java
implementation 'io.github.cdimascio:dotenv-java:3.0.2'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -849,6 +849,5 @@ class HapiHelperTest extends Specification {

then:
ext.getValue() == null

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ class KeyCacheTest extends Specification {
then:
keys.size() == threadsNum // one key per thread
keys.values().toSet().size() == 1 // all entries have same value, threads had to wait on the lock

}

def "keyCache removal works"() {
Expand Down

0 comments on commit ee5fede

Please sign in to comment.