From 97584a85e1871f5746c48c1eb83b719ffe53798c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Mar 2025 22:46:32 +0000 Subject: [PATCH] build(deps): bump the gradle-updates group with 3 updates Bumps the gradle-updates group with 3 updates: io.swagger.core.v3:swagger-annotations, [org.testcontainers:testcontainers-bom](https://github.com/testcontainers/testcontainers-java) and [org.hibernate:hibernate-core](https://github.com/hibernate/hibernate-orm). Updates `io.swagger.core.v3:swagger-annotations` from 2.2.28 to 2.2.29 Updates `org.testcontainers:testcontainers-bom` from 1.20.5 to 1.20.6 - [Release notes](https://github.com/testcontainers/testcontainers-java/releases) - [Changelog](https://github.com/testcontainers/testcontainers-java/blob/main/CHANGELOG.md) - [Commits](https://github.com/testcontainers/testcontainers-java/compare/1.20.5...1.20.6) Updates `org.hibernate:hibernate-core` from 6.6.9.Final to 6.6.10.Final - [Release notes](https://github.com/hibernate/hibernate-orm/releases) - [Changelog](https://github.com/hibernate/hibernate-orm/blob/6.6.10/changelog.txt) - [Commits](https://github.com/hibernate/hibernate-orm/compare/6.6.9...6.6.10) --- updated-dependencies: - dependency-name: io.swagger.core.v3:swagger-annotations dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gradle-updates - dependency-name: org.testcontainers:testcontainers-bom dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gradle-updates - dependency-name: org.hibernate:hibernate-core dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gradle-updates ... Signed-off-by: dependabot[bot] --- data-api/build.gradle | 2 +- data-service/build.gradle | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/data-api/build.gradle b/data-api/build.gradle index c2d2339..5e83949 100644 --- a/data-api/build.gradle +++ b/data-api/build.gradle @@ -6,7 +6,7 @@ apply plugin: 'uk.gov.laa.ccms.springboot.laa-ccms-spring-boot-gradle-plugin' dependencies { - implementation 'io.swagger.core.v3:swagger-annotations:2.2.28' + implementation 'io.swagger.core.v3:swagger-annotations:2.2.29' implementation 'org.springframework.boot:spring-boot-starter-web' implementation 'org.springframework.data:spring-data-commons' implementation 'com.google.code.findbugs:jsr305:3.0.2' diff --git a/data-service/build.gradle b/data-service/build.gradle index 98b2206..a863f27 100644 --- a/data-service/build.gradle +++ b/data-service/build.gradle @@ -27,11 +27,11 @@ dependencies { testImplementation 'org.junit.jupiter:junit-jupiter:5.12.0' //Used for integration tests - testImplementation platform('org.testcontainers:testcontainers-bom:1.20.5') + testImplementation platform('org.testcontainers:testcontainers-bom:1.20.6') testImplementation 'org.testcontainers:testcontainers' testImplementation 'org.testcontainers:junit-jupiter' testImplementation 'org.testcontainers:oracle-free' - testImplementation 'org.hibernate:hibernate-core:6.6.9.Final' + testImplementation 'org.hibernate:hibernate-core:6.6.10.Final' testImplementation 'com.h2database:h2:2.3.232' }