Skip to content

Commit c56a093

Browse files
committed
Update changelog and bump up the version.
1 parent 9517295 commit c56a093

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

Changelog.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
### 0.10.1
2+
- Remove debug option from module settigs in favor of `$config-debug = true|false` API.
3+
- From now only templates selected as legal and those that have Access control enabled will be served.
4+
- Remove PageUnionType in favor of PageIntefaceType.
5+
- Introduce UserType for pages that represent system users.
6+
- Mark fields NonNull if they are marked as `$field->required = true`.
7+
- Implement simple create Mutation on a per template basis.
8+
19
### 0.9.1
210
- Fix GraphQLServerUrl property bug.
311

ProcessGraphQL.module

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class ProcessGraphQL extends Process implements Module {
1313
{
1414
return array(
1515
'title' => 'GraphQL',
16-
'version' => '0.9.1',
16+
'version' => '0.10.0',
1717
'summary' => 'GraphQL for ProcessWire.',
1818
'href' => 'https://github.com/dadish/ProcessGraphql',
1919
'singular' => true,

src/Field/Mutation/CreateTemplatedPage.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
use Youshido\GraphQL\Field\AbstractField;
66
use Youshido\GraphQL\Execution\ResolveInfo;
77
use Youshido\GraphQL\Exception\ValidationException;
8+
use Youshido\GraphQL\Exception\ResolveException;
89
use Youshido\GraphQL\Config\Field\FieldConfig;
910
use Youshido\GraphQL\Field\InputField;
1011

0 commit comments

Comments
 (0)