From 485ac1a04c0eee672a3a2291665dfd3479771ed8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 21 Apr 2024 13:21:57 +0000 Subject: [PATCH] fix: bump the other-dependencies group with 7 updates Bumps the other-dependencies group with 7 updates: | Package | From | To | | --- | --- | --- | | [io.pivotal.spring.cloud:spring-cloud-services-dependencies](https://github.com/pivotal-cf/spring-cloud-services-starters) | `4.1.0` | `4.1.2` | | io.github.gradle-nexus.publish-plugin | `1.3.0` | `2.0.0` | | [org.jetbrains.kotlin.jvm](https://github.com/JetBrains/kotlin) | `1.9.22` | `1.9.23` | | [org.jetbrains.kotlin.plugin.serialization](https://github.com/JetBrains/kotlin) | `1.9.22` | `1.9.23` | | [org.postgresql:postgresql](https://github.com/pgjdbc/pgjdbc) | `42.7.1` | `42.7.3` | | com.fasterxml.jackson.datatype:jackson-datatype-jsr310 | `2.16.1` | `2.17.0` | | org.slf4j:slf4j-api | `2.0.11` | `2.0.13` | Updates `io.pivotal.spring.cloud:spring-cloud-services-dependencies` from 4.1.0 to 4.1.2 - [Release notes](https://github.com/pivotal-cf/spring-cloud-services-starters/releases) - [Commits](https://github.com/pivotal-cf/spring-cloud-services-starters/compare/v4.1.0...v4.1.2) Updates `io.github.gradle-nexus.publish-plugin` from 1.3.0 to 2.0.0 Updates `org.jetbrains.kotlin.jvm` from 1.9.22 to 1.9.23 - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/v1.9.23/ChangeLog.md) - [Commits](https://github.com/JetBrains/kotlin/compare/v1.9.22...v1.9.23) Updates `org.jetbrains.kotlin.plugin.serialization` from 1.9.22 to 1.9.23 - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/v1.9.23/ChangeLog.md) - [Commits](https://github.com/JetBrains/kotlin/compare/v1.9.22...v1.9.23) Updates `org.postgresql:postgresql` from 42.7.1 to 42.7.3 - [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.1...REL42.7.3) Updates `com.fasterxml.jackson.datatype:jackson-datatype-jsr310` from 2.16.1 to 2.17.0 Updates `org.slf4j:slf4j-api` from 2.0.11 to 2.0.13 --- updated-dependencies: - dependency-name: io.pivotal.spring.cloud:spring-cloud-services-dependencies dependency-type: direct:production update-type: version-update:semver-patch dependency-group: other-dependencies - dependency-name: io.github.gradle-nexus.publish-plugin dependency-type: direct:production update-type: version-update:semver-major dependency-group: other-dependencies - dependency-name: org.jetbrains.kotlin.jvm dependency-type: direct:production update-type: version-update:semver-patch dependency-group: other-dependencies - dependency-name: org.jetbrains.kotlin.plugin.serialization dependency-type: direct:production update-type: version-update:semver-patch dependency-group: other-dependencies - dependency-name: org.postgresql:postgresql dependency-type: direct:production update-type: version-update:semver-patch dependency-group: other-dependencies - dependency-name: com.fasterxml.jackson.datatype:jackson-datatype-jsr310 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: other-dependencies - dependency-name: org.slf4j:slf4j-api dependency-type: direct:production update-type: version-update:semver-patch dependency-group: other-dependencies ... Signed-off-by: dependabot[bot] --- build.gradle | 8 ++++---- dependencies.gradle | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/build.gradle b/build.gradle index e6bab81..375ba88 100644 --- a/build.gradle +++ b/build.gradle @@ -6,11 +6,11 @@ plugins { id 'java-library' id 'maven-publish' id 'signing' - id 'io.github.gradle-nexus.publish-plugin' version '1.3.0' + id 'io.github.gradle-nexus.publish-plugin' version '2.0.0' id 'com.palantir.git-version' version '3.0.0' id 'jacoco' - id 'org.jetbrains.kotlin.jvm' version '1.9.22' - id 'org.jetbrains.kotlin.plugin.serialization' version '1.9.22' + id 'org.jetbrains.kotlin.jvm' version '1.9.23' + id 'org.jetbrains.kotlin.plugin.serialization' version '1.9.23' } group = 'io.github.lsd-consulting' @@ -45,7 +45,7 @@ apply plugin: 'io.spring.dependency-management' dependencyManagement { imports { mavenBom 'org.springframework.cloud:spring-cloud-dependencies:2023.0.1' - mavenBom 'io.pivotal.spring.cloud:spring-cloud-services-dependencies:4.1.0' + mavenBom 'io.pivotal.spring.cloud:spring-cloud-services-dependencies:4.1.2' mavenBom SpringBootPlugin.BOM_COORDINATES } } diff --git a/dependencies.gradle b/dependencies.gradle index 9afa254..7049062 100644 --- a/dependencies.gradle +++ b/dependencies.gradle @@ -1,7 +1,7 @@ dependencies { // DB implementation 'com.zaxxer:HikariCP:5.1.0' - implementation 'org.postgresql:postgresql:42.7.1' + implementation 'org.postgresql:postgresql:42.7.3' // LSD api 'io.github.lsd-consulting:lsd-distributed-connector:2.0.4' @@ -11,6 +11,6 @@ dependencies { compileOnly 'org.springframework.boot:spring-boot-autoconfigure:3.2.5' // Other - implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.16.1' - implementation 'org.slf4j:slf4j-api:2.0.11' + implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.17.0' + implementation 'org.slf4j:slf4j-api:2.0.13' }