Skip to content

Commit f479a76

Browse files
committed
preparing 1.8.2
1 parent bcdeb53 commit f479a76

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
# [1.8.2](https://github.com/Password4j/password4j/releases/tag/1.8.2) - (2024-05-01)
4+
### Fixed
5+
* Multi thread algorithms use daemon threads in order to not block the application shutdown if there is no explicit `System.exit()` ([#151](../../issues/151))
6+
* Password4j works even when there is no access to `psw4j.properties` file due to restrictive security policies ([#153](../../issues/153))
7+
8+
39
## [1.8.1](https://github.com/Password4j/password4j/releases/tag/1.8.1) - (2024-03-08)
410
### Fixed
511
* `Argon2Function#internalHash(...)` used a double conversion from `byte[]` to `String` and back to `byte[]` that created inconsistencies in `Hash#salt ([#143](../../issues/143))

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Add the dependency of the latest version to your `pom.xml`:
4545
<dependency>
4646
<groupId>com.password4j</groupId>
4747
<artifactId>password4j</artifactId>
48-
<version>1.8.1</version>
48+
<version>1.8.2</version>
4949
</dependency>
5050
```
5151

pom.xml

+6-3
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,16 @@
44

55
<groupId>com.password4j</groupId>
66
<artifactId>password4j</artifactId>
7-
<version>1.8.1</version>
7+
<version>1.8.2</version>
88
<packaging>jar</packaging>
99

1010

1111
<name>Password4j</name>
1212
<description>
13-
Password4j is a user-friendly cryptographic library that supports Argon2, Bcrypt, Scrypt, PBKDF2 and various cryptographic hash functions.
13+
About
14+
Java cryptographic library that supports Argon2, bcrypt, scrypt and PBKDF2 aimed to protect passwords in databases.
15+
Easy to use by design, highly customizable, secure and portable.
16+
All the implementations follow the standards and have been reviewed to perform better in the JVM.
1417
</description>
1518
<url>https://password4j.com/</url>
1619

@@ -19,7 +22,7 @@
1922
<connection>scm:git:[email protected]/Password4j/${project.artifactId}.git</connection>
2023
<developerConnection>scm:git:ssh://[email protected]/Password4j/${project.artifactId}.git</developerConnection>
2124
<url>https://github.com/Password4j/password4j</url>
22-
<tag>1.8.1</tag>
25+
<tag>1.8.2</tag>
2326
</scm>
2427

2528
<licenses>

0 commit comments

Comments
 (0)