File tree Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
9
10
10
## Unreleased
11
11
12
+ ## v6.2.0
13
+
14
+ ### Added
15
+
16
+ - Add a new scalar ` BigInt `
17
+
12
18
## v6.1.0
13
19
14
20
### Added
Original file line number Diff line number Diff line change @@ -18,6 +18,10 @@ A collection of custom scalar types for usage with https://github.com/webonyx/gr
18
18
You can use the provided Scalars just like any other type in your schema definition.
19
19
Check [ SchemaUsageTest] ( tests/SchemaUsageTest.php ) for an example.
20
20
21
+ ### [ BigInt] ( src/BigInt.php )
22
+
23
+ An arbitrarily long sequence of digits that represents a big integer.
24
+
21
25
### [ Date] ( src/Date.php )
22
26
23
27
A date string with format ` Y-m-d ` , e.g. ` 2011-05-23 ` .
Original file line number Diff line number Diff line change 5
5
class BigInt extends Regex
6
6
{
7
7
public ?string $ description = <<<'DESCRIPTION'
8
- A hexadecimal color is specified with: `#RRGGBB`, where `RR` (red), `GG` (green) and `BB` (blue)
9
- are hexadecimal integers between `00` and `FF` specifying the intensity of the color.
8
+ An arbitrarily long sequence of digits that represents a big integer.
10
9
DESCRIPTION;
11
10
12
11
public static function regex (): string
You can’t perform that action at this time.
0 commit comments