Skip to content

[RateLimiter][Runtime][Translation] remove @experimental flag #42957

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 10, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
{# @experimental in 5.3 #}

{% use 'form_div_layout.html.twig' %}

{%- block form_row -%}
Expand Down
2 changes: 0 additions & 2 deletions src/Symfony/Component/Config/Builder/ClassBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,6 @@ public function build(): string

/**
* This class is automatically generated to help creating config.
*
* @experimental in 5.3
*/
class CLASS IMPLEMENTS
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@
* A ConfigBuilder provides helper methods to build a large complex array.
*
* @author Tobias Nyholm <tobias.nyholm@gmail.com>
*
* @experimental in 5.3
*/
interface ConfigBuilderInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@
* fits most use-cases.
*
* @author Wouter de Jong <wouter@wouterj.nl>
*
* @experimental in 5.3
*/
abstract class AbstractRequestRateLimiter implements RequestRateLimiterInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@
* from the requests.
*
* @author Wouter de Jong <wouter@wouterj.nl>
*
* @experimental in 5.3
*/
interface RequestRateLimiterInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@
* Some transports may have multiple queues. This interface is used to read from only some queues.
*
* @author David Buchmann <mail@davidbu.ch>
*
* @experimental in 5.3
*/
interface QueueReceiverInterface extends ReceiverInterface
{
Expand Down
3 changes: 3 additions & 0 deletions src/Symfony/Component/Notifier/Bridge/Esendex/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
CHANGELOG
=========

5.4
---

* Add returned message ID to `SentMessage`

5.3
Expand Down
5 changes: 5 additions & 0 deletions src/Symfony/Component/RateLimiter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
CHANGELOG
=========

5.4
---

* The component is not experimental anymore

5.2.0
-----

Expand Down
2 changes: 0 additions & 2 deletions src/Symfony/Component/RateLimiter/CompoundLimiter.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@

/**
* @author Wouter de Jong <wouter@wouterj.nl>
*
* @experimental in 5.3
*/
final class CompoundLimiter implements LimiterInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@

/**
* @author Tobias Nyholm <tobias.nyholm@gmail.com>
*
* @experimental in 5.3
*/
class InvalidIntervalException extends \LogicException
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@

/**
* @author Wouter de Jong <wouter@wouterj.nl>
*
* @experimental in 5.3
*/
class MaxWaitDurationExceededException extends \RuntimeException
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@

/**
* @author Kevin Bond <kevinbond@gmail.com>
*
* @experimental in 5.3
*/
class RateLimitExceededException extends \RuntimeException
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@

/**
* @author Wouter de Jong <wouter@wouterj.nl>
*
* @experimental in 5.3
*/
class ReserveNotSupportedException extends \BadMethodCallException
{
Expand Down
2 changes: 0 additions & 2 deletions src/Symfony/Component/RateLimiter/LimiterInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@

/**
* @author Wouter de Jong <wouter@wouterj.nl>
*
* @experimental in 5.3
*/
interface LimiterInterface
{
Expand Down
2 changes: 0 additions & 2 deletions src/Symfony/Component/RateLimiter/LimiterStateInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@
* object.
*
* @author Wouter de Jong <wouter@wouterj.nl>
*
* @experimental in 5.3
*/
interface LimiterStateInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@

/**
* @author Wouter de Jong <wouter@wouterj.nl>
*
* @experimental in 5.3
*/
final class FixedWindowLimiter implements LimiterInterface
{
Expand Down
2 changes: 0 additions & 2 deletions src/Symfony/Component/RateLimiter/Policy/NoLimiter.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@
* limiter, but no rate limit should be enforced.
*
* @author Wouter de Jong <wouter@wouterj.nl>
*
* @experimental in 5.3
*/
final class NoLimiter implements LimiterInterface
{
Expand Down
2 changes: 0 additions & 2 deletions src/Symfony/Component/RateLimiter/Policy/Rate.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@
* Data object representing the fill rate of a token bucket.
*
* @author Wouter de Jong <wouter@wouterj.nl>
*
* @experimental in 5.3
*/
final class Rate
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@
use Symfony\Component\Lock\LockInterface;
use Symfony\Component\RateLimiter\Storage\StorageInterface;

/**
* @experimental in 5.3
*/
trait ResetLimiterTrait
{
/**
Expand Down
1 change: 0 additions & 1 deletion src/Symfony/Component/RateLimiter/Policy/SlidingWindow.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
* @author Tobias Nyholm <tobias.nyholm@gmail.com>
*
* @internal
* @experimental in 5.3
*/
final class SlidingWindow implements LimiterStateInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,6 @@
* That means our sliding window hit count is (75% * 8) + 3 = 9.
*
* @author Tobias Nyholm <tobias.nyholm@gmail.com>
*
* @experimental in 5.3
*/
final class SlidingWindowLimiter implements LimiterInterface
{
Expand Down
1 change: 0 additions & 1 deletion src/Symfony/Component/RateLimiter/Policy/TokenBucket.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
* @author Wouter de Jong <wouter@wouterj.nl>
*
* @internal
* @experimental in 5.3
*/
final class TokenBucket implements LimiterStateInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@

/**
* @author Wouter de Jong <wouter@wouterj.nl>
*
* @experimental in 5.3
*/
final class TokenBucketLimiter implements LimiterInterface
{
Expand Down
1 change: 0 additions & 1 deletion src/Symfony/Component/RateLimiter/Policy/Window.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
* @author Wouter de Jong <wouter@wouterj.nl>
*
* @internal
* @experimental in 5.3
*/
final class Window implements LimiterStateInterface
{
Expand Down
2 changes: 0 additions & 2 deletions src/Symfony/Component/RateLimiter/RateLimit.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@

/**
* @author Valentin Silvestre <vsilvestre.pro@gmail.com>
*
* @experimental in 5.3
*/
class RateLimit
{
Expand Down
2 changes: 0 additions & 2 deletions src/Symfony/Component/RateLimiter/RateLimiterFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@

/**
* @author Wouter de Jong <wouter@wouterj.nl>
*
* @experimental in 5.3
*/
final class RateLimiterFactory
{
Expand Down
2 changes: 0 additions & 2 deletions src/Symfony/Component/RateLimiter/Reservation.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@

/**
* @author Wouter de Jong <wouter@wouterj.nl>
*
* @experimental in 5.3
*/
final class Reservation
{
Expand Down
2 changes: 0 additions & 2 deletions src/Symfony/Component/RateLimiter/Storage/CacheStorage.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@

/**
* @author Wouter de Jong <wouter@wouterj.nl>
*
* @experimental in 5.3
*/
class CacheStorage implements StorageInterface
{
Expand Down
2 changes: 0 additions & 2 deletions src/Symfony/Component/RateLimiter/Storage/InMemoryStorage.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@

/**
* @author Wouter de Jong <wouter@wouterj.nl>
*
* @experimental in 5.3
*/
class InMemoryStorage implements StorageInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@

/**
* @author Wouter de Jong <wouter@wouterj.nl>
*
* @experimental in 5.3
*/
interface StorageInterface
{
Expand Down
5 changes: 5 additions & 0 deletions src/Symfony/Component/Runtime/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
CHANGELOG
=========

5.4
---

* The component is not experimental anymore

5.3.0
-----

Expand Down
2 changes: 0 additions & 2 deletions src/Symfony/Component/Runtime/GenericRuntime.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,6 @@ class_exists(ClosureResolver::class);
* that throws exceptions when a PHP warning/notice is raised.
*
* @author Nicolas Grekas <p@tchwork.com>
*
* @experimental in 5.3
*/
class GenericRuntime implements RuntimeInterface
{
Expand Down
2 changes: 0 additions & 2 deletions src/Symfony/Component/Runtime/Resolver/ClosureResolver.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@

/**
* @author Nicolas Grekas <p@tchwork.com>
*
* @experimental in 5.3
*/
class ClosureResolver implements ResolverInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@

/**
* @author Nicolas Grekas <p@tchwork.com>
*
* @experimental in 5.3
*/
class DebugClosureResolver extends ClosureResolver
{
Expand Down
2 changes: 0 additions & 2 deletions src/Symfony/Component/Runtime/ResolverInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@

/**
* @author Nicolas Grekas <p@tchwork.com>
*
* @experimental in 5.3
*/
interface ResolverInterface
{
Expand Down
2 changes: 0 additions & 2 deletions src/Symfony/Component/Runtime/Runner/ClosureRunner.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@

/**
* @author Nicolas Grekas <p@tchwork.com>
*
* @experimental in 5.3
*/
class ClosureRunner implements RunnerInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@

/**
* @author Nicolas Grekas <p@tchwork.com>
*
* @experimental in 5.3
*/
class ConsoleApplicationRunner implements RunnerInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@

/**
* @author Nicolas Grekas <p@tchwork.com>
*
* @experimental in 5.3
*/
class HttpKernelRunner implements RunnerInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@

/**
* @author Nicolas Grekas <p@tchwork.com>
*
* @experimental in 5.3
*/
class ResponseRunner implements RunnerInterface
{
Expand Down
2 changes: 0 additions & 2 deletions src/Symfony/Component/Runtime/RunnerInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@

/**
* @author Nicolas Grekas <p@tchwork.com>
*
* @experimental in 5.3
*/
interface RunnerInterface
{
Expand Down
2 changes: 0 additions & 2 deletions src/Symfony/Component/Runtime/RuntimeInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@
* Enables decoupling applications from global state.
*
* @author Nicolas Grekas <p@tchwork.com>
*
* @experimental in 5.3
*/
interface RuntimeInterface
{
Expand Down
2 changes: 0 additions & 2 deletions src/Symfony/Component/Runtime/SymfonyRuntime.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,6 @@ class_exists(MissingDotenv::class, false) || class_exists(Dotenv::class) || clas
* - int|string|null as handled by GenericRuntime.
*
* @author Nicolas Grekas <p@tchwork.com>
*
* @experimental in 5.3
*/
class SymfonyRuntime extends GenericRuntime
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@
* This class is used when the authenticator system is activated.
*
* This is used to not break AuthenticationChecker and ContextListener when
* using the authenticator system. Once the authenticator system is no longer
* experimental, this class can be used to trigger deprecation notices.
* using the authenticator system.
*
* @author Wouter de Jong <wouter@wouterj.nl>
*
Expand Down
Loading