diff --git a/.changeset/dry-seals-laugh.md b/.changeset/dry-seals-laugh.md deleted file mode 100644 index 554c34db..00000000 --- a/.changeset/dry-seals-laugh.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'gql.tada': minor ---- - -Add `maskFragments` to cast data to fragment masks of a given set of fragments. diff --git a/.changeset/grumpy-dancers-jam.md b/.changeset/grumpy-dancers-jam.md deleted file mode 100644 index 28f2be0f..00000000 --- a/.changeset/grumpy-dancers-jam.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'gql.tada': patch ---- - -Tighten up type strictness to not accept operation documents where fragment documents are expected. diff --git a/.changeset/mighty-jokes-repair.md b/.changeset/mighty-jokes-repair.md deleted file mode 100644 index a85e64d8..00000000 --- a/.changeset/mighty-jokes-repair.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'gql.tada': minor ---- - -Add `graphql.scalar()` utility to retrieve or type check the type of scalars and enums. diff --git a/.changeset/witty-moose-kiss.md b/.changeset/witty-moose-kiss.md deleted file mode 100644 index 9d179d47..00000000 --- a/.changeset/witty-moose-kiss.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'gql.tada': minor ---- - -Add `unsafe_readResult` to unsafely cast data to the result data of a given document. diff --git a/CHANGELOG.md b/CHANGELOG.md index 070184d3..34e2de0a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # gql.tada +## 1.2.0 + +### Minor Changes + +- Add `maskFragments` to cast data to fragment masks of a given set of fragments + Submitted by [@kitten](https://github.com/kitten) (See [#43](https://github.com/0no-co/gql.tada/pull/43)) +- Add `graphql.scalar()` utility to retrieve or type check the type of scalars and enums + Submitted by [@kitten](https://github.com/kitten) (See [#45](https://github.com/0no-co/gql.tada/pull/45)) +- Add `unsafe_readResult` to unsafely cast data to the result data of a given document + Submitted by [@kitten](https://github.com/kitten) (See [#43](https://github.com/0no-co/gql.tada/pull/43)) + +### Patch Changes + +- Tighten up type strictness to not accept operation documents where fragment documents are expected + Submitted by [@kitten](https://github.com/kitten) (See [#41](https://github.com/0no-co/gql.tada/pull/41)) + ## 1.1.0 ### Minor Changes diff --git a/package.json b/package.json index a84b1b18..2fe3833a 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "gql.tada", "description": "The spec-compliant & magical GraphQL query language engine in the TypeScript type system", - "version": "1.1.0", + "version": "1.2.0", "author": "0no.co ", "source": "./src/index.ts", "main": "./dist/gql-tada",