Skip to content

Commit 24377b0

Browse files
xabbuhfabpot
authored andcommitted
JsonPath, JsonStreamer and ObjectMapper are no longer experimental
1 parent c2a6be6 commit 24377b0

18 files changed

+5
-37
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
CHANGELOG
22
=========
33

4+
7.4
5+
---
6+
7+
* The component is not marked as `@experimental` anymore
8+
49
7.3
510
---
611

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 Alexandre Daubois <[email protected]>
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 Alexandre Daubois <[email protected]>
16-
*
17-
* @experimental
1816
*/
1917
class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface
2018
{

Exception/InvalidJsonPathException.php

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

1414
/**
1515
* @author Alexandre Daubois <[email protected]>
16-
*
17-
* @experimental
1816
*/
1917
class InvalidJsonPathException extends \LogicException implements ExceptionInterface
2018
{

Exception/InvalidJsonStringInputException.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
* Thrown when a string passed as an input is not a valid JSON string, e.g. in {@see JsonCrawler}.
1616
*
1717
* @author Alexandre Daubois <[email protected]>
18-
*
19-
* @experimental
2018
*/
2119
class InvalidJsonStringInputException extends InvalidArgumentException
2220
{

Exception/JsonCrawlerException.php

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

1414
/**
1515
* @author Alexandre Daubois <[email protected]>
16-
*
17-
* @experimental
1816
*/
1917
class JsonCrawlerException extends \RuntimeException implements ExceptionInterface
2018
{

JsonCrawler.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,6 @@
2626
* @see https://datatracker.ietf.org/doc/html/rfc9535
2727
*
2828
* @author Alexandre Daubois <[email protected]>
29-
*
30-
* @experimental
3129
*/
3230
final class JsonCrawler implements JsonCrawlerInterface
3331
{

JsonCrawlerInterface.php

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

1717
/**
1818
* @author Alexandre Daubois <[email protected]>
19-
*
20-
* @experimental
2119
*/
2220
interface JsonCrawlerInterface
2321
{

JsonPath.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
* @author Alexandre Daubois <[email protected]>
1616
*
1717
* @immutable
18-
*
19-
* @experimental
2018
*/
2119
final class JsonPath
2220
{

README.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,6 @@ JsonPath Component
33

44
The JsonPath component eases JSON navigation using the JSONPath syntax as described in [RFC 9535](https://www.rfc-editor.org/rfc/rfc9535.html).
55

6-
**This Component is experimental**.
7-
[Experimental features](https://symfony.com/doc/current/contributing/code/experimental.html)
8-
are not covered by Symfony's
9-
[Backward Compatibility Promise](https://symfony.com/doc/current/contributing/code/bc.html).
10-
116
Getting Started
127
---------------
138

0 commit comments

Comments
 (0)