8000 [Webhook] Mark component as non experimental by fabpot · Pull Request #51248 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[Webhook] Mark component as non experimental #51248

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
Aug 3, 2023
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
5 changes: 5 additions & 0 deletions src/Symfony/Component/Webhook/CHANGELOG.md
8000
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
CHANGELOG
=========

6.4
---

* Mark the component as non experimental

6.3
---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@

/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 6.3
*/
abstract class AbstractRequestParser implements RequestParserInterface
{
Expand Down
2 changes: 0 additions & 2 deletions src/Symfony/Component/Webhook/Client/RequestParser.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@

/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 6.3
*/
class RequestParser extends AbstractRequestParser
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@

/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 6.3
*/
interface RequestParserInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@
*
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 6.3
*
* @internal
*/
final class WebhookController
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@

/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 6.3
*/
interface ExceptionInterface extends \Throwable
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@

/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 6.3
*/
class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface
{
Expand Down
2 changes: 0 additions & 2 deletions src/Symfony/Component/Webhook/Exception/LogicException.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@

/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 6.3
*/
class LogicException extends \LogicException implements ExceptionInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@

/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 6.3
*/
class RejectWebhookException extends HttpException
{
Expand Down
2 changes: 0 additions & 2 deletions src/Symfony/Component/Webhook/Exception/RuntimeException.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@

/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 6.3
*/
class RuntimeException extends \RuntimeException implements ExceptionInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@

/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 6.3
*/
class SendWebhookHandler
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@

/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 6.3
*/
class SendWebhookMessage
{
Expand Down
5 changes: 0 additions & 5 deletions src/Symfony/Component/Webhook/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,6 @@ Webhook Component

Symfony Webhook eases sending and consuming webhooks.

**This Component is experimental**.
[Experimental features](https://symfony.com/doc/current/contributing/code/experimental.html)
are not covered by Symfony's
[Backward Compatibility Promise](https://symfony.com/doc/current/contributing/code/bc.html).

Resources
---------

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@

/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 6.3
*/
final class HeaderSignatureConfigurator implements RequestConfiguratorInterface
{
Expand Down
2 changes: 0 additions & 2 deletions src/Symfony/Component/Webhook/Server/HeadersConfigurator.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@

/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 6.3
*/
final class HeadersConfigurator implements RequestConfiguratorInterface
{
Expand Down
2 changes: 0 additions & 2 deletions src/Symfony/Component/Webhook/Server/JsonBodyConfigurator.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@

/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 6.3
*/
final class JsonBodyConfigurator implements RequestConfiguratorInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@

/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 6.3
*/
interface RequestConfiguratorInterface
{
Expand Down
2 changes: 0 additions & 2 deletions src/Symfony/Component/Webhook/Server/Transport.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@

/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 6.3
*/
class Transport implements TransportInterface
{
Expand Down
2 changes: 0 additions & 2 deletions src/Symfony/Component/Webhook/Server/TransportInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@

/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 6.3
*/
interface TransportInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@

/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @experimental in 6.3
*/
abstract class AbstractRequestParserTestCase extends TestCase
{
Expand Down
0