We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a551e90 + 1db11e7 commit 7fa5821Copy full SHA for 7fa5821
2 files changed
CHANGELOG.md
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
8
## [Unreleased]
9
10
+## [1.8.10] - 2025-07-02
11
+
12
+- Fix deprecation warning for "erase credentials"
13
14
## [1.8.9] - 2025-07-01
15
16
- Update to Symfony 7.3, update composer dependencies
src/Entity/Server.php
@@ -109,9 +109,10 @@ public function getRoles(): array
109
return self::ROLES;
110
}
111
112
+ #[\Deprecated]
113
public function eraseCredentials(): void
114
{
- // TODO: Implement eraseCredentials() method.
115
+ // Deprecated: since Symfony 7.3, erase credentials using the "__serialize()" method instead
116
117
118
public function getUserIdentifier(): string
0 commit comments