Skip to content

Commit 381e97c

Browse files
committed
update deps
Signed-off-by: Kirill Mokevnin <[email protected]>
1 parent 593a523 commit 381e97c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+428
-610
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:20.6.1 AS frontend
1+
FROM node:24.7 AS frontend
22

33
WORKDIR /frontend
44

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
setup:
22
npm install
3-
./gradlew wrapper --gradle-version 8.14.1
3+
./gradlew wrapper --gradle-version 9.0.0
44
./gradlew build
55

66
frontend:
@@ -31,7 +31,7 @@ install:
3131
# ./build/install/app/bin/app
3232

3333
lint:
34-
./gradlew checkstyleMain checkstyleTest
34+
./gradlew spotlessApply
3535

3636
test:
3737
./gradlew test

build.gradle.kts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import org.gradle.api.tasks.testing.logging.TestLogEvent
44
plugins {
55
application
66
jacoco
7-
checkstyle
87
alias(libs.plugins.lombok)
98
alias(libs.plugins.versions)
109
alias(libs.plugins.spotless)
@@ -86,7 +85,7 @@ spotless {
8685
removeUnusedImports()
8786
eclipse().sortMembersEnabled(true)
8887
formatAnnotations()
89-
indentWithSpaces(4)
88+
leadingTabsToSpaces(4)
9089
}
9190
}
9291

docker/postgresql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: '3'
22
services:
33
demo-application-db-postgresql:
4-
image: postgres:13.3
4+
image: postgres:17.6
55
environment:
66
- POSTGRES_DB=blog
77
- POSTGRES_USER=developer

frontend/package.json

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -12,24 +12,24 @@
1212
"preview": "vite preview"
1313
},
1414
"dependencies": {
15-
"@types/react": "^18.3.12",
16-
"@types/react-dom": "^18.3.1",
17-
"@typescript-eslint/eslint-plugin": "^8.15.0",
18-
"@typescript-eslint/parser": "^8.15.0",
19-
"@vitejs/plugin-react": "^4.3.3",
20-
"axios": "^1.7.7",
21-
"npm-check-updates": "^17.1.11",
22-
"ra-data-json-server": "^5.3.4",
23-
"react": "^18.3.1",
24-
"react-admin": "^5.3.4",
25-
"react-dom": "^18.3.1",
26-
"typescript": "^5.6.3",
15+
"@types/react": "^19.1.12",
16+
"@types/react-dom": "^19.1.9",
17+
"@typescript-eslint/eslint-plugin": "^8.43.0",
18+
"@typescript-eslint/parser": "^8.43.0",
19+
"@vitejs/plugin-react": "^5.0.2",
20+
"axios": "^1.11.0",
21+
"npm-check-updates": "^18.1.0",
22+
"ra-data-json-server": "^5.11.1",
23+
"react": "^19.1.1",
24+
"react-admin": "^5.11.1",
25+
"react-dom": "^19.1.1",
26+
"typescript": "^5.9.2",
2727
"url": "^0.11.4",
28-
"vite": "^5.4.11"
28+
"vite": "^7.1.5"
2929
},
3030
"devDependencies": {
31-
"eslint": "^9.15.0",
32-
"eslint-plugin-react-hooks": "^5.0.0",
33-
"eslint-plugin-react-refresh": "^0.4.14"
31+
"eslint": "^9.35.0",
32+
"eslint-plugin-react-hooks": "^5.2.0",
33+
"eslint-plugin-react-refresh": "^0.4.20"
3434
}
3535
}

frontend/tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"compilerOptions": {
3-
"target": "ES2020",
3+
"target": "ES2022",
44
"useDefineForClassFields": true,
5-
"lib": ["ES2020", "DOM", "DOM.Iterable"],
5+
"lib": ["ES2022", "DOM", "DOM.Iterable"],
66
"module": "ESNext",
77
"skipLibCheck": true,
88

gradle/libs.versions.toml

Lines changed: 13 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -6,34 +6,30 @@ spring-boot = { id = "org.springframework.boot", version.ref = "spring-boot-vers
66
spring-dependency-management = { id = "io.spring.dependency-management", version.ref = "spring-dependency-version" }
77
lombok = { id = "io.freefair.lombok", version.ref = "lombok-plugin" }
88
versions = { id = "com.github.ben-manes.versions", version.ref = "versions-plugin" }
9-
shadow = { id = "com.github.johnrengelman.shadow", version.ref = "shadow-plugin" }
9+
shadow = { id = "com.gradleup.shadow", version.ref = "shadow-plugin" }
1010
sonarqube = { id = "org.sonarqube", version.ref = "sonarqube-plugin" }
1111
spotless = { id = "com.diffplug.spotless", version.ref = "spotless-plugin" }
1212

1313
[versions]
1414

15-
spring-boot-version = "3.5.0"
16-
spring-security-test-version = "6.5.0"
15+
spring-boot-version = "3.5.5"
16+
spring-security-test-version = "6.5.3"
1717
spring-dependency-version = "1.1.7"
18-
lombok-plugin = "8.13.1"
18+
lombok-plugin = "8.14.2"
1919
versions-plugin = "0.52.0"
20-
shadow-plugin = "8.1.1"
21-
sonarqube-plugin = "6.2.0.5505"
22-
spotless-plugin = "7.0.3"
20+
shadow-plugin = "9.1.0"
21+
sonarqube-plugin = "6.3.1.5724"
22+
spotless-plugin = "7.2.1"
2323

24-
jackson-databind-nullable = "0.2.6"
25-
springdoc-openapi-ui = "2.8.8"
26-
commons-lang3 = "3.17.0"
27-
datafaker = "2.4.3"
28-
instancio-junit = "5.4.1"
24+
jackson-databind-nullable = "0.2.7"
25+
springdoc-openapi-ui = "2.8.13"
26+
commons-lang3 = "3.18.0"
27+
datafaker = "2.4.4"
28+
instancio-junit = "5.5.1"
2929
jsonunit-assertj = "4.1.1"
3030
mapstruct = "1.6.3"
3131
h2 = "2.3.232"
32-
junit-bom = "5.12.2"
33-
## ⬆ = "5.13.0-M1"
34-
## ⬆ = "5.13.0-M2"
35-
## ⬆ = "5.13.0-M3"
36-
## ⬆ = "5.13.0-RC1"
32+
junit-bom = "5.13.4"
3733

3834
[libraries]
3935

gradle/wrapper/gradle-wrapper.jar

1.65 KB
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.14.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-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
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
#
4-
# Copyright © 2015-2021 the original authors.
4+
# Copyright © 2015 the original authors.
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License");
77
# you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)