Skip to content

Commit bc2a53a

Browse files
authored
Merge pull request #89 from xdev-software/develop
Release
2 parents 3056ede + 088aa79 commit bc2a53a

File tree

37 files changed

+114
-119
lines changed

37 files changed

+114
-119
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 9 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,15 @@ body:
3333
validations:
3434
required: true
3535

36+
- type: textarea
37+
id: description
38+
attributes:
39+
label: Description of the problem
40+
description: |
41+
Describe as exactly as possible what is not working.
42+
validations:
43+
required: true
44+
3645
- type: textarea
3746
id: steps-to-reproduce
3847
attributes:
@@ -47,20 +56,6 @@ body:
4756
validations:
4857
required: true
4958

50-
- type: textarea
51-
id: expected-behavior
52-
attributes:
53-
label: Expected behavior
54-
description: |
55-
Tell us what you expect to happen.
56-
57-
- type: textarea
58-
id: actual-behavior
59-
attributes:
60-
label: Actual behavior
61-
description: |
62-
Tell us what happens with the steps given above.
63-
6459
- type: textarea
6560
id: additional-information
6661
attributes:

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# 1.1.0
2+
* Updated to Spring Boot 3.5
3+
14
# 1.0.5
25
* Migrated deployment to _Sonatype Maven Central Portal_ [#155](https://github.com/xdev-software/standard-maven-template/issues/155)
36
* Updated dependencies

bom/pom.xml

Lines changed: 13 additions & 16 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>1.0.6-SNAPSHOT</version>
9+
<version>1.1.0-SNAPSHOT</version>
1010
<packaging>pom</packaging>
1111

1212
<name>bom</name>
@@ -42,9 +42,6 @@
4242
</licenses>
4343

4444
<properties>
45-
<javaVersion>17</javaVersion>
46-
<maven.compiler.release>${javaVersion}</maven.compiler.release>
47-
4845
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
4946
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
5047
</properties>
@@ -54,62 +51,62 @@
5451
<dependency>
5552
<groupId>software.xdev.sse</groupId>
5653
<artifactId>client-storage</artifactId>
57-
<version>1.0.6-SNAPSHOT</version>
54+
<version>1.1.0-SNAPSHOT</version>
5855
</dependency>
5956
<dependency>
6057
<groupId>software.xdev.sse</groupId>
6158
<artifactId>crypto-symmetric</artifactId>
62-
<version>1.0.6-SNAPSHOT</version>
59+
<version>1.1.0-SNAPSHOT</version>
6360
</dependency>
6461
<dependency>
6562
<groupId>software.xdev.sse</groupId>
6663
<artifactId>crypto-symmetric-managed</artifactId>
67-
<version>1.0.6-SNAPSHOT</version>
64+
<version>1.1.0-SNAPSHOT</version>
6865
</dependency>
6966
<dependency>
7067
<groupId>software.xdev.sse</groupId>
7168
<artifactId>codec-sha256</artifactId>
72-
<version>1.0.6-SNAPSHOT</version>
69+
<version>1.1.0-SNAPSHOT</version>
7370
</dependency>
7471
<dependency>
7572
<groupId>software.xdev.sse</groupId>
7673
<artifactId>csp</artifactId>
77-
<version>1.0.6-SNAPSHOT</version>
74+
<version>1.1.0-SNAPSHOT</version>
7875
</dependency>
7976
<dependency>
8077
<groupId>software.xdev.sse</groupId>
8178
<artifactId>metrics</artifactId>
82-
<version>1.0.6-SNAPSHOT</version>
79+
<version>1.1.0-SNAPSHOT</version>
8380
</dependency>
8481
<dependency>
8582
<groupId>software.xdev.sse</groupId>
8683
<artifactId>oauth2-oidc</artifactId>
87-
<version>1.0.6-SNAPSHOT</version>
84+
<version>1.1.0-SNAPSHOT</version>
8885
</dependency>
8986
<dependency>
9087
<groupId>software.xdev.sse</groupId>
9188
<artifactId>oauth2-oidc-remember-me</artifactId>
92-
<version>1.0.6-SNAPSHOT</version>
89+
<version>1.1.0-SNAPSHOT</version>
9390
</dependency>
9491
<dependency>
9592
<groupId>software.xdev.sse</groupId>
9693
<artifactId>vaadin</artifactId>
97-
<version>1.0.6-SNAPSHOT</version>
94+
<version>1.1.0-SNAPSHOT</version>
9895
</dependency>
9996
<dependency>
10097
<groupId>software.xdev.sse</groupId>
10198
<artifactId>web</artifactId>
102-
<version>1.0.6-SNAPSHOT</version>
99+
<version>1.1.0-SNAPSHOT</version>
103100
</dependency>
104101
<dependency>
105102
<groupId>software.xdev.sse</groupId>
106103
<artifactId>web-sidecar-actuator</artifactId>
107-
<version>1.0.6-SNAPSHOT</version>
104+
<version>1.1.0-SNAPSHOT</version>
108105
</dependency>
109106
<dependency>
110107
<groupId>software.xdev.sse</groupId>
111108
<artifactId>web-sidecar-common</artifactId>
112-
<version>1.0.6-SNAPSHOT</version>
109+
<version>1.1.0-SNAPSHOT</version>
113110
</dependency>
114111
</dependencies>
115112
</dependencyManagement>

client-storage/pom.xml

Lines changed: 2 additions & 2 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>1.0.6-SNAPSHOT</version>
9+
<version>1.1.0-SNAPSHOT</version>
1010
<packaging>jar</packaging>
1111

1212
<name>client-storage</name>
@@ -217,7 +217,7 @@
217217
<dependency>
218218
<groupId>com.puppycrawl.tools</groupId>
219219
<artifactId>checkstyle</artifactId>
220-
<version>10.23.1</version>
220+
<version>10.24.0</version>
221221
</dependency>
222222
</dependencies>
223223
<configuration>

codec-sha256/pom.xml

Lines changed: 2 additions & 2 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>1.0.6-SNAPSHOT</version>
9+
<version>1.1.0-SNAPSHOT</version>
1010
<packaging>jar</packaging>
1111

1212
<name>codec-sha256</name>
@@ -224,7 +224,7 @@
224224
<dependency>
225225
<groupId>com.puppycrawl.tools</groupId>
226226
<artifactId>checkstyle</artifactId>
227-
<version>10.23.1</version>
227+
<version>10.24.0</version>
228228
</dependency>
229229
</dependencies>
230230
<configuration>

crypto-symmetric-managed/pom.xml

Lines changed: 3 additions & 3 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>1.0.6-SNAPSHOT</version>
9+
<version>1.1.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>3.4.5</version>
57+
<version>3.5.0</version>
5858
<type>pom</type>
5959
<scope>import</scope>
6060
</dependency>
@@ -244,7 +244,7 @@
244244
<dependency>
245245
<groupId>com.puppycrawl.tools</groupId>
246246
<artifactId>checkstyle</artifactId>
247-
<version>10.23.1</version>
247+
<version>10.24.0</version>
248248
</dependency>
249249
</dependencies>
250250
<configuration>

crypto-symmetric/pom.xml

Lines changed: 2 additions & 2 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>1.0.6-SNAPSHOT</version>
9+
<version>1.1.0-SNAPSHOT</version>
1010
<packaging>jar</packaging>
1111

1212
<name>crypto-symmetric</name>
@@ -224,7 +224,7 @@
224224
<dependency>
225225
<groupId>com.puppycrawl.tools</groupId>
226226
<artifactId>checkstyle</artifactId>
227-
<version>10.23.1</version>
227+
<version>10.24.0</version>
228228
</dependency>
229229
</dependencies>
230230
<configuration>

csp/pom.xml

Lines changed: 3 additions & 3 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>1.0.6-SNAPSHOT</version>
9+
<version>1.1.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>3.4.5</version>
57+
<version>3.5.0</version>
5858
<type>pom</type>
5959
<scope>import</scope>
6060
</dependency>
@@ -233,7 +233,7 @@
233233
<dependency>
234234
<groupId>com.puppycrawl.tools</groupId>
235235
<artifactId>checkstyle</artifactId>
236-
<version>10.23.1</version>
236+
<version>10.24.0</version>
237237
</dependency>
238238
</dependencies>
239239
<configuration>

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>1.0.6-SNAPSHOT</version>
10+
<version>1.1.0-SNAPSHOT</version>
1111
</parent>
1212
<artifactId>entities-metamodel</artifactId>
1313

demo/entities/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>1.0.6-SNAPSHOT</version>
10+
<version>1.1.0-SNAPSHOT</version>
1111
</parent>
1212
<artifactId>entities</artifactId>
1313

0 commit comments

Comments
 (0)