Skip to content

Commit

Permalink
Version Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jan 22, 2024
1 parent 67a8cae commit 7f10d52
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 28 deletions.
5 changes: 0 additions & 5 deletions .changeset/dirty-knives-teach.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/fair-pillows-repair.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/four-bats-impress.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/little-dragons-repeat.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/sweet-birds-grab.md

This file was deleted.

20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# gql.tada

## 1.1.0

### Minor Changes

- Support `@_optional` and `@_required` directives on fields overriding the field types.
When used, `@_required` can turn a nullable type into a non-nullable, and `@_optional`
can turn non-nullable fields into nullable ones. (See [“Client-Controlled Nullability” in Graphcache for an example of a client implementing this.](https://formidable.com/open-source/urql/docs/graphcache/local-directives/#client-controlled-nullability))
Submitted by [@kitten](https://github.com/kitten) (See [#32](https://github.com/0no-co/gql.tada/pull/32))
- Add support for `@_unmask` directive on fragments causing the fragment type to not be masked. `FragmentOf<>` will return the full result type of fragments when they’re annotated with `@_unmask` and spreading these unmasked fragments into parent documents will use their full type
Submitted by [@kitten](https://github.com/kitten) (See [#31](https://github.com/0no-co/gql.tada/pull/31))

### Patch Changes

- Format `TadaDocumentNode` output’s third generic differently. The output of fragment definitions will now be more readable (e.g. `{ fragment: 'Name', on: 'Type', masked: true }`)
Submitted by [@kitten](https://github.com/kitten) (See [#31](https://github.com/0no-co/gql.tada/pull/31))
- Improve performance of selection and variables inference
Submitted by [@kitten](https://github.com/kitten) (See [#35](https://github.com/0no-co/gql.tada/pull/35))
- Improve performance of GraphQL document parser
Submitted by [@kitten](https://github.com/kitten) (See [#34](https://github.com/0no-co/gql.tada/pull/34))

## 1.0.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "gql.tada",
"description": "The spec-compliant & magical GraphQL query language engine in the TypeScript type system",
"version": "1.0.3",
"version": "1.1.0",
"author": "0no.co <hi@0no.co>",
"source": "./src/index.ts",
"main": "./dist/gql-tada",
Expand Down

0 comments on commit 7f10d52

Please sign in to comment.