Skip to content

Commit

Permalink
Release 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
KernelPryanic committed Sep 6, 2022
1 parent d8c188a commit 389e8dd
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,51 @@
<a name="0.3.0"></a>
## [0.3.0](https://github.com/graph-guard/ggproxy/compare/0.2.0...0.3.0) (2022-09-06)

### Feat

* Allow submatching - any set of matching fields and valid arguments are allowed to pass. The code snippet below shows a short example:
```
## gqt
query {
a(
a_0: val = 0
a_1: val = 1
) {
a0
a1
}
}
## gql
query {
a(
a_0: 0
) {
a0
}
}
## PASSED
```

* Add `combine N { ... }` blocks. These blocks allow to make combinations of **up to N** fields. Instead of defining many templates, they can be combined sometimes:
```
query {
combine 2 {
a
b
c
}
}
### Replaces 3 separate templates
```

### Fix

* Fix panic in API match field on subsequent requests
* Fix shell broken pipe handling

<a name="0.2.0"></a>
## 0.2.0 (2022-08-29)

Expand Down

0 comments on commit 389e8dd

Please sign in to comment.