Skip to content

Commit 94a16bf

Browse files
committed
Update dependencies
1 parent 90ec3c0 commit 94a16bf

File tree

7 files changed

+15
-15
lines changed

7 files changed

+15
-15
lines changed

compose.override.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ services:
5959
- "8101:8080"
6060

6161
pgadmin:
62-
image: dpage/pgadmin4:8.14
62+
image: dpage/pgadmin4:9.1.0
6363
container_name: pgadmin
6464
restart: always
6565
# DO NOT USE SUCH A SETUP FOR PROD!

compose.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ services:
6565

6666
# DATABASES FOR MICROSERVICES
6767
book-db:
68-
image: postgres:17.2
68+
image: postgres:17.4
6969
container_name: book-db
7070
restart: always
7171
environment:
@@ -82,7 +82,7 @@ services:
8282
-c timezone=Europe/Moscow
8383
8484
user-db:
85-
image: postgres:17.2
85+
image: postgres:17.4
8686
container_name: user-db
8787
restart: always
8888
environment:
@@ -99,7 +99,7 @@ services:
9999
-c timezone=Europe/Moscow
100100
101101
notification-db:
102-
image: postgres:17.2
102+
image: postgres:17.4
103103
container_name: notification-db
104104
restart: always
105105
environment:

gradle.properties

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
org.gradle.parallel=true
22
kotlin.code.style=official
33
# plugins
4-
springBootVersion=3.4.1
4+
springBootVersion=3.4.3
55
springDependencyManagementVersion=1.1.7
6-
openApiGeneratorVersion=7.10.0
7-
nativeBuildToolsVersion=0.10.4
8-
kotlinVersion=2.1.0
6+
openApiGeneratorVersion=7.12.0
7+
nativeBuildToolsVersion=0.10.5
8+
kotlinVersion=2.1.10
99
# dependencies for `user-service`
1010
guavaVersion=33.4.0-jre
11-
kotlinxHtmlVersion=0.11.0
11+
kotlinxHtmlVersion=0.12.0
1212
# dependencies for `common-model`
13-
springCoreVersion=6.2.1
13+
springCoreVersion=6.2.3
1414
# TODO: remove after https://github.com/oracle/graalvm-reachability-metadata/issues/424
15-
flywayVersion=11.1.0
15+
flywayVersion=11.3.4
1616
# `webjars` dependencies for `notification-service`
1717
sockjsClientVersion=1.5.1
1818
stompWebsocketVersion=2.3.4

gradle/wrapper/gradle-wrapper.jar

122 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.12-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ fi
205205
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
206206

207207
# Collect all arguments for the java command:
208-
# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
208+
# * DEFAULT_JVM_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
209209
# and any embedded shellness will be escaped.
210210
# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
211211
# treated as '${Hostname}' itself on the command line.

misc/caddy/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
FROM caddy:2.8.4-builder AS builder
1+
FROM caddy:2.9.1-builder AS builder
22

33
RUN xcaddy build --with github.com/mholt/caddy-ratelimit
44

5-
FROM caddy:2.8.4
5+
FROM caddy:2.9.1
66

77
COPY --from=builder /usr/bin/caddy /usr/bin/caddy

0 commit comments

Comments
 (0)