diff --git a/.changeset/cuddly-beers-hug.md b/.changeset/cuddly-beers-hug.md deleted file mode 100644 index 1fb3c943..00000000 --- a/.changeset/cuddly-beers-hug.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@gql.tada/internal": minor ---- - -Add support for querying `isOneOf` in the introspection diff --git a/.changeset/nice-experts-float.md b/.changeset/nice-experts-float.md deleted file mode 100644 index b7f2daf0..00000000 --- a/.changeset/nice-experts-float.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@gql.tada/cli-utils": patch -"@gql.tada/internal": patch ---- - -Update CLI and `@gql.tada/internal` to variably support graphql `^15.5.0` in addition to the preferred v16, and include future support for v17. diff --git a/.changeset/pink-roses-battle.md b/.changeset/pink-roses-battle.md deleted file mode 100644 index 77cfdd0f..00000000 --- a/.changeset/pink-roses-battle.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@gql.tada/cli-utils": patch ---- - -Disable output piping on GitHub CI, as it can't reliably be detected. diff --git a/.changeset/thirty-moose-brake.md b/.changeset/thirty-moose-brake.md deleted file mode 100644 index e16cd11a..00000000 --- a/.changeset/thirty-moose-brake.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"gql.tada": minor ---- - -Add support for `oneOf` input objects as specified in [the RFC](https://github.com/graphql/graphql-spec/pull/825) diff --git a/CHANGELOG.md b/CHANGELOG.md index a86cf348..b1d0d559 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # gql.tada +## 1.7.0 + +### Minor Changes + +- Add support for `oneOf` input objects as specified in [the RFC](https://github.com/graphql/graphql-spec/pull/825) + Submitted by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#284](https://github.com/0no-co/gql.tada/pull/284)) + +### Patch Changes + +- Updated dependencies (See [#284](https://github.com/0no-co/gql.tada/pull/284), [#282](https://github.com/0no-co/gql.tada/pull/282), and [#286](https://github.com/0no-co/gql.tada/pull/286)) + - @gql.tada/internal@0.4.0 + - @gql.tada/cli-utils@1.3.4 + ## 1.6.3 ### Patch Changes diff --git a/package.json b/package.json index 2b917d9a..8b882fff 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.6.3", + "version": "1.7.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 48b7fbd7..e3ac7123 100644 --- a/packages/cli-utils/CHANGELOG.md +++ b/packages/cli-utils/CHANGELOG.md @@ -1,5 +1,16 @@ # @gql.tada/cli-utils +## 1.3.4 + +### Patch Changes + +- Update CLI and `@gql.tada/internal` to variably support graphql `^15.5.0` in addition to the preferred v16, and include future support for v17 + Submitted by [@kitten](https://github.com/kitten) (See [#282](https://github.com/0no-co/gql.tada/pull/282)) +- Disable output piping on GitHub CI, as it can't reliably be detected + Submitted by [@kitten](https://github.com/kitten) (See [#286](https://github.com/0no-co/gql.tada/pull/286)) +- Updated dependencies (See [#284](https://github.com/0no-co/gql.tada/pull/284) and [#282](https://github.com/0no-co/gql.tada/pull/282)) + - @gql.tada/internal@0.4.0 + ## 1.3.3 ### Patch Changes diff --git a/packages/cli-utils/package.json b/packages/cli-utils/package.json index 4a27dd69..1363eecc 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.3", + "version": "1.3.4", "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 d7cbb34e..2908cc9f 100644 --- a/packages/internal/CHANGELOG.md +++ b/packages/internal/CHANGELOG.md @@ -1,5 +1,17 @@ # @gql.tada/internal +## 0.4.0 + +### Minor Changes + +- Add support for querying `isOneOf` in the introspection + Submitted by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#284](https://github.com/0no-co/gql.tada/pull/284)) + +### Patch Changes + +- Update CLI and `@gql.tada/internal` to variably support graphql `^15.5.0` in addition to the preferred v16, and include future support for v17 + Submitted by [@kitten](https://github.com/kitten) (See [#282](https://github.com/0no-co/gql.tada/pull/282)) + ## 0.3.3 ### Patch Changes diff --git a/packages/internal/package.json b/packages/internal/package.json index 8db573a0..99c4ef84 100644 --- a/packages/internal/package.json +++ b/packages/internal/package.json @@ -1,6 +1,6 @@ { "name": "@gql.tada/internal", - "version": "0.3.3", + "version": "0.4.0", "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 1d0ce966..f1a46d3d 100644 --- a/website/CHANGELOG.md +++ b/website/CHANGELOG.md @@ -1,5 +1,12 @@ # @gql.tada/website-vitepress +## 0.0.22 + +### Patch Changes + +- Updated dependencies (See [#284](https://github.com/0no-co/gql.tada/pull/284)) + - gql.tada@1.7.0 + ## 0.0.21 ### Patch Changes diff --git a/website/package.json b/website/package.json index a25441cc..07196f83 100644 --- a/website/package.json +++ b/website/package.json @@ -1,6 +1,6 @@ { "name": "@gql.tada/website-vitepress", - "version": "0.0.21", + "version": "0.0.22", "private": true, "scripts": { "dev": "vitepress dev",