From 0f86af35e24586b2149c84024cfd120efb8c8805 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 23 May 2024 14:28:59 +0000 Subject: [PATCH] Bump the minor-and-patch-dependencies group with 5 updates Bumps the minor-and-patch-dependencies group with 5 updates: | Package | From | To | | --- | --- | --- | | [org.springframework:spring-context](https://github.com/spring-projects/spring-framework) | `6.1.7` | `6.1.8` | | [org.springframework:spring-test](https://github.com/spring-projects/spring-framework) | `6.1.7` | `6.1.8` | | [org.springframework.boot:spring-boot-starter-web](https://github.com/spring-projects/spring-boot) | `3.2.5` | `3.3.0` | | [org.springframework.boot:spring-boot-starter-validation](https://github.com/spring-projects/spring-boot) | `3.2.5` | `3.3.0` | | [org.springframework.boot:spring-boot-starter-test](https://github.com/spring-projects/spring-boot) | `3.2.5` | `3.3.0` | Updates `org.springframework:spring-context` from 6.1.7 to 6.1.8 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v6.1.7...v6.1.8) Updates `org.springframework:spring-test` from 6.1.7 to 6.1.8 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v6.1.7...v6.1.8) Updates `org.springframework.boot:spring-boot-starter-web` from 3.2.5 to 3.3.0 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v3.2.5...v3.3.0) Updates `org.springframework.boot:spring-boot-starter-validation` from 3.2.5 to 3.3.0 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v3.2.5...v3.3.0) Updates `org.springframework.boot:spring-boot-starter-test` from 3.2.5 to 3.3.0 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v3.2.5...v3.3.0) --- updated-dependencies: - dependency-name: org.springframework:spring-context dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-and-patch-dependencies - dependency-name: org.springframework:spring-test dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-and-patch-dependencies - dependency-name: org.springframework.boot:spring-boot-starter-web dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-and-patch-dependencies - dependency-name: org.springframework.boot:spring-boot-starter-validation dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-and-patch-dependencies - dependency-name: org.springframework.boot:spring-boot-starter-test dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-and-patch-dependencies ... Signed-off-by: dependabot[bot] --- junit5-migration/build.gradle | 4 ++-- junit5-nested-tests/build.gradle | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/junit5-migration/build.gradle b/junit5-migration/build.gradle index d573aab..8475c01 100644 --- a/junit5-migration/build.gradle +++ b/junit5-migration/build.gradle @@ -25,8 +25,8 @@ dependencies { testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-migrationsupport', version: '5.10.2' testRuntimeOnly group: 'org.junit.platform', name: 'junit-platform-launcher' testRuntimeOnly group: 'org.junit.vintage', name: 'junit-vintage-engine', version: '5.10.2' - implementation group: 'org.springframework', name: 'spring-context', version: '6.1.7' - testImplementation group: 'org.springframework', name: 'spring-test', version: '6.1.7' + implementation group: 'org.springframework', name: 'spring-context', version: '6.1.8' + testImplementation group: 'org.springframework', name: 'spring-test', version: '6.1.8' testImplementation group: 'org.mockito', name: 'mockito-core', version: '5.12.0' testImplementation group: 'org.mockito', name: 'mockito-junit-jupiter', version: '5.12.0' testImplementation group: 'org.eclipse.jetty', name: 'jetty-server', version: '12.0.9' diff --git a/junit5-nested-tests/build.gradle b/junit5-nested-tests/build.gradle index c9f8a24..1d92103 100644 --- a/junit5-nested-tests/build.gradle +++ b/junit5-nested-tests/build.gradle @@ -22,9 +22,9 @@ repositories { } dependencies { - implementation group: 'org.springframework.boot', name: 'spring-boot-starter-web', version: '3.2.5' - implementation group: 'org.springframework.boot', name: 'spring-boot-starter-validation', version: '3.2.5' + implementation group: 'org.springframework.boot', name: 'spring-boot-starter-web', version: '3.3.0' + implementation group: 'org.springframework.boot', name: 'spring-boot-starter-validation', version: '3.3.0' testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter', version: '5.10.2' testRuntimeOnly group: 'org.junit.platform', name: 'junit-platform-launcher' - testImplementation group: 'org.springframework.boot', name: 'spring-boot-starter-test', version: '3.2.5' + testImplementation group: 'org.springframework.boot', name: 'spring-boot-starter-test', version: '3.3.0' }