Skip to content

Commit 92ab7a3

Browse files
authored
Merge pull request #352 from xdev-software/develop
Release
2 parents be43004 + 13d9a8a commit 92ab7a3

49 files changed

Lines changed: 235 additions & 217 deletions

File tree

Some content is hidden

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

.config/pmd/java/ruleset.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ A `Set` also prevents duplicates when the ORM reads multiple identical rows from
440440
<value>
441441
<![CDATA[
442442
//ClassDeclaration[pmd-java:hasAnnotation('jakarta.persistence.Entity')]
443-
//FieldDeclaration[pmd-java:hasAnnotation('jakarta.persistence.ManyToMany') or pmd-java:hasAnnotation('jakarta.persistence.OneToMany')]
443+
//FieldDeclaration[pmd-java:hasAnnotation('jakarta.persistence.ManyToMany') or pmd-java:hasAnnotation('jakarta.persistence.OneToMany') or pmd-java:hasAnnotation('jakarta.persistence.ElementCollection')]
444444
/ClassType[pmd-java:typeIs('java.util.List')]
445445
]]>
446446
</value>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
wrapperVersion=3.3.4
22
distributionType=only-script
3-
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.15/apache-maven-3.9.15-bin.zip
3+
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.16/apache-maven-3.9.16-bin.zip

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 2.4.0
2+
* oauth2-oidc-remember-me
3+
* Prefer use of UTC based `Instant` instead of `LocalDateTime`
4+
* demo
5+
* Remove Validation API from entities as it's use [is not recommended](https://github.com/spring-projects/spring-boot/issues/905#issuecomment-43610027) ([related article](https://www.baeldung.com/spring-boot-disable-hibernate-entity-validation))
6+
17
# 2.3.0
28
* vaadin
39
* New subsystem: `session-cleaner`

bom/pom.xml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>software.xdev.sse</groupId>
88
<artifactId>bom</artifactId>
9-
<version>2.3.1-SNAPSHOT</version>
9+
<version>2.4.0-SNAPSHOT</version>
1010
<packaging>pom</packaging>
1111

1212
<name>bom</name>
@@ -51,62 +51,62 @@
5151
<dependency>
5252
<groupId>software.xdev.sse</groupId>
5353
<artifactId>client-storage</artifactId>
54-
<version>2.3.1-SNAPSHOT</version>
54+
<version>2.4.0-SNAPSHOT</version>
5555
</dependency>
5656
<dependency>
5757
<groupId>software.xdev.sse</groupId>
5858
<artifactId>crypto-symmetric</artifactId>
59-
<version>2.3.1-SNAPSHOT</version>
59+
<version>2.4.0-SNAPSHOT</version>
6060
</dependency>
6161
<dependency>
6262
<groupId>software.xdev.sse</groupId>
6363
<artifactId>crypto-symmetric-managed</artifactId>
64-
<version>2.3.1-SNAPSHOT</version>
64+
<version>2.4.0-SNAPSHOT</version>
6565
</dependency>
6666
<dependency>
6767
<groupId>software.xdev.sse</groupId>
6868
<artifactId>codec-sha256</artifactId>
69-
<version>2.3.1-SNAPSHOT</version>
69+
<version>2.4.0-SNAPSHOT</version>
7070
</dependency>
7171
<dependency>
7272
<groupId>software.xdev.sse</groupId>
7373
<artifactId>csp</artifactId>
74-
<version>2.3.1-SNAPSHOT</version>
74+
<version>2.4.0-SNAPSHOT</version>
7575
</dependency>
7676
<dependency>
7777
<groupId>software.xdev.sse</groupId>
7878
<artifactId>metrics</artifactId>
79-
<version>2.3.1-SNAPSHOT</version>
79+
<version>2.4.0-SNAPSHOT</version>
8080
</dependency>
8181
<dependency>
8282
<groupId>software.xdev.sse</groupId>
8383
<artifactId>oauth2-oidc</artifactId>
84-
<version>2.3.1-SNAPSHOT</version>
84+
<version>2.4.0-SNAPSHOT</version>
8585
</dependency>
8686
<dependency>
8787
<groupId>software.xdev.sse</groupId>
8888
<artifactId>oauth2-oidc-remember-me</artifactId>
89-
<version>2.3.1-SNAPSHOT</version>
89+
<version>2.4.0-SNAPSHOT</version>
9090
</dependency>
9191
<dependency>
9292
<groupId>software.xdev.sse</groupId>
9393
<artifactId>vaadin</artifactId>
94-
<version>2.3.1-SNAPSHOT</version>
94+
<version>2.4.0-SNAPSHOT</version>
9595
</dependency>
9696
<dependency>
9797
<groupId>software.xdev.sse</groupId>
9898
<artifactId>web</artifactId>
99-
<version>2.3.1-SNAPSHOT</version>
99+
<version>2.4.0-SNAPSHOT</version>
100100
</dependency>
101101
<dependency>
102102
<groupId>software.xdev.sse</groupId>
103103
<artifactId>web-sidecar-actuator</artifactId>
104-
<version>2.3.1-SNAPSHOT</version>
104+
<version>2.4.0-SNAPSHOT</version>
105105
</dependency>
106106
<dependency>
107107
<groupId>software.xdev.sse</groupId>
108108
<artifactId>web-sidecar-common</artifactId>
109-
<version>2.3.1-SNAPSHOT</version>
109+
<version>2.4.0-SNAPSHOT</version>
110110
</dependency>
111111
</dependencies>
112112
</dependencyManagement>

