Thanks to visit codestin.com
Credit goes to github.com

Skip to content
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
[Webhook] Mark component as non experimental
  • Loading branch information
fabpot committed Aug 3, 2023
commit feabb1e0f6ea52f219501f895715bf5c4d5d056b
5 changes: 5 additions & 0 deletions src/Symfony/Component/Webhook/CHANGELOG.md
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 <[email protected]>
*
* @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 <[email protected]>
*
* @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 <[email protected]>
*
* @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 <[email protected]>
*
* @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 <[email protected]>
*
* @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 <[email protected]>
*
* @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 <[email protected]>
*
* @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 <[email protected]>
*
* @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 <[email protected]>
*
* @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 <[email protected]>
*
* @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 <[email protected]>
*
* @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 <[email protected]>
*
* @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 <[email protected]>
*
* @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 <[email protected]>
*
* @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 <[email protected]>
*
* @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 <[email protected]>
*
* @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 <[email protected]>
*
* @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 <[email protected]>
*
* @experimental in 6.3
*/
abstract class AbstractRequestParserTestCase extends TestCase
{
Expand Down