Skip to content

Commit

Permalink
Merge branch 'release-2.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
corpsee committed May 4, 2024
2 parents 934bfd4 + cc30405 commit 0c965d4
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 1 deletion.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,19 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
[Semantic Versioning](http://semver.org/spec/v2.0.0.html).


## [2.1.5 (Mr. Meeseeks)](https://github.com/php-censor/php-censor/tree/2.1.5) (2024-05-04)

[Full Changelog](https://github.com/php-censor/php-censor/compare/2.1.4...2.1.5)

### Added

- Support of PHP 8.2 and 8.3 in GitHub Actions.

### Fixed

- Security issue with remember me key in auth. See: https://chmod744.super.site/redacted-vulnerability.


## [2.1.4 (Mr. Meeseeks)](https://github.com/php-censor/php-censor/tree/2.1.4) (2024-01-11)

[Full Changelog](https://github.com/php-censor/php-censor/compare/2.1.3...2.1.4)
Expand Down
13 changes: 13 additions & 0 deletions docs/CHANGELOG_2.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,19 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
[Semantic Versioning](http://semver.org/spec/v2.0.0.html).


## [2.0.13 (Rick Sanchez)](https://github.com/php-censor/php-censor/tree/2.0.13) (2024-05-04)

[Full Changelog](https://github.com/php-censor/php-censor/compare/2.0.12...2.0.13)

### Added

- GitHub Actions pipeline (backport from v2.1) + support of PHP 8.2 and 8.3.

### Fixed

- Security issue with remember me key in auth. See: https://chmod744.super.site/redacted-vulnerability.


## [2.0.12 (Rick Sanchez)](https://github.com/php-censor/php-censor/tree/2.0.12) (2024-01-11)

[Full Changelog](https://github.com/php-censor/php-censor/compare/2.0.11...2.0.12)
Expand Down
2 changes: 1 addition & 1 deletion src/Controller/SessionController.php
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ public function login()

$response = new RedirectResponse($this->getLoginRedirect());
if ($rememberMe) {
$rememberKey = md5(random_bytes(64));
$rememberKey = \md5(\random_bytes(64));

$user->setRememberKey($rememberKey);
$this->userStore->save($user);
Expand Down

0 comments on commit 0c965d4

Please sign in to comment.