8000 [RateLimiter][Runtime][Translation] remove `@experimental` flag · symfony/symfony@32c6b3f · GitHub
[go: up one dir, main page]

Skip to content

Commit 32c6b3f

Browse files
[RateLimiter][Runtime][Translation] remove @experimental flag
1 parent 3eb7e3e commit 32c6b3f

File tree

62 files changed

+31
-110
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+31
-110
lines changed

src/Symfony/Bridge/Twig/Resources/views/Form/tailwind_2_layout.html.twig

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
{# @experimental in 5.3 #}
2-
31
{% use 'form_div_layout.html.twig' %}
42

53
{%- block form_row -%}

src/Symfony/Component/Config/Builder/ClassBuilder.php

-2
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,6 @@ public function build(): string
9494
9595
/**
9696
* This class is automatically generated to help creating config.
97-
*
98-
* @experimental in 5.3
9997
*/
10098
class CLASS IMPLEMENTS
10199
{

src/Symfony/Component/Config/Builder/ConfigBuilderInterface.php

-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
* A ConfigBuilder provides helper methods to build a large complex array.
1616
*
1717
* @author Tobias Nyholm <tobias.nyholm@gmail.com>
18-
*
19-
* @experimental in 5.3
2018
*/
2119
interface ConfigBuilderInterface
2220
{

src/Symfony/Component/HttpFoundation/RateLimiter/AbstractRequestRateLimiter.php

-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@
2121
* fits most use-cases.
2222
*
2323
* @author Wouter de Jong <wouter@wouterj.nl>
24-
*
25-
* @experimental in 5.3
2624
*/
2725
abstract class AbstractRequestRateLimiter implements RequestRateLimiterInterface
2826
{

src/Symfony/Component/HttpFoundation/RateLimiter/RequestRateLimiterInterface.php

-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@
2121
* from the requests.
2222
*
2323
* @author Wouter de Jong <wouter@wouterj.nl>
24-
*
25-
* @experimental in 5.3
2624
*/
2725
interface RequestRateLimiterInterface
2826
{

src/Symfony/Component/Messenger/Transport/Receiver/QueueReceiverInterface.php

-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
* Some transports may have multiple queues. This interface is used to read from only some queues.
1818
*
1919
* @author David Buchmann <mail@davidbu.ch>
20-
*
21-
* @experimental in 5.3
2220
*/
2321
interface QueueReceiverInterface extends ReceiverInterface
2422
{

src/Symfony/Component/Notifier/Bridge/Esendex/CHANGELOG.md

+3

src/Symfony/Component/RateLimiter/CHANGELOG.md

+5

src/Symfony/Component/RateLimiter/CompoundLimiter.php

-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515

1616
/**
1717
* @author Wouter de Jong <wouter@wouterj.nl>
18-
*
19-
* @experimental in 5.3
2018
*/
2119
final class CompoundLimiter implements LimiterInterface
2220
{

src/Symfony/Component/RateLimiter/Exception/InvalidIntervalException.php

-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313

1414
/**
1515
* @author Tobias Nyholm <tobias.nyholm@gmail.com>
16-
*
17-
* @experimental in 5.3
1816
*/
1917
class InvalidIntervalException extends \LogicException
2018
{

src/Symfony/Component/RateLimiter/Exception/MaxWaitDurationExceededException.php

-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515

1616
/**
1717
* @author Wouter de Jong <wouter@wouterj.nl>
18-
*
19-
* @experimental in 5.3
2018
*/
2119
class MaxWaitDurationExceededException extends \RuntimeException
2220
{

src/Symfony/Component/RateLimiter/Exception/RateLimitExceededException.php

-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515

1616
/**
1717
* @author Kevin Bond <kevinbond@gmail.com>
18-
*
19-
* @experimental in 5.3
2018
*/
2119
class RateLimitExceededException extends \RuntimeException
2220
{

src/Symfony/Component/RateLimiter/Exception/ReserveNotSupportedException.php

-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313

1414
/**
1515
* @author Wouter de Jong <wouter@wouterj.nl>
16-
*
17-
* @experimental in 5.3
1816
*/
1917
class ReserveNotSupportedException extends \BadMethodCallException
2018
{

src/Symfony/Component/RateLimiter/LimiterInterface.php

-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@
1616

1717
/**
1818
* @author Wouter de Jong <wouter@wouterj.nl>
19-
*
20-
* @experimental in 5.3
2119
*/
2220
interface LimiterInterface
2321
{

src/Symfony/Component/RateLimiter/LimiterStateInterface.php

-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@
1919
* object.
2020
*
2121
* @author Wouter de Jong <wouter@wouterj.nl>
22-
*
23-
* @experimental in 5.3
2422
*/
2523
interface LimiterStateInterface
2624
{

src/Symfony/Component/RateLimiter/Policy/FixedWindowLimiter.php

-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@
2222

2323
/**
2424
* @author Wouter de Jong <wouter@wouterj.nl>
25-
*
26-
* @experimental in 5.3
2725
*/
2826
final class FixedWindowLimiter implements LimiterInterface
2927
{

src/Symfony/Component/RateLimiter/Policy/NoLimiter.php

-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@
2222
* limiter, but no rate limit should be enforced.
2323
*
2424
* @author Wouter de Jong <wouter@wouterj.nl>
25-
*
26-
* @experimental in 5.3
2725
*/
2826
final class NoLimiter implements LimiterInterface
2927
{

src/Symfony/Component/RateLimiter/Policy/Rate.php

-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
* Data object representing the fill rate of a token bucket.
1818
*
1919
* @author Wouter de Jong <wouter@wouterj.nl>
20-
*
21-
* @experimental in 5.3
2220
*/
2321
final class Rate
2422
{

src/Symfony/Component/RateLimiter/Policy/ResetLimiterTrait.php

-3
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@
1414
use Symfony\Component\Lock\LockInterface;
1515
use Symfony\Component\RateLimiter\Storage\StorageInterface;
1616

17-
/**
18-
* @experimental in 5.3
19-
*/
2017
trait ResetLimiterTrait
2118
{
2219
/**

src/Symfony/Component/RateLimiter/Policy/SlidingWindow.php

-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
* @author Tobias Nyholm <tobias.nyholm@gmail.com>
1919
*
2020
* @internal
21-
* @experimental in 5.3
2221
*/
2322
final class SlidingWindow implements LimiterStateInterface
2423
{

src/Symfony/Component/RateLimiter/Policy/SlidingWindowLimiter.php

-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,6 @@
3030
* That means our sliding window hit count is (75% * 8) + 3 = 9.
3131
*
3232
* @author Tobias Nyholm <tobias.nyholm@gmail.com>
33-
*
34-
* @experimental in 5.3
3533
*/
3634
final class SlidingWindowLimiter implements LimiterInterface
3735
{

src/Symfony/Component/RateLimiter/Policy/TokenBucket.php

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
* @author Wouter de Jong <wouter@wouterj.nl>
1818
*
1919
* @internal
20-
* @experimental in 5.3
2120
*/
2221
final class TokenBucket implements LimiterStateInterface
2322
{

src/Symfony/Component/RateLimiter/Policy/TokenBucketLimiter.php

-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@
2121

2222
/**
2323
* @author Wouter de Jong <wouter@wouterj.nl>
24-
*
25-
* @experimental in 5.3
2624
*/
2725
final class TokenBucketLimiter implements LimiterInterface
2826
{

src/Symfony/Component/RateLimiter/Policy/Window.php

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
* @author Wouter de Jong <wouter@wouterj.nl>
1818
*
1919
* @internal
20-
* @experimental in 5.3
2120
*/
2221
final class Window implements LimiterStateInterface
2322
{

src/Symfony/Component/RateLimiter/RateLimit.php

-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515

1616
/**
1717
* @author Valentin Silvestre <vsilvestre.pro@gmail.com>
18-
*
19-
* @experimental in 5.3
2018
*/
2119
class RateLimit
2220
{

src/Symfony/Component/RateLimiter/RateLimiterFactory.php

-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@
2424

2525
/**
2626
* @author Wouter de Jong <wouter@wouterj.nl>
27-
*
28-
* @experimental in 5.3
2927
*/
3028
final class RateLimiterFactory
3129
{

src/Symfony/Component/RateLimiter/Reservation.php

-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313

1414
/**
1515
* @author Wouter de Jong <wouter@wouterj.nl>
16-
*
17-
* @experimental in 5.3
1816
*/
1917
final class Reservation
2018
{

src/Symfony/Component/RateLimiter/Storage/CacheStorage.php

-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@
1616

1717
/**
1818
* @author Wouter de Jong <wouter@wouterj.nl>
19-
*
20-
* @experimental in 5.3
2119
*/
2220
class CacheStorage implements StorageInterface
2321
{

src/Symfony/Component/RateLimiter/Storage/InMemoryStorage.php

-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515

1616
/**
1717
* @author Wouter de Jong <wouter@wouterj.nl>
18-
*
19-
* @experimental in 5.3
2018
*/
2119
class InMemoryStorage implements StorageInterface
2220
{

src/Symfony/Component/RateLimiter/Storage/StorageInterface.php

-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515

1616
/**
1717
* @author Wouter de Jong <wouter@wouterj.nl>
18-
*
19-
* @experimental in 5.3
2018
*/
2119
interface StorageInterface
2220
{

src/Symfony/Component/Runtime/CHANGELOG.md

+5

src/Symfony/Component/Runtime/GenericRuntime.php

-2
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,6 @@ class_exists(ClosureResolver::class);
4141
* that throws exceptions when a PHP warning/notice is raised.
4242
*
4343
* @author Nicolas Grekas <p@tchwork.com>
44-
*
45-
* @experimental in 5.3
4644
*/
4745
class GenericRuntime implements RuntimeInterface
4846
{

src/Symfony/Component/Runtime/Resolver/ClosureResolver.php

-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515

1616
/**
1717
* @author Nicolas Grekas <p@tchwork.com>
18-
*
19-
* @experimental in 5.3
2018
*/
2119
class ClosureResolver implements ResolverInterface
2220
{

src/Symfony/Component/Runtime/Resolver/DebugClosureResolver.php

-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313

1414
/**
1515
* @author Nicolas Grekas <p@tchwork.com>
16-
*
17-
* @experimental in 5.3
1816
*/
1917
class DebugClosureResolver extends ClosureResolver
2018
{

src/Symfony/Component/Runtime/ResolverInterface.php

-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313

1414
/**
1515
* @author Nicolas Grekas <p@tchwork.com>
16-
*
17-
* @experimental in 5.3
1816
*/
1917
interface ResolverInterface
2018
{

src/Symfony/Component/Runtime/Runner/ClosureRunner.php

-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515

1616
/**
1717
* @author Nicolas Grekas <p@tchwork.com>
18-
*
19-
* @experimental in 5.3
2018
*/
2119
class ClosureRunner implements RunnerInterface
2220
{

src/Symfony/Component/Runtime/Runner/Symfony/ConsoleApplicationRunner.php

-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@
1919

2020
/**
2121
* @author Nicolas Grekas <p@tchwork.com>
22-
*
23-
* @experimental in 5.3
2422
*/
2523
class ConsoleApplicationRunner implements RunnerInterface
2624
{

src/Symfony/Component/Runtime/Runner/Symfony/HttpKernelRunner.php

-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818

1919
/**
2020
* @author Nicolas Grekas <p@tchwork.com>
21-
*
22-
* @experimental in 5.3
2321
*/
2422
class HttpKernelRunner implements RunnerInterface
2523
{

src/Symfony/Component/Runtime/Runner/Symfony/ResponseRunner.php

-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@
1616

1717
/**
1818
* @author Nicolas Grekas <p@tchwork.com>
19-
*
20-
* @experimental in 5.3
2119
*/
2220
class ResponseRunner implements RunnerInterface
2321
{

src/Symfony/Component/Runtime/RunnerInterface.php

-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313

1414
/**
1515
* @author Nicolas Grekas <p@tchwork.com>
16-
*
17-
* @experimental in 5.3
1816
*/
1917
interface RunnerInterface
2018
{

src/Symfony/Component/Runtime/RuntimeInterface.php

-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
* Enables decoupling applications from global state.
1616
*
1717
* @author Nicolas Grekas <p@tchwork.com>
18-
*
19-
* @experimental in 5.3
2018
*/
2119
interface RuntimeInterface
2220
{

src/Symfony/Component/Runtime/SymfonyRuntime.php

-2
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,6 @@ class_exists(MissingDotenv::class, false) || class_exists(Dotenv::class) || clas
6262
* - int|string|null as handled by GenericRuntime.
6363
*
6464
* @author Nicolas Grekas <p@tchwork.com>
65-
*
66-
* @experimental in 5.3
6765
*/
6866
class SymfonyRuntime extends GenericRuntime
6967
{

src/Symfony/Component/Translation/Bridge/Crowdin/CHANGELOG.md

+5

0 commit comments

Comments
 (0)
0