Skip to content

Commit 7fa5821

Browse files
committed
Merge branch 'hotfix/1.8.10'
2 parents a551e90 + 1db11e7 commit 7fa5821

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.8.10] - 2025-07-02
11+
12+
- Fix deprecation warning for "erase credentials"
13+
1014
## [1.8.9] - 2025-07-01
1115

1216
- Update to Symfony 7.3, update composer dependencies

src/Entity/Server.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,9 +109,10 @@ public function getRoles(): array
109109
return self::ROLES;
110110
}
111111

112+
#[\Deprecated]
112113
public function eraseCredentials(): void
113114
{
114-
// TODO: Implement eraseCredentials() method.
115+
// Deprecated: since Symfony 7.3, erase credentials using the "__serialize()" method instead
115116
}
116117

117118
public function getUserIdentifier(): string

0 commit comments

Comments
 (0)