Skip to content

Commit 56d58d1

Browse files
Merge pull request #82 from kinde-oss/renovate/spring-boot
fix(deps): update spring boot to v3.4.4
2 parents 0f161cd + aac4b5b commit 56d58d1

File tree

4 files changed

+33
-26
lines changed
  • kinde-springboot/kinde-springboot-core
  • playground
    • kinde-springboot-starter-example
    • springboot-pkce-client-example
    • springboot-thymeleaf-full-example

4 files changed

+33
-26
lines changed

kinde-springboot/kinde-springboot-core/pom.xml

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,18 @@
2626
<version>2.0.1</version>
2727
</dependency>
2828

29+
<dependency>
30+
<groupId>org.springframework.boot</groupId>
31+
<artifactId>spring-boot-starter</artifactId>
32+
<optional>true</optional>
33+
<version>3.4.4</version>
34+
</dependency>
35+
2936
<dependency>
3037
<groupId>org.springframework.boot</groupId>
3138
<artifactId>spring-boot-starter-webflux</artifactId>
3239
<optional>true</optional>
33-
<version>3.3.0</version>
40+
<version>3.4.4</version>
3441
</dependency>
3542

3643
<dependency>
@@ -48,7 +55,7 @@
4855
<dependency>
4956
<groupId>org.springframework.boot</groupId>
5057
<artifactId>spring-boot-starter-security</artifactId>
51-
<version>3.3.1</version>
58+
<version>3.4.4</version>
5259
</dependency>
5360
<dependency>
5461
<groupId>org.springframework.security</groupId>
@@ -70,21 +77,21 @@
7077
<dependency>
7178
<groupId>org.springframework.boot</groupId>
7279
<artifactId>spring-boot-starter-security</artifactId>
73-
<version>3.3.1</version>
80+
<version>3.4.4</version>
7481
</dependency>
7582
<dependency>
7683
<groupId>org.springframework.boot</groupId>
7784
<artifactId>spring-boot-configuration-processor</artifactId>
7885
<optional>true</optional>
79-
<version>3.3.0</version>
86+
<version>3.4.4</version>
8087
</dependency>
8188

8289
<!-- Test deps -->
8390
<dependency>
8491
<groupId>org.springframework.boot</groupId>
8592
<artifactId>spring-boot-test</artifactId>
8693
<scope>test</scope>
87-
<version>3.3.1</version>
94+
<version>3.4.4</version>
8895
</dependency>
8996
<dependency>
9097
<groupId>org.springframework</groupId>

playground/kinde-springboot-starter-example/pom.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,27 +22,27 @@
2222
<dependency>
2323
<groupId>org.springframework.boot</groupId>
2424
<artifactId>spring-boot-starter-data-rest</artifactId>
25-
<version>3.3.1</version>
25+
<version>3.4.4</version>
2626
</dependency>
2727
<dependency>
2828
<groupId>org.springframework.boot</groupId>
2929
<artifactId>spring-boot-starter-web</artifactId>
30-
<version>3.3.3</version>
30+
<version>3.4.4</version>
3131
</dependency>
3232
<dependency>
3333
<groupId>org.springframework.boot</groupId>
3434
<artifactId>spring-boot-starter-actuator</artifactId>
35-
<version>3.3.3</version>
35+
<version>3.4.4</version>
3636
</dependency>
3737
<dependency>
3838
<groupId>org.springframework.boot</groupId>
3939
<artifactId>spring-boot-starter-security</artifactId>
40-
<version>3.3.3</version>
40+
<version>3.4.4</version>
4141
</dependency>
4242
<dependency>
4343
<groupId>org.springframework.boot</groupId>
4444
<artifactId>spring-boot-starter-thymeleaf</artifactId>
45-
<version>3.3.3</version>
45+
<version>3.4.4</version>
4646
</dependency>
4747
<dependency>
4848
<groupId>org.thymeleaf</groupId>
@@ -57,7 +57,7 @@
5757
<dependency>
5858
<groupId>org.springframework.boot</groupId>
5959
<artifactId>spring-boot-devtools</artifactId>
60-
<version>3.3.3</version>
60+
<version>3.4.4</version>
6161
<scope>runtime</scope>
6262
</dependency>
6363

