Skip to content

Commit 3bf62f7

Browse files
committed
Update dependencies
1 parent 4b19483 commit 3bf62f7

File tree

7 files changed

+21
-16
lines changed

7 files changed

+21
-16
lines changed

compose.override.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ services:
4949
- "8101:8080"
5050

5151
pgadmin:
52-
image: dpage/pgadmin4:8.9
52+
image: dpage/pgadmin4:8.12
5353
container_name: pgadmin
5454
restart: always
5555
# DO NOT USE SUCH A SETUP FOR PROD!

compose.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ services:
5858

5959
# DATABASES FOR MICROSERVICES
6060
book-db:
61-
image: postgres:16.3
61+
image: postgres:17.0
6262
container_name: book-db
6363
restart: always
6464
environment:
@@ -75,7 +75,7 @@ services:
7575
-c timezone=Europe/Moscow
7676
7777
user-db:
78-
image: postgres:16.3
78+
image: postgres:17.0
7979
container_name: user-db
8080
restart: always
8181
environment:
@@ -92,7 +92,7 @@ services:
9292
-c timezone=Europe/Moscow
9393
9494
notification-db:
95-
image: postgres:16.3
95+
image: postgres:17.0
9696
container_name: notification-db
9797
restart: always
9898
environment:
@@ -111,7 +111,7 @@ services:
111111
# INFRASTRUCTURE
112112
# One Kafka Connect instance is for the purposes of simplicity. Do your own research to set up a cluster
113113
kafka-connect:
114-
image: debezium/connect:2.7.0.Beta2
114+
image: debezium/connect:3.0.0.Final
115115
container_name: kafka-connect
116116
restart: always
117117
depends_on: [ kafka, schema-registry, book-db, user-db, notification-db ]
@@ -142,13 +142,13 @@ services:
142142
command: bash /usr/load-connectors.sh
143143

144144
schema-registry:
145-
image: apicurio/apicurio-registry-mem:2.6.0.Final
145+
image: apicurio/apicurio-registry-mem:2.6.4.Final
146146
container_name: schema-registry
147147
restart: always
148148

149149
# One Kafka instance is for the purposes of simplicity. Do your own research to set up a cluster
150150
kafka:
151-
image: bitnami/kafka:3.7.0
151+
image: bitnami/kafka:3.8.0
152152
container_name: kafka
153153
restart: always
154154
environment:

gradle.properties

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
org.gradle.parallel=true
22
kotlin.code.style=official
33
# plugins
4-
springBootVersion=3.3.1
5-
springDependencyManagementVersion=1.1.5
6-
openApiGeneratorVersion=7.6.0
7-
nativeBuildToolsVersion=0.10.2
8-
kotlinVersion=2.0.0
4+
springBootVersion=3.3.4
5+
springDependencyManagementVersion=1.1.6
6+
openApiGeneratorVersion=7.8.0
7+
nativeBuildToolsVersion=0.10.3
8+
kotlinVersion=2.0.20
99
# dependencies for `user-service`
10-
guavaVersion=33.2.1-jre
10+
guavaVersion=33.3.0-jre
1111
kotlinxHtmlVersion=0.11.0
1212
# dependencies for `common-model`
13-
springCoreVersion=6.1.10
13+
springCoreVersion=6.1.13
1414
# `webjars` dependencies for `notification-service`
1515
sockjsClientVersion=1.5.1
1616
stompWebsocketVersion=2.3.4

gradle/wrapper/gradle-wrapper.jar

130 Bytes
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
# See the License for the specific language governing permissions and
1616
# limitations under the License.
1717
#
18+
# SPDX-License-Identifier: Apache-2.0
19+
#
1820

1921
##############################################################################
2022
#
@@ -84,7 +86,8 @@ done
8486
# shellcheck disable=SC2034
8587
APP_BASE_NAME=${0##*/}
8688
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
87-
APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit
89+
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
90+
' "$PWD" ) || exit
8891

8992
# Use the maximum available, or set MAX_FD != -1 to use that value.
9093
MAX_FD=maximum

gradlew.bat

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
@rem See the License for the specific language governing permissions and
1414
@rem limitations under the License.
1515
@rem
16+
@rem SPDX-License-Identifier: Apache-2.0
17+
@rem
1618

1719
@if "%DEBUG%"=="" @echo off
1820
@rem ##########################################################################

0 commit comments

Comments
 (0)