Skip to content

Commit 34a9270

Browse files
authored
Merge pull request #204 from xdev-software/develop
Release
2 parents 22b4db3 + dd44fa7 commit 34a9270

File tree

29 files changed

+819
-209
lines changed

29 files changed

+819
-209
lines changed

.config/pmd/java/ruleset.xml

Lines changed: 765 additions & 6 deletions
Large diffs are not rendered by default.

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# 1.3.1
2+
* Actuator
3+
* Disabled caching by default
4+
* `SHA-256` is usually faster than utilizing a cache
5+
* This heavily depends on the used hardware, however most systems have hardware acceleration for `SHA-256`
6+
* Removed `expiring-limited-cache` cacher as it provides no advantage
7+
18
# 1.3.0
29
* Actuator
310
* Added support for custom password hashers

bom/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@
135135
<plugin>
136136
<groupId>org.codehaus.mojo</groupId>
137137
<artifactId>flatten-maven-plugin</artifactId>
138-
<version>1.7.2</version>
138+
<version>1.7.3</version>
139139
<configuration>
140140
<flattenMode>bom</flattenMode>
141141
</configuration>

client-storage/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
<plugin>
106106
<groupId>org.apache.maven.plugins</groupId>
107107
<artifactId>maven-compiler-plugin</artifactId>
108-
<version>3.14.0</version>
108+
<version>3.14.1</version>
109109
<configuration>
110110
<release>${maven.compiler.release}</release>
111111
<compilerArgs>
@@ -116,7 +116,7 @@
116116
<plugin>
117117
<groupId>org.apache.maven.plugins</groupId>
118118
<artifactId>maven-javadoc-plugin</artifactId>
119-
<version>3.11.3</version>
119+
<version>3.12.0</version>
120120
<executions>
121121
<execution>
122122
<id>attach-javadocs</id>
@@ -155,7 +155,7 @@
155155
<plugin>
156156
<groupId>org.codehaus.mojo</groupId>
157157
<artifactId>flatten-maven-plugin</artifactId>
158-
<version>1.7.2</version>
158+
<version>1.7.3</version>
159159
<configuration>
160160
<flattenMode>ossrh</flattenMode>
161161
</configuration>

client-storage/src/main/java/software/xdev/sse/clientstorage/compressor/DeflateClientStorageCompressor.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
*/
3232
public class DeflateClientStorageCompressor implements ClientStorageCompressor
3333
{
34+
@SuppressWarnings("PMD.AvoidInMemoryStreamingDefaultConstructor")
3435
@Override
3536
public byte[] compress(final byte[] input)
3637
{

codec-sha256/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@
106106
<plugin>
107107
<groupId>org.apache.maven.plugins</groupId>
108108
<artifactId>maven-compiler-plugin</artifactId>
109-
<version>3.14.0</version>
109+
<version>3.14.1</version>
110110
<configuration>
111111
<release>${maven.compiler.release}</release>
112112
<compilerArgs>
@@ -117,7 +117,7 @@
117117
<plugin>
118118
<groupId>org.apache.maven.plugins</groupId>
119119
<artifactId>maven-javadoc-plugin</artifactId>
120-
<version>3.11.3</version>
120+
<version>3.12.0</version>
121121
<executions>
122122
<execution>
123123
<id>attach-javadocs</id>
@@ -162,7 +162,7 @@
162162
<plugin>
163163
<groupId>org.codehaus.mojo</groupId>
164164
<artifactId>flatten-maven-plugin</artifactId>
165-
<version>1.7.2</version>
165+
<version>1.7.3</version>
166166
<configuration>
167167
<flattenMode>ossrh</flattenMode>
168168
</configuration>

codec-sha256/src/main/java/software/xdev/sse/codec/hash/SHA256Hashing.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public static String hash(final String input)
4646
/**
4747
* @apiNote Note that SHA256 gets slower the longer the input is. Ensure that the input length is limited.
4848
*/
49-
@SuppressWarnings("checkstyle:MagicNumber")
49+
@SuppressWarnings({"checkstyle:MagicNumber", "PMD.AvoidStringBuilderOrBuffer"})
5050
public static String hash(final byte[] input)
5151
{
5252
if(input == null)

crypto-symmetric-managed/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@
132132
<plugin>
133133
<groupId>org.apache.maven.plugins</groupId>
134134
<artifactId>maven-compiler-plugin</artifactId>
135-
<version>3.14.0</version>
135+
<version>3.14.1</version>
136136
<configuration>
137137
<release>${maven.compiler.release}</release>
138138
<compilerArgs>
@@ -143,7 +143,7 @@
143143
<plugin>
144144
<groupId>org.apache.maven.plugins</groupId>
145145
<artifactId>maven-javadoc-plugin</artifactId>
146-
<version>3.11.3</version>
146+
<version>3.12.0</version>
147147
<executions>
148148
<execution>
149149
<id>attach-javadocs</id>
@@ -182,7 +182,7 @@
182182
<plugin>
183183
<groupId>org.codehaus.mojo</groupId>
184184
<artifactId>flatten-maven-plugin</artifactId>
185-
<version>1.7.2</version>
185+
<version>1.7.3</version>
186186
<configuration>
187187
<flattenMode>ossrh</flattenMode>
188188
</configuration>

crypto-symmetric/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@
106106
<plugin>
107107
<groupId>org.apache.maven.plugins</groupId>
108108
<artifactId>maven-compiler-plugin</artifactId>
109-
<version>3.14.0</version>
109+
<version>3.14.1</version>
110110
<configuration>
111111
<release>${maven.compiler.release}</release>
112112
<compilerArgs>
@@ -117,7 +117,7 @@
117117
<plugin>
118118
<groupId>org.apache.maven.plugins</groupId>
119119
<artifactId>maven-javadoc-plugin</artifactId>
120-
<version>3.11.3</version>
120+
<version>3.12.0</version>
121121
<executions>
122122
<execution>
123123
<id>attach-javadocs</id>
@@ -162,7 +162,7 @@
162162
<plugin>
163163
<groupId>org.codehaus.mojo</groupId>
164164
<artifactId>flatten-maven-plugin</artifactId>
165-
<version>1.7.2</version>
165+
<version>1.7.3</version>
166166
<configuration>
167167
<flattenMode>ossrh</flattenMode>
168168
</configuration>

csp/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@
121121
<plugin>
122122
<groupId>org.apache.maven.plugins</groupId>
123123
<artifactId>maven-compiler-plugin</artifactId>
124-
<version>3.14.0</version>
124+
<version>3.14.1</version>
125125
<configuration>
126126
<release>${maven.compiler.release}</release>
127127
<compilerArgs>
@@ -132,7 +132,7 @@
132132
<plugin>
133133
<groupId>org.apache.maven.plugins</groupId>
134134
<artifactId>maven-javadoc-plugin</artifactId>
135-
<version>3.11.3</version>
135+
<version>3.12.0</version>
136136
<executions>
137137
<execution>
138138
<id>attach-javadocs</id>
@@ -171,7 +171,7 @@
171171
<plugin>
172172
<groupId>org.codehaus.mojo</groupId>
173173
<artifactId>flatten-maven-plugin</artifactId>
174-
<version>1.7.2</version>
174+
<version>1.7.3</version>
175175
<configuration>
176176
<flattenMode>ossrh</flattenMode>
177177
</configuration>

0 commit comments

Comments
 (0)