diff --git a/.changeset/chilly-cats-smell.md b/.changeset/chilly-cats-smell.md deleted file mode 100644 index d6ea1740..00000000 --- a/.changeset/chilly-cats-smell.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'gql.tada': patch ---- - -Replace redundant `$tada.ref` value on `$tada.fragmentRefs` definitions for masked fragments with typename string literal. The record for fragment masks is already namespaced, so there wasn't a need to use a symbol value here, and this further increases readability and usefulness. diff --git a/.changeset/wise-flowers-study.md b/.changeset/wise-flowers-study.md deleted file mode 100644 index 44f37015..00000000 --- a/.changeset/wise-flowers-study.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'gql.tada': patch ---- - -Allow `readFragment()` to accept the document as a generic rather than a (runtime value) argument. This replaces the complex mapping type for input arguments, and hence drops the (undocumented) support for nested arrays being passed to it. diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d1a309e..e184e29b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # gql.tada +## 1.3.3 + +### Patch Changes + +- Replace redundant `$tada.ref` value on `$tada.fragmentRefs` definitions for masked fragments with typename string literal. The record for fragment masks is already namespaced, so there wasn't a need to use a symbol value here, and this further increases readability and usefulness + Submitted by [@kitten](https://github.com/kitten) (See [#126](https://github.com/0no-co/gql.tada/pull/126)) +- Allow `readFragment()` to accept the document as a generic rather than a (runtime value) argument. This replaces the complex mapping type for input arguments, and hence drops the (undocumented) support for nested arrays being passed to it + Submitted by [@kitten](https://github.com/kitten) (See [#128](https://github.com/0no-co/gql.tada/pull/128)) + ## 1.3.2 ### Patch Changes diff --git a/package.json b/package.json index d8f435d7..8e83bdf2 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.3.2", + "version": "1.3.3", "author": "0no.co ", "source": "./src/index.ts", "main": "./dist/gql-tada",