Skip to content

Commit 798ee89

Browse files
authored
chore: Upgrade dependencies (#384)
1 parent 2dd16e4 commit 798ee89

6 files changed

Lines changed: 203 additions & 226 deletions

File tree

packages/graphql_codegen/CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
1+
# 1.2.0
2+
3+
- Upgrade dependencies and dart SDK version.
4+
15
# 1.1.1
26

37
- Update `is` operators.
48

59
# 1.1.0
610

7-
- Add new experimental input builders for better `null` / *undefined* handling. Enable by setting `EXPERIMENTAL_enable_input_builders: true`.
11+
- Add new experimental input builders for better `null` / _undefined_ handling. Enable by setting `EXPERIMENTAL_enable_input_builders: true`.
812

913
# 1.0.1
1014

packages/graphql_codegen/lib/src/printer/utils.dart

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,6 @@ class NamePrinter {
4747
return isAction ? 'query' : 'Query';
4848
case OperationType.subscription:
4949
return isAction ? 'subscribe' : 'Subscription';
50-
default:
51-
throw new UnsupportedError("Unsupported opreation type");
5250
}
5351
}
5452
if (segment is FragmentNameSegment) {

0 commit comments

Comments
 (0)