Skip to content

Commit 5cda9e2

Browse files
committed
Merge branch '7.4' into 8.0
* 7.4: JsonPath, JsonStreamer and ObjectMapper are no longer experimental [Console] Add getter for the original command "code" object [Console] Add getter for the original command "code" object add missing changelog entry [Routing][FrameworkBundle] Auto-register routes from attributes found on controller services use the same transport for both Mailtrap's live and sandbox API [DependencyInjection][Routing] Add JSON schema for validating and autocompleting YAML config files
2 parents f8a1dfd + 63367ed commit 5cda9e2

23 files changed

+1
-47
lines changed

Attribute/JsonStreamable.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313

1414
/**
1515
* @author Mathias Arlaud <mathias.arlaud@gmail.com>
16-
*
17-
* @experimental
1816
*/
1917
#[\Attribute(\Attribute::TARGET_CLASS)]
2018
final class JsonStreamable

Attribute/StreamedName.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
* Defines the streamed property name.
1616
*
1717
* @author Mathias Arlaud <mathias.arlaud@gmail.com>
18-
*
19-
* @experimental
2018
*/
2119
#[\Attribute(\Attribute::TARGET_PROPERTY)]
2220
final class StreamedName

Attribute/ValueTransformer.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@
1919
* that will be used to transform the property data during stream reading/writing.
2020
*
2121
* @author Mathias Arlaud <mathias.arlaud@gmail.com>
22-
*
23-
* @experimental
2422
*/
2523
#[\Attribute(\Attribute::TARGET_PROPERTY)]
2624
class ValueTransformer

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ CHANGELOG
44
7.4
55
---
66

7+
* The component is not marked as `@experimental` anymore
78
* Remove `nikic/php-parser` dependency
89
* Add `_current_object` to the context passed to value transformers during write operations
910
* Add `include_null_properties` option to encode the properties with `null` value

Exception/ExceptionInterface.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313

1414
/**
1515
* @author Mathias Arlaud <mathias.arlaud@gmail.com>
16-
*
17-
* @experimental
1816
*/
1917
interface ExceptionInterface extends \Throwable
2018
{

Exception/InvalidArgumentException.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313

1414
/**
1515
* @author Mathias Arlaud <mathias.arlaud@gmail.com>
16-
*
17-
* @experimental
1816
*/
1917
class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface
2018
{

Exception/InvalidStreamException.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313

1414
/**
1515
* @author Mathias Arlaud <mathias.arlaud@gmail.com>
16-
*
17-
* @experimental
1816
*/
1917
final class InvalidStreamException extends UnexpectedValueException
2018
{

Exception/LogicException.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313

1414
/**
1515
* @author Mathias Arlaud <mathias.arlaud@gmail.com>
16-
*
17-
* @experimental
1816
*/
1917
class LogicException extends \LogicException implements ExceptionInterface
2018
{

Exception/NotEncodableValueException.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313

1414
/**
1515
* @author Mathias Arlaud <mathias.arlaud@gmail.com>
16-
*
17-
* @experimental
1816
*/
1917
class NotEncodableValueException extends UnexpectedValueException
2018
{

Exception/RuntimeException.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313

1414
/**
1515
* @author Mathias Arlaud <mathias.arlaud@gmail.com>
16-
*
17-
* @experimental
1816
*/
1917
class RuntimeException extends \RuntimeException implements ExceptionInterface
2018
{

0 commit comments

Comments
 (0)