@@ -84,7 +84,7 @@
8484
<plugin>
8585
<groupId>org.springframework.boot</groupId>
8686
<artifactId>spring-boot-maven-plugin</artifactId>
87-
<version>3.3.1</version>
87+
<version>3.4.4</version>
8888
</plugin>
8989
</plugins>
9090
</pluginManagement>

playground/springboot-pkce-client-example/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,22 +15,22 @@
1515
<dependency>
1616
<groupId>org.springframework.boot</groupId>
1717
<artifactId>spring-boot-starter-webflux</artifactId>
18-
<version>3.1.5</version>
18+
<version>3.4.4</version>
1919
</dependency>
2020
<dependency>
2121
<groupId>org.springframework.boot</groupId>
2222
<artifactId>spring-boot-starter-oauth2-client</artifactId>
23-
<version>3.1.5</version>
23+
<version>3.4.4</version>
2424
</dependency>
2525
<dependency>
2626
<groupId>org.springframework.boot</groupId>
2727
<artifactId>spring-boot-starter-thymeleaf</artifactId>
28-
<version>3.1.5</version>
28+
<version>3.4.4</version>
2929
</dependency>
3030
<dependency>
3131
<groupId>org.springframework.boot</groupId>
3232
<artifactId>spring-boot-starter-oauth2-resource-server</artifactId>
33-
<version>3.1.5</version>
33+
<version>3.4.4</version>
3434
</dependency>
3535
</dependencies>
3636

@@ -40,7 +40,7 @@
4040
<plugin>
4141
<groupId>org.springframework.boot</groupId>
4242
<artifactId>spring-boot-maven-plugin</artifactId>
43-
<version>3.1.5</version>
43+
<version>3.4.4</version>
4444
</plugin>
4545
</plugins>
4646
</pluginManagement>

playground/springboot-thymeleaf-full-example/pom.xml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -28,28 +28,28 @@
2828
<dependency>
2929
<groupId>org.springframework.boot</groupId>
3030
<artifactId>spring-boot-starter-actuator</artifactId>
31-
<version>3.3.3</version>
31+
<version>3.4.4</version>
3232
</dependency>
3333

3434
<dependency>
3535
<groupId>org.springframework.boot</groupId>
3636
<artifactId>spring-boot-starter-security</artifactId>
37-
<version>3.3.3</version>
37+
<version>3.4.4</version>
3838
</dependency>
3939
<dependency>
4040
<groupId>org.springframework.boot</groupId>
4141
<artifactId>spring-boot-starter-oauth2-client</artifactId>
42-
<version>3.3.3</version>
42+
<version>3.4.4</version>
4343
</dependency>
4444
<dependency>
4545
<groupId>org.springframework.boot</groupId>
4646
<artifactId>spring-boot-starter-oauth2-resource-server</artifactId>
47-
<version>3.3.3</version>
47+
<version>3.4.4</version>
4848
</dependency>
4949
<dependency>
5050
<groupId>org.springframework.boot</groupId>
5151
<artifactId>spring-boot-starter-web</artifactId>
52-
<version>3.3.3</version>
52+
<version>3.4.4</version>
5353
</dependency>
5454
<dependency>
5555
<groupId>org.springframework</groupId>
@@ -59,12 +59,12 @@
5959
<dependency>
6060
<groupId>org.springframework.boot</groupId>
6161
<artifactId>spring-boot-starter-thymeleaf</artifactId>
62-
<version>3.3.3</version>
62+
<version>3.4.4</version>
6363
</dependency>
6464
<dependency>
6565
<groupId>org.springframework.boot</groupId>
6666
<artifactId>spring-boot-devtools</artifactId>
67-
<version>3.3.3</version>
67+
<version>3.4.4</version>
6868
<optional>true</optional>
6969
</dependency>
7070
<dependency>
@@ -83,7 +83,7 @@
8383
<groupId>org.springframework.boot</groupId>
8484
<artifactId>spring-boot-starter-test</artifactId>
8585
<scope>test</scope>
86-
<version>3.3.1</version>
86+
<version>3.4.4</version>
8787
</dependency>
8888
</dependencies>
8989

@@ -92,7 +92,7 @@
9292
<plugin>
9393
<groupId>org.springframework.boot</groupId>
9494
<artifactId>spring-boot-maven-plugin</artifactId>
95-
<version>3.3.1</version>
95+
<version>3.4.4</version>
9696
</plugin>
9797
</plugins>
9898
</build>

0 commit comments

Comments
 (0)