8000 feature #40010 [Uid] remove "experimental" status (nicolas-grekas) · symfony/symfony@d92ad13 · GitHub
[go: up one dir, main page]

Skip to content

Commit d92ad13

Browse files
committed
feature #40010 [Uid] remove "experimental" status (nicolas-grekas)
This PR was merged into the 5.3-dev branch. Discussion ---------- [Uid] remove "experimental" status | Q | A | ------------- | --- | Branch? | 5.x | Bug fix? | no | New feature? | yes | Deprecations? | no | Tickets | - | License | MIT | Doc PR | - Commits ------- 2e09556 [Uid] remove "experimental" status
2 parents 8f16370 + 2e09556 commit d92ad13

File tree

11 files changed

+1
-23
lines changed

11 files changed

+1
-23
lines changed

src/Symfony/Component/Uid/AbstractUid.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@
1212
namespace Symfony\Component\Uid;
1313

1414
/**
15-
* @experimental in 5.3
16-
*
1715
* @author Nicolas Grekas <p@tchwork.com>
1816
*/
1917
abstract class AbstractUid implements \JsonSerializable

src/Symfony/Component/Uid/CHANGELOG.md

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

7+
* The component is not marked as `@experimental` anymore
78
* Add `AbstractUid::fromBinary()`, `AbstractUid::fromBase58()`, `AbstractUid::fromBase32()` and `AbstractUid::fromRfc4122()`
89
* [BC BREAK] Replace `UuidV1::getTime()`, `UuidV6::getTime()` and `Ulid::getTime()` by `UuidV1::getDateTime()`, `UuidV6::getDateTime()` and `Ulid::getDateTime()`
910
* Add `Uuid::NAMESPACE_*` constants from RFC4122

src/Symfony/Component/Uid/NilUuid.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@
1212
namespace Symfony\Component\Uid;
1313

1414
/**
15-
* @experimental in 5.3
16-
*
1715
* @author Grégoire Pineau <lyrixx@lyrixx.info>
1816
*/
1917
class NilUuid extends Uuid

src/Symfony/Component/Uid/README.md

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

44
The UID component provides an object-oriented API to generate and represent UIDs.
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
Resources
127
---------
138

src/Symfony/Component/Uid/Ulid.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@
1616
*
1717
* @see https://github.com/ulid/spec
1818
*
19-
* @experimental in 5.3
20-
*
2119
* @author Nicolas Grekas <p@tchwork.com>
2220
*/
2321
class Ulid extends AbstractUid

src/Symfony/Component/Uid/Uuid.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@
1212
namespace Symfony\Component\Uid;
1313

1414
/**
15-
* @experimental in 5.3
16-
*
1715
* @author Grégoire Pineau <lyrixx@lyrixx.info>
1816
*
1917
* @see https://tools.ietf.org/html/rfc4122#appendix-C for details about namespaces

src/Symfony/Component/Uid/UuidV1.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@
1414
/**
1515
* A v1 UUID contains a 60-bit timestamp and 62 extra unique bits.
1616
*
17-
* @experimental in 5.3
18-
*
1917
* @author Grégoire Pineau <lyrixx@lyrixx.info>
2018
*/
2119
class UuidV1 extends Uuid

src/Symfony/Component/Uid/UuidV3.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@
1616
*
1717
* Use Uuid::v3() to compute one.
1818
*
19-
* @experimental in 5.3
20-
*
2119
* @author Grégoire Pineau <lyrixx@lyrixx.info>
2220
*/
2321
class UuidV3 extends Uuid

src/Symfony/Component/Uid/UuidV4.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@
1414
/**
1515
* A v4 UUID contains a 122-bit random number.
1616
*
17-
* @experimental in 5.3
18-
*
1917
* @author Grégoire Pineau <lyrixx@lyrixx.info>
2018
*/
2119
class UuidV4 extends Uuid

src/Symfony/Component/Uid/UuidV5.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@
1616
*
1717
* Use Uuid::v5() to compute one.
1818
*
19-
* @experimental in 5.3
20-
*
2119
* @author Grégoire Pineau <lyrixx@lyrixx.info>
2220
*/
2321
class UuidV5 extends Uuid

0 commit comments

Comments
 (0)
0