diff --git a/.changeset/big-ravens-drum.md b/.changeset/big-ravens-drum.md deleted file mode 100644 index b3fd5285..00000000 --- a/.changeset/big-ravens-drum.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@gql.tada/cli-utils": minor ---- - -Add `gql.tada/ts-plugin` to the init and doctor command diff --git a/.changeset/gentle-elephants-breathe.md b/.changeset/gentle-elephants-breathe.md deleted file mode 100644 index fb1e9a02..00000000 --- a/.changeset/gentle-elephants-breathe.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@gql.tada/cli-utils": patch ---- - -Fix regression omitting the exit status code from the CLI. Failing commands will now correctly output exit code `1` instead of `0` again. diff --git a/.changeset/hungry-needles-rule.md b/.changeset/hungry-needles-rule.md deleted file mode 100644 index f81738ce..00000000 --- a/.changeset/hungry-needles-rule.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"gql.tada": patch ---- - -Fix `@defer`, `@skip`, and `@include` optional fragments causing types to become exponentially more complex to evaluate, causing a recursive type error. Instead, merging field types and sub-selections from fragments is now separated, as needed. diff --git a/.changeset/spotty-crabs-report.md b/.changeset/spotty-crabs-report.md deleted file mode 100644 index 32854138..00000000 --- a/.changeset/spotty-crabs-report.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"gql.tada": minor -"@gql.tada/internal": patch ---- - -Add `gql.tada/ts-plugin` alias for `@0no-co/graphqlsp` diff --git a/CHANGELOG.md b/CHANGELOG.md index 801a02c5..f918657e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # gql.tada +## 1.8.0 + +### Minor Changes + +- Add `gql.tada/ts-plugin` alias for `@0no-co/graphqlsp` + Submitted by [@kitten](https://github.com/kitten) (See [#62](https://github.com/0no-co/gql.tada/pull/62)) + +### Patch Changes + +- ⚠️ Fix `@defer`, `@skip`, and `@include` optional fragments causing types to become exponentially more complex to evaluate, causing a recursive type error. Instead, merging field types and sub-selections from fragments is now separated, as needed + Submitted by [@kitten](https://github.com/kitten) (See [#319](https://github.com/0no-co/gql.tada/pull/319)) +- Updated dependencies (See [#62](https://github.com/0no-co/gql.tada/pull/62), [#329](https://github.com/0no-co/gql.tada/pull/329), and [#62](https://github.com/0no-co/gql.tada/pull/62)) + - @gql.tada/cli-utils@1.4.0 + - @gql.tada/internal@1.0.2 + ## 1.7.6 ### Patch Changes diff --git a/package.json b/package.json index 69f970fa..e9a09a91 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.7.6", + "version": "1.8.0", "author": "0no.co ", "source": "./src/index.ts", "main": "./dist/gql-tada", diff --git a/packages/cli-utils/CHANGELOG.md b/packages/cli-utils/CHANGELOG.md index 42375a08..bb9e56c8 100644 --- a/packages/cli-utils/CHANGELOG.md +++ b/packages/cli-utils/CHANGELOG.md @@ -1,5 +1,19 @@ # @gql.tada/cli-utils +## 1.4.0 + +### Minor Changes + +- Add `gql.tada/ts-plugin` to the init and doctor command + Submitted by [@kitten](https://github.com/kitten) (See [#62](https://github.com/0no-co/gql.tada/pull/62)) + +### Patch Changes + +- ⚠️ Fix regression omitting the exit status code from the CLI. Failing commands will now correctly output exit code `1` instead of `0` again + Submitted by [@kitten](https://github.com/kitten) (See [#329](https://github.com/0no-co/gql.tada/pull/329)) +- Updated dependencies (See [#62](https://github.com/0no-co/gql.tada/pull/62)) + - @gql.tada/internal@1.0.2 + ## 1.3.10 ### Patch Changes diff --git a/packages/cli-utils/package.json b/packages/cli-utils/package.json index d81ae92b..37bff235 100644 --- a/packages/cli-utils/package.json +++ b/packages/cli-utils/package.json @@ -1,6 +1,6 @@ { "name": "@gql.tada/cli-utils", - "version": "1.3.10", + "version": "1.4.0", "public": true, "description": "Main logic for gql.tada’s CLI tool.", "author": "0no.co ", diff --git a/packages/internal/CHANGELOG.md b/packages/internal/CHANGELOG.md index 314beea3..4a58fe35 100644 --- a/packages/internal/CHANGELOG.md +++ b/packages/internal/CHANGELOG.md @@ -1,5 +1,12 @@ # @gql.tada/internal +## 1.0.2 + +### Patch Changes + +- Add `gql.tada/ts-plugin` alias for `@0no-co/graphqlsp` + Submitted by [@kitten](https://github.com/kitten) (See [#62](https://github.com/0no-co/gql.tada/pull/62)) + ## 1.0.1 ### Patch Changes diff --git a/packages/internal/package.json b/packages/internal/package.json index 5f9bf7b1..3adb5fac 100644 --- a/packages/internal/package.json +++ b/packages/internal/package.json @@ -1,6 +1,6 @@ { "name": "@gql.tada/internal", - "version": "1.0.1", + "version": "1.0.2", "public": true, "description": "Internal logic for gql.tada’s CLI tool and GraphQLSP.", "author": "0no.co ", diff --git a/website/CHANGELOG.md b/website/CHANGELOG.md index e31f2885..267f767b 100644 --- a/website/CHANGELOG.md +++ b/website/CHANGELOG.md @@ -1,5 +1,12 @@ # @gql.tada/website-vitepress +## 0.0.29 + +### Patch Changes + +- Updated dependencies (See [#319](https://github.com/0no-co/gql.tada/pull/319) and [#62](https://github.com/0no-co/gql.tada/pull/62)) + - gql.tada@1.8.0 + ## 0.0.28 ### Patch Changes diff --git a/website/package.json b/website/package.json index e4fce2ee..8fb98815 100644 --- a/website/package.json +++ b/website/package.json @@ -1,6 +1,6 @@ { "name": "@gql.tada/website-vitepress", - "version": "0.0.28", + "version": "0.0.29", "private": true, "scripts": { "dev": "vitepress dev",