From 28f9f1c070ebb4af9fb1827eeded0ee62c667714 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 May 2024 11:20:56 +0100 Subject: [PATCH] Bump the dependencies group with 2 updates (#55) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Bump the dependencies group with 2 updates Bumps the dependencies group with 2 updates: [org.assertj:assertj-core](https://github.com/assertj/assertj) and [org.springframework.boot](https://github.com/spring-projects/spring-boot). Updates `org.assertj:assertj-core` from 3.25.3 to 3.26.0 - [Release notes](https://github.com/assertj/assertj/releases) - [Commits](https://github.com/assertj/assertj/compare/assertj-build-3.25.3...assertj-build-3.26.0) Updates `org.springframework.boot` 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.assertj:assertj-core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: org.springframework.boot dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies ... Signed-off-by: dependabot[bot] * Update README.md --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Roger ViƱas Alcon --- README.md | 2 +- build.gradle.kts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 866b860..f7272ae 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ [![CI](https://github.com/rogervinas/spring-immutable-configuration-properties/actions/workflows/gradle.yml/badge.svg?branch=master)](https://github.com/rogervinas/spring-immutable-configuration-properties/actions/workflows/gradle.yml) ![Java](https://img.shields.io/badge/Java-21-blue?labelColor=black) ![Kotlin](https://img.shields.io/badge/Kotlin-2.0.0-blue?labelColor=black) -![SpringBoot](https://img.shields.io/badge/SpringBoot-3.2.5-blue?labelColor=black) +![SpringBoot](https://img.shields.io/badge/SpringBoot-3.3.0-blue?labelColor=black) # Spring Immutable @ConfigurationProperties diff --git a/build.gradle.kts b/build.gradle.kts index 23213d6..2d92bab 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -3,7 +3,7 @@ import org.gradle.api.tasks.testing.logging.TestLogEvent.* import org.jetbrains.kotlin.gradle.tasks.KotlinCompile plugins { - id("org.springframework.boot") version "3.2.5" + id("org.springframework.boot") version "3.3.0" id("io.spring.dependency-management") version "1.1.5" kotlin("jvm") version "2.0.0" kotlin("plugin.spring") version "2.0.0" @@ -21,7 +21,7 @@ dependencies { implementation("org.springframework.boot:spring-boot-starter") implementation("org.jetbrains.kotlin:kotlin-reflect") testImplementation("org.springframework.boot:spring-boot-starter-test") - testImplementation("org.assertj:assertj-core:3.25.3") + testImplementation("org.assertj:assertj-core:3.26.0") } tasks.withType {