Skip to content

Commit 17a613b

Browse files
Merge pull request #115 from KomanRudden/bugfix/snyk-validation-fixes
Bugfix/snyk validation fixes
2 parents 378eb5d + 6a24e22 commit 17a613b

File tree

7 files changed

+54
-16
lines changed

7 files changed

+54
-16
lines changed

kinde-core/pom.xml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,36 @@
4545
<artifactId>junit-jupiter-engine</artifactId>
4646
<scope>test</scope>
4747
</dependency>
48+
<!-- https://mvnrepository.com/artifact/com.nimbusds/oauth2-oidc-sdk -->
49+
<dependency>
50+
<groupId>com.nimbusds</groupId>
51+
<artifactId>oauth2-oidc-sdk</artifactId>
52+
</dependency>
53+
<dependency>
54+
<groupId>com.nimbusds</groupId>
55+
<artifactId>nimbus-jose-jwt</artifactId>
56+
</dependency>
57+
<dependency>
58+
<groupId>org.checkerframework</groupId>
59+
<artifactId>checker-qual</artifactId>
60+
<version>3.33.0</version>
61+
</dependency>
62+
<dependency>
63+
<groupId>junit</groupId>
64+
<artifactId>junit</artifactId>
65+
<scope>test</scope>
66+
</dependency>
67+
<!-- JUnit 5 API and Engine -->
68+
<dependency>
69+
<groupId>org.junit.jupiter</groupId>
70+
<artifactId>junit-jupiter-api</artifactId>
71+
<scope>test</scope>
72+
</dependency>
73+
<dependency>
74+
<groupId>org.junit.jupiter</groupId>
75+
<artifactId>junit-jupiter-engine</artifactId>
76+
<scope>test</scope>
77+
</dependency>
4878

4979
<!-- Optional: For parameterized tests -->
5080
<dependency>

kinde-core/src/main/java/com/kinde/session/KindeClientCodeSessionImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
import com.nimbusds.openid.connect.sdk.UserInfoResponse;
2323
import lombok.SneakyThrows;
2424

25-
import javax.annotation.Nullable;
25+
import org.checkerframework.checker.nullness.qual.Nullable;
2626
import java.net.URI;
2727

2828
public class KindeClientCodeSessionImpl extends KindeClientSessionImpl {

kinde-management/pom.xml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1313
<swagger-annotations-version>2.2.28</swagger-annotations-version>
1414
<jersey-version>4.0.0-M2</jersey-version>
15-
<jackson-version>2.18.3</jackson-version>
15+
<jackson-version>2.19.0</jackson-version>
1616
<jackson-databind-version>2.18.3</jackson-databind-version>
1717
<jackson-databind-nullable-version>0.2.6</jackson-databind-nullable-version>
1818
<jakarta-annotation-version>1.3.5</jakarta-annotation-version>
@@ -234,9 +234,7 @@
234234
<configuration>
235235
<target>
236236
<echo>Fixing syntax error in generated OpenAPI code</echo>
237-
<replace file="target/generated-sources/openapi/src/gen/java/main/org/openapitools/client/model/UpdateApplicationsPropertyRequestValue.java"
238-
token="(token == JsonToken.VALUE_FALSE || token == JsonToken.VALUE_TRUE));"
239-
value="(token == JsonToken.VALUE_FALSE || token == JsonToken.VALUE_TRUE);"/>
237+
<replace file="target/generated-sources/openapi/src/gen/java/main/org/openapitools/client/model/UpdateApplicationsPropertyRequestValue.java" token="(token == JsonToken.VALUE_FALSE || token == JsonToken.VALUE_TRUE));" value="(token == JsonToken.VALUE_FALSE || token == JsonToken.VALUE_TRUE);"/>
240238
</target>
241239
</configuration>
242240
<goals>

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<groupId>org.springframework.boot</groupId>
3131
<artifactId>spring-boot-starter</artifactId>
3232
<optional>true</optional>
33-
<version>3.4.4</version>
33+
<version>3.4.6</version>
3434
</dependency>
3535

3636
<dependency>
@@ -50,34 +50,34 @@
5050
<dependency>
5151
<groupId>org.springframework.security</groupId>
5252
<artifactId>spring-security-config</artifactId>
53-
<version>6.4.4</version>
53+
<version>6.4.6</version>
5454
</dependency>
5555
<dependency>
5656
<groupId>org.springframework.boot</groupId>
5757
<artifactId>spring-boot-starter-security</artifactId>
58-
<version>3.4.4</version>
58+
<version>3.4.6</version>
5959
</dependency>
6060
<dependency>
6161
<groupId>org.springframework.security</groupId>
6262
<artifactId>spring-security-oauth2-client</artifactId>
63-
<version>6.4.4</version>
63+
<version>6.4.6</version>
6464
</dependency>
6565
<dependency>
6666
<groupId>org.springframework.security</groupId>
6767
<artifactId>spring-security-oauth2-jose</artifactId>
68-
<version>6.4.4</version>
68+
<version>6.4.6</version>
6969
</dependency>
7070
<dependency>
7171
<groupId>org.springframework.security</groupId>
7272
<artifactId>spring-security-oauth2-resource-server</artifactId>
73-
<version>6.4.4</version>
73+
<version>6.4.6</version>
7474
</dependency>
7575

7676
<!-- Spring deps-->
7777
<dependency>
7878
<groupId>org.springframework.boot</groupId>
7979
<artifactId>spring-boot-starter-security</artifactId>
80-
<version>3.4.4</version>
80+
<version>3.4.6</version>
8181
</dependency>
8282
<dependency>
8383
<groupId>org.springframework.boot</groupId>

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

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,16 @@
2323
<artifactId>kinde-core</artifactId>
2424
<version>2.0.1</version>
2525
</dependency>
26+
<dependency>
27+
<groupId>org.springframework.security</groupId>
28+
<artifactId>spring-security-web</artifactId>
29+
<version>6.4.6</version>
30+
</dependency>
31+
<dependency>
32+
<groupId>org.springframework.security</groupId>
33+
<artifactId>spring-security-crypto</artifactId>
34+
<version>6.4.6</version>
35+
</dependency>
2636
</dependencies>
2737

2838
<build>

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

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

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@
115115
<dependency>
116116
<groupId>com.google.guava</groupId>
117117
<artifactId>guava</artifactId>
118-
<version>32.1.3-jre</version>
118+
<version>33.4.8-jre</version>
119119
</dependency>
120120

121121

0 commit comments

Comments
 (0)