client-storage/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>software.xdev.sse</groupId>
88
<artifactId>client-storage</artifactId>
9-
<version>2.3.1-SNAPSHOT</version>
9+
<version>2.4.0-SNAPSHOT</version>
1010
<packaging>jar</packaging>
1111

1212
<name>client-storage</name>
@@ -223,7 +223,7 @@
223223
<dependency>
224224
<groupId>com.puppycrawl.tools</groupId>
225225
<artifactId>checkstyle</artifactId>
226-
<version>13.4.0</version>
226+
<version>13.4.2</version>
227227
</dependency>
228228
</dependencies>
229229
<configuration>
@@ -261,12 +261,12 @@
261261
<dependency>
262262
<groupId>net.sourceforge.pmd</groupId>
263263
<artifactId>pmd-core</artifactId>
264-
<version>7.23.0</version>
264+
<version>7.24.0</version>
265265
</dependency>
266266
<dependency>
267267
<groupId>net.sourceforge.pmd</groupId>
268268
<artifactId>pmd-java</artifactId>
269-
<version>7.23.0</version>
269+
<version>7.24.0</version>
270270
</dependency>
271271
</dependencies>
272272
</plugin>

codec-sha256/pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>software.xdev.sse</groupId>
88
<artifactId>codec-sha256</artifactId>
9-
<version>2.3.1-SNAPSHOT</version>
9+
<version>2.4.0-SNAPSHOT</version>
1010
<packaging>jar</packaging>
1111

1212
<name>codec-sha256</name>
@@ -53,7 +53,7 @@
5353
<dependency>
5454
<groupId>org.junit.jupiter</groupId>
5555
<artifactId>junit-jupiter</artifactId>
56-
<version>6.0.3</version>
56+
<version>6.1.0</version>
5757
<scope>test</scope>
5858
</dependency>
5959
</dependencies>
@@ -150,7 +150,7 @@
150150
<plugin>
151151
<groupId>org.apache.maven.plugins</groupId>
152152
<artifactId>maven-surefire-plugin</artifactId>
153-
<version>3.5.5</version>
153+
<version>3.5.6</version>
154154
</plugin>
155155
</plugins>
156156
</build>
@@ -230,7 +230,7 @@
230230
<dependency>
231231
<groupId>com.puppycrawl.tools</groupId>
232232
<artifactId>checkstyle</artifactId>
233-
<version>13.4.0</version>
233+
<version>13.4.2</version>
234234
</dependency>
235235
</dependencies>
236236
<configuration>
@@ -268,12 +268,12 @@
268268
<dependency>
269269
<groupId>net.sourceforge.pmd</groupId>
270270
<artifactId>pmd-core</artifactId>
271-
<version>7.23.0</version>
271+
<version>7.24.0</version>
272272
</dependency>
273273
<dependency>
274274
<groupId>net.sourceforge.pmd</groupId>
275275
<artifactId>pmd-java</artifactId>
276-
<version>7.23.0</version>
276+
<version>7.24.0</version>
277277
</dependency>
278278
</dependencies>
279279
</plugin>

crypto-symmetric-managed/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>software.xdev.sse</groupId>
88
<artifactId>crypto-symmetric-managed</artifactId>
9-
<version>2.3.1-SNAPSHOT</version>
9+
<version>2.4.0-SNAPSHOT</version>
1010
<packaging>jar</packaging>
1111

