Skip to content

Commit

Permalink
preparing 1.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
firaja committed May 1, 2024
1 parent bcdeb53 commit f479a76
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

# [1.8.2](https://github.com/Password4j/password4j/releases/tag/1.8.2) - (2024-05-01)
### Fixed
* Multi thread algorithms use daemon threads in order to not block the application shutdown if there is no explicit `System.exit()` ([#151](../../issues/151))
* Password4j works even when there is no access to `psw4j.properties` file due to restrictive security policies ([#153](../../issues/153))


## [1.8.1](https://github.com/Password4j/password4j/releases/tag/1.8.1) - (2024-03-08)
### Fixed
* `Argon2Function#internalHash(...)` used a double conversion from `byte[]` to `String` and back to `byte[]` that created inconsistencies in `Hash#salt ([#143](../../issues/143))
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Add the dependency of the latest version to your `pom.xml`:
<dependency>
<groupId>com.password4j</groupId>
<artifactId>password4j</artifactId>
<version>1.8.1</version>
<version>1.8.2</version>
</dependency>
```

Expand Down
9 changes: 6 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,16 @@

<groupId>com.password4j</groupId>
<artifactId>password4j</artifactId>
<version>1.8.1</version>
<version>1.8.2</version>
<packaging>jar</packaging>


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

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

<licenses>
Expand Down

0 comments on commit f479a76

Please sign in to comment.