From 31153193ac88ac27736eb0c1b34f51fc86f964c5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 28 Jun 2026 04:56:25 +0000 Subject: [PATCH] build(deps): bump the major group with 2 updates Bumps the major group with 2 updates: [org.junit:junit-bom](https://github.com/junit-team/junit-framework) and [org.springframework.boot:spring-boot-dependencies](https://github.com/spring-projects/spring-boot). Updates `org.junit:junit-bom` from 5.11.4 to 6.1.0 - [Release notes](https://github.com/junit-team/junit-framework/releases) - [Commits](https://github.com/junit-team/junit-framework/compare/r5.11.4...r6.1.0) Updates `org.springframework.boot:spring-boot-dependencies` from 3.3.5 to 4.1.0 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v3.3.5...v4.1.0) --- updated-dependencies: - dependency-name: org.junit:junit-bom dependency-version: 6.1.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: major - dependency-name: org.springframework.boot:spring-boot-dependencies dependency-version: 4.1.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: major ... Signed-off-by: dependabot[bot] --- python-embed-build-common/build.gradle | 2 +- python-embed-gradle-plugin/build.gradle | 2 +- python-embed-maven-plugin/build.gradle | 2 +- python-embed-runtime/build.gradle | 2 +- python-embed-spring-boot-starter/build.gradle | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/python-embed-build-common/build.gradle b/python-embed-build-common/build.gradle index 4fcead6..577b068 100644 --- a/python-embed-build-common/build.gradle +++ b/python-embed-build-common/build.gradle @@ -47,7 +47,7 @@ repositories { } dependencies { - testImplementation platform('org.junit:junit-bom:5.11.4') + testImplementation platform('org.junit:junit-bom:6.1.0') testImplementation 'org.junit.jupiter:junit-jupiter' testRuntimeOnly 'org.junit.platform:junit-platform-launcher' } diff --git a/python-embed-gradle-plugin/build.gradle b/python-embed-gradle-plugin/build.gradle index fbf936a..81843ea 100644 --- a/python-embed-gradle-plugin/build.gradle +++ b/python-embed-gradle-plugin/build.gradle @@ -41,7 +41,7 @@ dependencies { implementation gradleApi() implementation "io.github.howtis:python-embed-build-common:${project.findProperty('releaseVersion') ?: '1.0.2'}" - testImplementation platform('org.junit:junit-bom:5.11.4') + testImplementation platform('org.junit:junit-bom:6.1.0') testImplementation 'org.junit.jupiter:junit-jupiter' testRuntimeOnly 'org.junit.platform:junit-platform-launcher' } diff --git a/python-embed-maven-plugin/build.gradle b/python-embed-maven-plugin/build.gradle index 8cfd51e..006b1db 100644 --- a/python-embed-maven-plugin/build.gradle +++ b/python-embed-maven-plugin/build.gradle @@ -52,7 +52,7 @@ dependencies { implementation 'org.apache.maven:maven-core:3.9.9' implementation 'org.apache.maven.plugin-tools:maven-plugin-annotations:3.15.1' - testImplementation platform('org.junit:junit-bom:5.11.4') + testImplementation platform('org.junit:junit-bom:6.1.0') testImplementation 'org.junit.jupiter:junit-jupiter' testRuntimeOnly 'org.junit.platform:junit-platform-launcher' testImplementation 'org.apache.maven:maven-compat:3.9.9' diff --git a/python-embed-runtime/build.gradle b/python-embed-runtime/build.gradle index e407300..dd918d7 100644 --- a/python-embed-runtime/build.gradle +++ b/python-embed-runtime/build.gradle @@ -8,7 +8,7 @@ dependencies { implementation 'org.msgpack:msgpack-core:0.9.8' implementation 'org.slf4j:slf4j-api:2.0.16' - testImplementation platform('org.junit:junit-bom:5.11.4') + testImplementation platform('org.junit:junit-bom:6.1.0') testImplementation 'org.junit.jupiter:junit-jupiter' testRuntimeOnly 'org.junit.platform:junit-platform-launcher' testImplementation 'org.slf4j:slf4j-simple:2.0.16' diff --git a/python-embed-spring-boot-starter/build.gradle b/python-embed-spring-boot-starter/build.gradle index 7535c4a..ed70b64 100644 --- a/python-embed-spring-boot-starter/build.gradle +++ b/python-embed-spring-boot-starter/build.gradle @@ -6,7 +6,7 @@ version = project.findProperty('releaseVersion') ?: '1.0.2' dependencies { implementation project(':python-embed-runtime') - def springBootVersion = '3.3.5' + def springBootVersion = '4.1.0' implementation platform("org.springframework.boot:spring-boot-dependencies:${springBootVersion}") annotationProcessor platform("org.springframework.boot:spring-boot-dependencies:${springBootVersion}") compileOnly platform("org.springframework.boot:spring-boot-dependencies:${springBootVersion}")