Skip to content

Commit 74b6de8

Browse files
Merge branch 'OpenFeign:master' into master
2 parents 3d13a29 + 9d0de8c commit 74b6de8

File tree

37 files changed

+100
-45
lines changed

37 files changed

+100
-45
lines changed

SECURITY.md

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# Security Policy
2+
3+
Thank you for your interest in improving the security of OpenFeign Querydsl. We are committed to addressing security issues responsibly and transparently.
4+
5+
## Supported Versions
6+
7+
We currently support the following versions of the project for security updates:
8+
9+
| Version | Supported |
10+
|---------------|--------------------|
11+
| 6.x ||
12+
| 5.x and older ||
13+
14+
If you're using an unsupported version, we recommend updating to the latest 6.x release.
15+
16+
## Reporting a Vulnerability
17+
18+
If you discover a security vulnerability, please follow these steps to report it responsibly:
19+
20+
1. **Do not open a public issue**. Instead, report vulnerabilities through our [GitHub Security Advisories](https://github.com/OpenFeign/querydsl/security/advisories).
21+
- Navigate to the **Security** tab of the repository.
22+
- Click **Report a vulnerability**.
23+
- Provide as much detail as possible about the issue, including:
24+
- Steps to reproduce the vulnerability
25+
- Potential impact
26+
- Relevant logs, screenshots, or details
27+
- A proposed fix (if available)
28+
29+
2. Once submitted, the report will remain private and will be visible only to the maintainers of this repository.
30+
31+
3. Allow us a reasonable timeframe to investigate and address the issue before publicly disclosing any details.
32+
33+
## Security Update Process
34+
35+
- Upon receiving a vulnerability report, we will acknowledge receipt within **3 business days**.
36+
- Our team will assess and address the issue based on severity and impact.
37+
- Once resolved, we will release an updated version and disclose the issue in the release notes.
38+
39+
## Scope of Vulnerabilities
40+
41+
We are particularly interested in:
42+
- Remote code execution (RCE)
43+
- Unauthorized access or data exposure
44+
- Denial-of-service attacks
45+
- Code injection vulnerabilities
46+
47+
We do **not** consider the following out-of-scope for this project:
48+
- Issues in dependencies (unless specific to this project's usage)
49+
- Security misconfigurations in end-user deployments
50+
51+
## Contact Us
52+
53+
If you have any questions about this security policy, feel free to open a discussion in the repository.
54+
55+
Thank you for helping us make Querydsl more secure!

pom.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>io.github.openfeign.querydsl</groupId>
66
<artifactId>querydsl-root</artifactId>
7-
<version>6.9-SNAPSHOT</version>
7+
<version>6.10-SNAPSHOT</version>
88

99
<packaging>pom</packaging>
1010
<name>Querydsl</name>
@@ -104,11 +104,11 @@
104104
<junit.version>5.11.3</junit.version>
105105
<ecj.version>3.33.0</ecj.version>
106106
<jdo.version>3.2.1</jdo.version>
107-
<springboot.version>3.3.5</springboot.version>
107+
<springboot.version>3.4.0</springboot.version>
108108
<spring.version>6.2.0</spring.version>
109109

110110
<!-- SQL deps -->
111-
<db2.version>11.5.9.0</db2.version>
111+
<db2.version>12.1.0.0</db2.version>
112112
<derby.version>10.17.1.0</derby.version>
113113
<hsqldb.version>2.7.4</hsqldb.version>
114114
<h2.version>2.3.232</h2.version>
@@ -125,7 +125,7 @@
125125
<r2dbc.version>1.0.0.RELEASE</r2dbc.version>
126126

127127
<!-- JPA deps -->
128-
<hibernate.version>6.6.2.Final</hibernate.version>
128+
<hibernate.version>6.6.3.Final</hibernate.version>
129129
<hibernate.validator.version>8.0.1.Final</hibernate.validator.version>
130130
<eclipselink.version>4.0.4</eclipselink.version>
131131
<jpa.version>3.1.0</jpa.version>
@@ -144,7 +144,7 @@
144144
<morphia.version>1.3.2</morphia.version>
145145
<jmh.version>1.37</jmh.version>
146146
<kotlin.version>2.0.21</kotlin.version>
147-
<ksp.version>2.0.21-1.0.27</ksp.version>
147+
<ksp.version>2.0.21-1.0.28</ksp.version>
148148
<kotlinpoet.version>2.0.0</kotlinpoet.version>
149149
<dokka.version>1.9.20</dokka.version>
150150
<scala.version>2.11.12</scala.version>
@@ -309,7 +309,7 @@
309309
<dependency>
310310
<groupId>org.easymock</groupId>
311311
<artifactId>easymock</artifactId>
312-
<version>5.4.0</version>
312+
<version>5.5.0</version>
313313
<scope>test</scope>
314314
</dependency>
315315
<dependency>
@@ -1009,7 +1009,7 @@
10091009
<plugin>
10101010
<groupId>org.openrewrite.maven</groupId>
10111011
<artifactId>rewrite-maven-plugin</artifactId>
1012-
<version>5.45.0</version>
1012+
<version>5.45.1</version>
10131013

10141014
<dependencies>
10151015
<dependency>
@@ -1020,7 +1020,7 @@
10201020
<dependency>
10211021
<groupId>org.openrewrite.recipe</groupId>
10221022
<artifactId>rewrite-migrate-java</artifactId>
1023-
<version>2.29.0</version>
1023+
<version>2.29.1</version>
10241024
</dependency>
10251025
</dependencies>
10261026

querydsl-docs/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>io.github.openfeign.querydsl</groupId>
77
<artifactId>querydsl-root</artifactId>
8-
<version>6.9-SNAPSHOT</version>
8+
<version>6.10-SNAPSHOT</version>
99
</parent>
1010

1111
<artifactId>querydsl-docs</artifactId>

querydsl-examples/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>io.github.openfeign.querydsl</groupId>
77
<artifactId>querydsl-root</artifactId>
8-
<version>6.9-SNAPSHOT</version>
8+
<version>6.10-SNAPSHOT</version>
99
</parent>
1010

1111
<artifactId>querydsl-examples</artifactId>
@@ -47,7 +47,7 @@
4747
<dependency>
4848
<groupId>org.apache.logging.log4j</groupId>
4949
<artifactId>log4j-core</artifactId>
50-
<version>2.24.1</version>
50+
<version>2.24.2</version>
5151
</dependency>
5252
</dependencies>
5353
</dependencyManagement>

querydsl-examples/querydsl-example-jpa-guice/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>io.github.openfeign.querydsl</groupId>
77
<artifactId>querydsl-examples</artifactId>
8-
<version>6.9-SNAPSHOT</version>
8+
<version>6.10-SNAPSHOT</version>
99
</parent>
1010

1111
<artifactId>querydsl-example-jpa-guice</artifactId>

querydsl-examples/querydsl-example-jpa-quarkus/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
<parent>
66
<groupId>io.github.openfeign.querydsl</groupId>
77
<artifactId>querydsl-examples</artifactId>
8-
<version>6.9-SNAPSHOT</version>
8+
<version>6.10-SNAPSHOT</version>
99
</parent>
1010

1111
<artifactId>querydsl-example-jpa-quarkus</artifactId>
1212
<name>Querydsl example - JPA Quarkus</name>
1313

1414
<properties>
15-
<quarkus.version>3.16.2</quarkus.version>
15+
<quarkus.version>3.16.4</quarkus.version>
1616
</properties>
1717

1818
<dependencyManagement>

querydsl-examples/querydsl-example-jpa-spring/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>io.github.openfeign.querydsl</groupId>
66
<artifactId>querydsl-examples</artifactId>
7-
<version>6.9-SNAPSHOT</version>
7+
<version>6.10-SNAPSHOT</version>
88
</parent>
99

1010
<artifactId>querydsl-example-jpa-spring</artifactId>

querydsl-examples/querydsl-example-kotlin-codegen/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>io.github.openfeign.querydsl</groupId>
66
<artifactId>querydsl-examples</artifactId>
7-
<version>6.9-SNAPSHOT</version>
7+
<version>6.10-SNAPSHOT</version>
88
</parent>
99
<artifactId>querydsl-example-kotlin-codegen</artifactId>
1010
<name>Querydsl example - Kotlin Codegen</name>

querydsl-examples/querydsl-example-kotlin-jpa/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>io.github.openfeign.querydsl</groupId>
66
<artifactId>querydsl-examples</artifactId>
7-
<version>6.9-SNAPSHOT</version>
7+
<version>6.10-SNAPSHOT</version>
88
</parent>
99
<artifactId>querydsl-example-kotlin</artifactId>
1010
<name>Querydsl example - Kotlin JPA</name>

querydsl-examples/querydsl-example-kotlin-mongodb/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>io.github.openfeign.querydsl</groupId>
66
<artifactId>querydsl-examples</artifactId>
7-
<version>6.9-SNAPSHOT</version>
7+
<version>6.10-SNAPSHOT</version>
88
</parent>
99
<artifactId>querydsl-example-kotlin-mongodb</artifactId>
1010
<name>Querydsl example - Kotlin MongoDB</name>

0 commit comments

Comments
 (0)