From e9edd32330414275c90650cf8655d638107731b0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 15 Jan 2025 14:23:03 +0000 Subject: [PATCH] Bump the gradle-dependencies group across 1 directory with 7 updates Bumps the gradle-dependencies group with 7 updates in the /backend directory: | Package | From | To | | --- | --- | --- | | [org.springframework.boot:spring-boot-starter-data-jpa](https://github.com/spring-projects/spring-boot) | `3.3.6` | `3.4.1` | | [org.springframework.boot:spring-boot-starter-web](https://github.com/spring-projects/spring-boot) | `3.3.6` | `3.4.1` | | [org.springframework.boot:spring-boot-configuration-processor](https://github.com/spring-projects/spring-boot) | `3.3.6` | `3.4.1` | | [org.springframework.boot:spring-boot-starter-test](https://github.com/spring-projects/spring-boot) | `3.3.6` | `3.4.1` | | [org.postgresql:postgresql](https://github.com/pgjdbc/pgjdbc) | `42.7.4` | `42.7.5` | | [org.springframework.boot](https://github.com/spring-projects/spring-boot) | `3.3.6` | `3.4.1` | | [io.spring.dependency-management](https://github.com/spring-gradle-plugins/dependency-management-plugin) | `1.1.6` | `1.1.7` | Updates `org.springframework.boot:spring-boot-starter-data-jpa` from 3.3.6 to 3.4.1 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v3.3.6...v3.4.1) Updates `org.springframework.boot:spring-boot-starter-web` from 3.3.6 to 3.4.1 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v3.3.6...v3.4.1) Updates `org.springframework.boot:spring-boot-configuration-processor` from 3.3.6 to 3.4.1 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v3.3.6...v3.4.1) Updates `org.springframework.boot:spring-boot-starter-test` from 3.3.6 to 3.4.1 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v3.3.6...v3.4.1) Updates `org.postgresql:postgresql` from 42.7.4 to 42.7.5 - [Release notes](https://github.com/pgjdbc/pgjdbc/releases) - [Changelog](https://github.com/pgjdbc/pgjdbc/blob/master/CHANGELOG.md) - [Commits](https://github.com/pgjdbc/pgjdbc/compare/REL42.7.4...REL42.7.5) Updates `org.springframework.boot` from 3.3.6 to 3.4.1 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v3.3.6...v3.4.1) Updates `io.spring.dependency-management` from 1.1.6 to 1.1.7 - [Release notes](https://github.com/spring-gradle-plugins/dependency-management-plugin/releases) - [Commits](https://github.com/spring-gradle-plugins/dependency-management-plugin/compare/v1.1.6...v1.1.7) --- updated-dependencies: - dependency-name: org.springframework.boot:spring-boot-starter-data-jpa dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle-dependencies - dependency-name: org.springframework.boot:spring-boot-starter-web dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle-dependencies - dependency-name: org.springframework.boot:spring-boot-configuration-processor dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle-dependencies - dependency-name: org.springframework.boot:spring-boot-starter-test dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle-dependencies - dependency-name: org.postgresql:postgresql dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gradle-dependencies - dependency-name: org.springframework.boot dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle-dependencies - dependency-name: io.spring.dependency-management dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gradle-dependencies ... Signed-off-by: dependabot[bot] --- backend/build.gradle | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/backend/build.gradle b/backend/build.gradle index 832acd3..ce1ff1b 100644 --- a/backend/build.gradle +++ b/backend/build.gradle @@ -1,6 +1,6 @@ plugins { - id 'org.springframework.boot' version '3.3.6' - id 'io.spring.dependency-management' version '1.1.6' + id 'org.springframework.boot' version '3.4.1' + id 'io.spring.dependency-management' version '1.1.7' id 'java' id 'org.hibernate.orm' } @@ -22,13 +22,13 @@ repositories { dependencies { // Spring Dependencies - implementation 'org.springframework.boot:spring-boot-starter-data-jpa:3.3.6' - implementation 'org.springframework.boot:spring-boot-starter-web:3.3.6' - annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor:3.3.6' - testImplementation 'org.springframework.boot:spring-boot-starter-test:3.3.6' + implementation 'org.springframework.boot:spring-boot-starter-data-jpa:3.4.1' + implementation 'org.springframework.boot:spring-boot-starter-web:3.4.1' + annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor:3.4.1' + testImplementation 'org.springframework.boot:spring-boot-starter-test:3.4.1' // Database Connection Dependency - runtimeOnly 'org.postgresql:postgresql:42.7.4' + runtimeOnly 'org.postgresql:postgresql:42.7.5' // Swagger implementation 'io.springfox:springfox-swagger2:3.0.0'