1212
<name>crypto-symmetric-managed</name>
@@ -54,7 +54,7 @@
5454
<dependency>
5555
<groupId>org.springframework.boot</groupId>
5656
<artifactId>spring-boot-dependencies</artifactId>
57-
<version>4.0.5</version>
57+
<version>4.0.6</version>
5858
<type>pom</type>
5959
<scope>import</scope>
6060
</dependency>
@@ -250,7 +250,7 @@
250250
<dependency>
251251
<groupId>com.puppycrawl.tools</groupId>
252252
<artifactId>checkstyle</artifactId>
253-
<version>13.4.0</version>
253+
<version>13.4.2</version>
254254
</dependency>
255255
</dependencies>
256256
<configuration>
@@ -287,12 +287,12 @@
287287
<dependency>
288288
<groupId>net.sourceforge.pmd</groupId>
289289
<artifactId>pmd-core</artifactId>
290-
<version>7.23.0</version>
290+
<version>7.24.0</version>
291291
</dependency>
292292
<dependency>
293293
<groupId>net.sourceforge.pmd</groupId>
294294
<artifactId>pmd-java</artifactId>
295-
<version>7.23.0</version>
295+
<version>7.24.0</version>
296296
</dependency>
297297
</dependencies>
298298
</plugin>

crypto-symmetric/pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>software.xdev.sse</groupId>
88
<artifactId>crypto-symmetric</artifactId>
9-
<version>2.3.1-SNAPSHOT</version>
9+
<version>2.4.0-SNAPSHOT</version>
1010
<packaging>jar</packaging>
1111

1212
<name>crypto-symmetric</name>
@@ -53,7 +53,7 @@
5353
<dependency>
5454
<groupId>org.junit.jupiter</groupId>
5555
<artifactId>junit-jupiter</artifactId>
56-
<version>6.0.3</version>
56+
<version>6.1.0</version>
5757
<scope>test</scope>
5858
</dependency>
5959
</dependencies>
@@ -150,7 +150,7 @@
150150
<plugin>
151151
<groupId>org.apache.maven.plugins</groupId>
152152
<artifactId>maven-surefire-plugin</artifactId>
153-
<version>3.5.5</version>
153+
<version>3.5.6</version>
154154
</plugin>
155155
</plugins>
156156
</build>
@@ -230,7 +230,7 @@
230230
<dependency>
231231
<groupId>com.puppycrawl.tools</groupId>
232232
<artifactId>checkstyle</artifactId>
233-
<version>13.4.0</version>
233+
<version>13.4.2</version>
234234
</dependency>
235235
</dependencies>
236236
<configuration>
@@ -268,12 +268,12 @@
268268
<dependency>
269269
<groupId>net.sourceforge.pmd</groupId>
270270
<artifactId>pmd-core</artifactId>
271-
<version>7.23.0</version>
271+
<version>7.24.0</version>
272272
</dependency>
273273
<dependency>
274274
<groupId>net.sourceforge.pmd</groupId>
275275
<artifactId>pmd-java</artifactId>
276-
<version>7.23.0</version>
276+
<version>7.24.0</version>
277277
</dependency>
278278
</dependencies>
279279
</plugin>

csp/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>software.xdev.sse</groupId>
88
<artifactId>csp</artifactId>
9-
<version>2.3.1-SNAPSHOT</version>
9+
<version>2.4.0-SNAPSHOT</version>
1010
<packaging>jar</packaging>
1111

1212
<name>csp</name>
@@ -54,7 +54,7 @@
5454
<dependency>
5555
<groupId>org.springframework.boot</groupId>
5656
<artifactId>spring-boot-dependencies</artifactId>
57-
<version>4.0.5</version>
57+
<version>4.0.6</version>
5858
<type>pom</type>
5959
<scope>import</scope>
6060
</dependency>
@@ -239,7 +239,7 @@
239239
<dependency>
240240
<groupId>com.puppycrawl.tools</groupId>
241241
<artifactId>checkstyle</artifactId>
242-
<version>13.4.0</version>
242+
<version>13.4.2</version>
243243
</dependency>
244244
</dependencies>
245245
<configuration>
@@ -277,12 +277,12 @@
277277
<dependency>
278278
<groupId>net.sourceforge.pmd</groupId>
279279
<artifactId>pmd-core</artifactId>
280-
<version>7.23.0</version>
280+
<version>7.24.0</version>
281281
</dependency>
282282
<dependency>
283283
<groupId>net.sourceforge.pmd</groupId>
284284
<artifactId>pmd-java</artifactId>
285-
<version>7.23.0</version>
285+
<version>7.24.0</version>
286286
</dependency>
287287
</dependencies>
288288
</plugin>

demo/entities-metamodel/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>software.xdev.sse.demo</groupId>
99
<artifactId>demo</artifactId>
10-
<version>2.3.1-SNAPSHOT</version>
10+
<version>2.4.0-SNAPSHOT</version>
1111
</parent>
1212
<artifactId>entities-metamodel</artifactId>
1313

0 commit comments

Comments
 (0)