Skip to content

Commit fdfb79c

Browse files
committed
update dependencies
Signed-off-by: Kai Helbig <kai.helbig@tngtech.com>
1 parent 8648314 commit fdfb79c

10 files changed

Lines changed: 86 additions & 106 deletions

File tree

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/pre-commit/pre-commit-hooks
3-
rev: v4.5.0
3+
rev: v6.0.0
44
hooks:
55
- id: check-added-large-files
66
- id: check-case-conflict
@@ -9,7 +9,7 @@ repos:
99
- id: mixed-line-ending
1010
- id: trailing-whitespace
1111
- repo: https://github.com/macisamuele/language-formatters-pre-commit-hooks
12-
rev: v2.13.0
12+
rev: v2.16.0
1313
hooks:
1414
- id: pretty-format-java
1515
args: [ --autofix ]

build.gradle

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@ buildscript {
77
}
88

99
plugins {
10-
id 'com.github.ben-manes.versions' version '0.52.0'
11-
id 'com.google.cloud.tools.jib' version '3.4.5' apply false
12-
id 'com.gradleup.nmcp' version '1.2.0' apply false
13-
id 'com.gradleup.nmcp.aggregation' version '1.2.0'
14-
id 'org.sonarqube' version '6.2.0.5505'
15-
id 'pl.allegro.tech.build.axion-release' version '1.20.1'
10+
id 'com.github.ben-manes.versions' version '0.53.0'
11+
id 'com.google.cloud.tools.jib' version '3.5.2' apply false
12+
id 'com.gradleup.nmcp' version '1.4.3' apply false
13+
id 'com.gradleup.nmcp.aggregation' version '1.4.3'
14+
id 'org.sonarqube' version '7.2.2.6593'
15+
id 'pl.allegro.tech.build.axion-release' version '1.21.1'
1616
}
1717

1818
wrapper {
19-
gradleVersion = '9.0.0'
19+
gradleVersion = '9.3.0'
2020
distributionType = Wrapper.DistributionType.ALL
2121
}
2222

@@ -44,19 +44,20 @@ allprojects {
4444
}
4545

4646
ext {
47-
assertj_version = '3.27.4'
48-
jjwt_version = '0.12.7'
47+
assertj_version = '3.27.6'
48+
jjwt_version = '0.13.0'
4949
jsr305_version = '3.0.2'
5050
junit4_version = '4.13.2'
51-
junit5_version = '5.13.4'
52-
keycloak_version = '26.3.2'
51+
// starting from major version 6, junit needs Java 17+
52+
junit5_version = '5.14.2'
53+
keycloak_version = '26.5.1'
5354
// the last version that was shipped together with keycloak server
5455
keycloak_js_version = '25.0.6'
55-
mockito_version = '5.19.0'
56+
mockito_version = '5.21.0'
5657
picocli_version = '4.7.7'
5758
slf4j_version = '2.0.17'
5859
// starting from major version 5, vert.x needs Java 11+
59-
vertx_version = '4.5.18'
60+
vertx_version = '4.5.24'
6061

6162
license_name = 'The Apache License, Version 2.0'
6263
license_url = 'http://www.apache.org/licenses/LICENSE-2.0.txt'

example-backend/build.gradle

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
buildscript {
22
ext {
3-
springBootVersion = '3.5.4'
3+
springBootVersion = '4.0.1'
44
}
55
repositories {
66
mavenCentral()
@@ -14,8 +14,6 @@ apply plugin: 'com.google.cloud.tools.jib'
1414
apply plugin: 'io.spring.dependency-management'
1515
apply plugin: 'org.springframework.boot'
1616

17-
ext['junit-jupiter.version'] = junit5_version
18-
1917
dependencies {
2018
// Using multiple engines in a single project may lead to different JUnit
2119
// Platform artifact versions being pulled in via transitive dependencies.
@@ -30,7 +28,7 @@ dependencies {
3028
implementation "org.springframework.boot:spring-boot-starter-oauth2-resource-server:$springBootVersion"
3129
implementation "org.springframework.boot:spring-boot-configuration-processor:$springBootVersion"
3230
// the enforcer has become decoupled from the keycloak release, see https://github.com/keycloak/keycloak/issues/30787
33-
implementation 'org.keycloak:keycloak-policy-enforcer:26.0.6'
31+
implementation 'org.keycloak:keycloak-policy-enforcer:26.0.8'
3432
testImplementation project(':mock-junit')
3533
testImplementation project(':mock-junit5')
3634
testImplementation "io.vertx:vertx-junit5:$vertx_version"

example-frontend-react/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66

77
def nodeDir = 'bin/nodejs'
88
def yarnDir = 'bin/yarn'
9-
def nodeVersionString = '18.18.0'
9+
def nodeVersionString = '24.12.0'
1010

1111
node {
1212
// Version of node to use.

example-frontend-react/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
"private": true,
55
"license": "Apache-2.0",
66
"dependencies": {
7-
"axios": "^1.12.0",
8-
"keycloak-js": "^26.2.0",
9-
"react": "^19.1.1",
10-
"react-dom": "^19.1.1",
7+
"axios": "^1.13.2",
8+
"keycloak-js": "^26.2.2",
9+
"react": "^19.2.3",
10+
"react-dom": "^19.2.3",
1111
"react-scripts": "5.0.1"
1212
},
1313
"scripts": {
@@ -29,7 +29,7 @@
2929
"not op_mini all"
3030
],
3131
"devDependencies": {
32-
"cypress": "^14.5.4",
32+
"cypress": "^15.9.0",
3333
"cypress-keycloak": "^2.0.2"
3434
}
3535
}

0 commit comments

Comments
 (0)