Skip to content

Commit

Permalink
release: Spring Evolution 🌷
Browse files Browse the repository at this point in the history
  • Loading branch information
LastDragon-ru committed Mar 1, 2024
1 parent ea0d3fa commit 551536e
Show file tree
Hide file tree
Showing 13 changed files with 156 additions and 29 deletions.
12 changes: 11 additions & 1 deletion metadata.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "5.4.0",
"version": "6.0.0",
"require": [],
"requirements": {
"HEAD": {
Expand All @@ -12,6 +12,16 @@
"^8.1"
]
},
"6.0.0": {
"laravel/framework": [
"^10.0.0"
],
"php": [
"^8.3",
"^8.2",
"^8.1"
]
},
"5.6.0": {
"laravel/framework": [
"^10.0.0",
Expand Down
12 changes: 11 additions & 1 deletion packages/core/metadata.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "5.4.0",
"version": "6.0.0",
"require": [],
"requirements": {
"HEAD": {
Expand All @@ -12,6 +12,16 @@
"^8.1"
]
},
"6.0.0": {
"laravel/framework": [
"^10.0.0"
],
"php": [
"^8.3",
"^8.2",
"^8.1"
]
},
"5.6.0": {
"laravel/framework": [
"^10.0.0",
Expand Down
12 changes: 11 additions & 1 deletion packages/documentator/metadata.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "5.4.0",
"version": "6.0.0",
"require": [],
"requirements": {
"HEAD": {
Expand All @@ -12,6 +12,16 @@
"^8.1"
]
},
"6.0.0": {
"laravel/framework": [
"^10.0.0"
],
"php": [
"^8.3",
"^8.2",
"^8.1"
]
},
"5.6.0": {
"laravel/framework": [
"^10.0.0",
Expand Down
12 changes: 11 additions & 1 deletion packages/eloquent/metadata.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "5.4.0",
"version": "6.0.0",
"require": [],
"requirements": {
"HEAD": {
Expand All @@ -12,6 +12,16 @@
"^8.1"
]
},
"6.0.0": {
"laravel/framework": [
"^10.0.0"
],
"php": [
"^8.3",
"^8.2",
"^8.1"
]
},
"5.6.0": {
"laravel/framework": [
"^10.0.0",
Expand Down
12 changes: 11 additions & 1 deletion packages/formatter/metadata.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "5.4.0",
"version": "6.0.0",
"require": [],
"requirements": {
"HEAD": {
Expand All @@ -12,6 +12,16 @@
"^8.1"
]
},
"6.0.0": {
"laravel/framework": [
"^10.0.0"
],
"php": [
"^8.3",
"^8.2",
"^8.1"
]
},
"5.6.0": {
"laravel/framework": [
"^10.0.0",
Expand Down
12 changes: 11 additions & 1 deletion packages/graphql-printer/metadata.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "5.4.0",
"version": "6.0.0",
"require": {
"php": "PHP",
"webonyx/graphql-php": "`webonyx/graphql-php`"
Expand All @@ -15,6 +15,16 @@
"^15.4.0"
]
},
"6.0.0": {
"php": [
"^8.3",
"^8.2",
"^8.1"
],
"webonyx/graphql-php": [
"^15.4.0"
]
},
"5.6.0": {
"php": [
"^8.3",
Expand Down
45 changes: 28 additions & 17 deletions packages/graphql/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -258,16 +258,18 @@ on

directive @searchByOperatorAllOf
on
| ENUM
| INPUT_FIELD_DEFINITION
| SCALAR

directive @searchByOperatorAnyOf
on
| ENUM
| INPUT_FIELD_DEFINITION
| SCALAR

directive @searchByOperatorCondition
on
| INPUT_FIELD_DEFINITION

directive @searchByOperatorContains
on
| ENUM
Expand All @@ -288,7 +290,6 @@ on

directive @searchByOperatorField
on
| ENUM
| INPUT_FIELD_DEFINITION
| SCALAR

Expand All @@ -306,7 +307,6 @@ on

directive @searchByOperatorNot
on
| ENUM
| INPUT_FIELD_DEFINITION
| SCALAR

Expand Down Expand Up @@ -353,37 +353,48 @@ on
| SCALAR

"""
Available conditions for `type User` (only one property allowed at a time).
Available conditions for `type User` (only one field allowed at a time).
"""
input SearchByConditionUser {
"""
Field condition.
"""
id: SearchByScalarID
@searchByOperatorCondition

"""
Field condition.
"""
name: SearchByScalarString
@searchByOperatorCondition
}

"""
Available conditions for `type User` (only one field allowed at a time).
"""
input SearchByRootUser {
"""
All of the conditions must be true.
"""
allOf: [SearchByConditionUser!]
allOf: [SearchByRootUser!]
@searchByOperatorAllOf

"""
Any of the conditions must be true.
"""
anyOf: [SearchByConditionUser!]
anyOf: [SearchByRootUser!]
@searchByOperatorAnyOf

"""
Field condition.
"""
id: SearchByScalarID
@searchByOperatorField

"""
Field condition.
Field.
"""
name: SearchByScalarString
field: SearchByConditionUser
@searchByOperatorField

"""
Not.
"""
not: SearchByConditionUser
not: SearchByRootUser
@searchByOperatorNot
}

Expand Down Expand Up @@ -510,7 +521,7 @@ type Query {
List multiple users.
"""
users(
where: SearchByConditionUser
where: SearchByRootUser
@searchBy
): [User!]!
@all
Expand Down
15 changes: 14 additions & 1 deletion packages/graphql/metadata.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "5.4.0",
"version": "6.0.0",
"require": {
"php": "PHP",
"laravel/framework": "Laravel",
Expand All @@ -19,6 +19,19 @@
"^8.1"
]
},
"6.0.0": {
"laravel/framework": [
"^10.0.0"
],
"nuwave/lighthouse": [
"^6.5.0"
],
"php": [
"^8.3",
"^8.2",
"^8.1"
]
},
"5.6.0": {
"laravel/framework": [
"^10.0.0",
Expand Down
12 changes: 11 additions & 1 deletion packages/migrator/metadata.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "5.4.0",
"version": "6.0.0",
"require": [],
"requirements": {
"HEAD": {
Expand All @@ -12,6 +12,16 @@
"^8.1"
]
},
"6.0.0": {
"laravel/framework": [
"^10.0.0"
],
"php": [
"^8.3",
"^8.2",
"^8.1"
]
},
"5.6.0": {
"laravel/framework": [
"^10.0.0",
Expand Down
12 changes: 11 additions & 1 deletion packages/serializer/metadata.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "5.4.0",
"version": "6.0.0",
"require": [],
"requirements": {
"HEAD": {
Expand All @@ -12,6 +12,16 @@
"^8.1"
]
},
"6.0.0": {
"laravel/framework": [
"^10.0.0"
],
"php": [
"^8.3",
"^8.2",
"^8.1"
]
},
"5.6.0": {
"laravel/framework": [
"^10.0.0",
Expand Down
12 changes: 11 additions & 1 deletion packages/spa/metadata.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "5.4.0",
"version": "6.0.0",
"require": [],
"requirements": {
"HEAD": {
Expand All @@ -12,6 +12,16 @@
"^8.1"
]
},
"6.0.0": {
"laravel/framework": [
"^10.0.0"
],
"php": [
"^8.3",
"^8.2",
"^8.1"
]
},
"5.6.0": {
"laravel/framework": [
"^10.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/testing/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ This package provides various useful asserts for [PHPUnit](https://phpunit.de/)
| | `^9.0.0` | `5.0.0-beta.0 ⋯ 0.12.0` |
| | `^8.22.1` | `3.0.0 ⋯ 0.2.0` |
| | `^8.0` | `0.1.0` |
| PHPUnit | `^10.1.0` | `HEAD` |
| PHPUnit | `^10.1.0` | `HEAD` , `6.0.0` |

[//]: # (end: 876a9177c0e8e3722ac84e8f3888245fc9070a64a87dedfe7c9d9ba2a13b374b)

Expand Down
15 changes: 14 additions & 1 deletion packages/testing/metadata.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "5.4.0",
"version": "6.0.0",
"require": {
"php": "PHP",
"laravel/framework": "Laravel",
Expand All @@ -19,6 +19,19 @@
"^10.1.0"
]
},
"6.0.0": {
"laravel/framework": [
"^10.0.0"
],
"php": [
"^8.3",
"^8.2",
"^8.1"
],
"phpunit/phpunit": [
"^10.1.0"
]
},
"5.6.0": {
"laravel/framework": [
"^10.0.0",
Expand Down

0 comments on commit 551536e

Please sign in to comment.