Skip to content

Commit fcfe4ab

Browse files
committed
Add change log entries
1 parent b7f6ef5 commit fcfe4ab

File tree

4 files changed

+11
-1
lines changed

4 files changed

+11
-1
lines changed

UPGRADE-5.2.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ Lock
4242
----
4343

4444
* `MongoDbStore` does not implement `BlockingStoreInterface` anymore, typehint against `PersistingStoreInterface` instead.
45+
* deprecated `NotSupportedException`, it shouldn't be thrown anymore.
46+
* deprecated `RetryTillSaveStore`, logic has been moved in `Lock` and is not needed anymore.
4547

4648
Mime
4749
----

UPGRADE-6.0.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,12 @@ Inflector
7777

7878
* The component has been removed, use `EnglishInflector` from the String component instead.
7979

80+
Lock
81+
----
82+
83+
* Removed the `NotSupportedException`. It shouldn't be thrown anymore.
84+
* Removed the `RetryTillSaveStore`. Logic has been moved in `Lock` and is not needed anymore.
85+
8086
Mailer
8187
------
8288

src/Symfony/Component/Lock/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ CHANGELOG
77
* `MongoDbStore` does not implement `BlockingStoreInterface` anymore, typehint against `PersistingStoreInterface` instead.
88
* added support for shared locks
99
* added `NoLock`
10+
* deprecated `NotSupportedException`, it shouldn't be thrown anymore.
11+
* deprecated `RetryTillSaveStore`, logic has been moved in `Lock` and is not needed anymore.
1012

1113
5.1.0
1214
-----

src/Symfony/Component/Lock/Exception/NotSupportedException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
namespace Symfony\Component\Lock\Exception;
1313

14-
trigger_deprecation('symfony/lock', '5.1', '%s is deprecated, You should stop using it, as it will be removed in 6.0.', NotSupportedException::class);
14+
trigger_deprecation('symfony/lock', '5.2', '%s is deprecated, You should stop using it, as it will be removed in 6.0.', NotSupportedException::class);
1515

1616
/**
1717
* NotSupportedException is thrown when an unsupported method is called.

0 commit comments

Comments
 (0)