From 3c076c0cc79fd0d4135292fe03b11efca35ddeed Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 8 Sep 2024 11:38:14 +0100 Subject: [PATCH] Version Packages (#378) --- .changeset/empty-hairs-punch.md | 5 ----- .changeset/fluffy-seahorses-flow.md | 5 ----- .changeset/friendly-dolls-lick.md | 5 ----- CHANGELOG.md | 10 ++++++++++ package.json | 2 +- packages/cli-utils/CHANGELOG.md | 9 +++++++++ packages/cli-utils/package.json | 2 +- packages/internal/CHANGELOG.md | 7 +++++++ packages/internal/package.json | 2 +- website/CHANGELOG.md | 7 +++++++ website/package.json | 2 +- 11 files changed, 37 insertions(+), 19 deletions(-) delete mode 100644 .changeset/empty-hairs-punch.md delete mode 100644 .changeset/fluffy-seahorses-flow.md delete mode 100644 .changeset/friendly-dolls-lick.md diff --git a/.changeset/empty-hairs-punch.md b/.changeset/empty-hairs-punch.md deleted file mode 100644 index ab131fdf..00000000 --- a/.changeset/empty-hairs-punch.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'gql.tada': patch ---- - -Update internal type signature of `initGraphQLTada<>()` function and include `initGraphQLTada` alias type. This alias type makes it more intuitive to declare types the return type of `initGraphQLTada()`, since it mirrors the same name. diff --git a/.changeset/fluffy-seahorses-flow.md b/.changeset/fluffy-seahorses-flow.md deleted file mode 100644 index 884dcda9..00000000 --- a/.changeset/fluffy-seahorses-flow.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@gql.tada/internal': patch ---- - -Update the tsconfig resolver to better handle an array of "extends" values in tsconfig.json files when trying to locate the GraphQLSP plugin entry. Before, if you were using an array for "extends", e.g. `"extends: ["./file1.json", "./file2.json"]`, the first file loaded that did not have a GraphQLSP plugin entry defined would throw an error and prevent subsequent files from being loaded and evaluated. The implemented change now allows for the resolver to continue iterating over `extends` values trying to locate a GraphQLSP plugin entry. diff --git a/.changeset/friendly-dolls-lick.md b/.changeset/friendly-dolls-lick.md deleted file mode 100644 index c1c60792..00000000 --- a/.changeset/friendly-dolls-lick.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@gql.tada/cli-utils": patch ---- - -Strip our internal `@_unmask` directive from fragment-definitions during persisted-operations generation diff --git a/CHANGELOG.md b/CHANGELOG.md index a3bdc29d..f23620f8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # gql.tada +## 1.8.7 + +### Patch Changes + +- Update internal type signature of `initGraphQLTada<>()` function and include `initGraphQLTada` alias type. This alias type makes it more intuitive to declare types the return type of `initGraphQLTada()`, since it mirrors the same name + Submitted by [@kitten](https://github.com/kitten) (See [#377](https://github.com/0no-co/gql.tada/pull/377)) +- Updated dependencies (See [#386](https://github.com/0no-co/gql.tada/pull/386) and [#388](https://github.com/0no-co/gql.tada/pull/388)) + - @gql.tada/internal@1.0.8 + - @gql.tada/cli-utils@1.6.2 + ## 1.8.6 ### Patch Changes diff --git a/package.json b/package.json index c298e58f..826df02b 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.8.6", + "version": "1.8.7", "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 93f9c7d3..a5b4e813 100644 --- a/packages/cli-utils/CHANGELOG.md +++ b/packages/cli-utils/CHANGELOG.md @@ -1,5 +1,14 @@ # @gql.tada/cli-utils +## 1.6.2 + +### Patch Changes + +- Strip our internal `@_unmask` directive from fragment-definitions during persisted-operations generation + Submitted by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#388](https://github.com/0no-co/gql.tada/pull/388)) +- Updated dependencies (See [#386](https://github.com/0no-co/gql.tada/pull/386)) + - @gql.tada/internal@1.0.8 + ## 1.6.1 ### Patch Changes diff --git a/packages/cli-utils/package.json b/packages/cli-utils/package.json index 8e2c8d82..6dc27cfa 100644 --- a/packages/cli-utils/package.json +++ b/packages/cli-utils/package.json @@ -1,6 +1,6 @@ { "name": "@gql.tada/cli-utils", - "version": "1.6.1", + "version": "1.6.2", "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 44836b44..53c0dfd5 100644 --- a/packages/internal/CHANGELOG.md +++ b/packages/internal/CHANGELOG.md @@ -1,5 +1,12 @@ # @gql.tada/internal +## 1.0.8 + +### Patch Changes + +- Update the tsconfig resolver to better handle an array of "extends" values in tsconfig.json files when trying to locate the GraphQLSP plugin entry. Before, if you were using an array for "extends", e.g. `"extends: ["./file1.json", "./file2.json"]`, the first file loaded that did not have a GraphQLSP plugin entry defined would throw an error and prevent subsequent files from being loaded and evaluated. The implemented change now allows for the resolver to continue iterating over `extends` values trying to locate a GraphQLSP plugin entry + Submitted by [@aweber1](https://github.com/aweber1) (See [#386](https://github.com/0no-co/gql.tada/pull/386)) + ## 1.0.7 ### Patch Changes diff --git a/packages/internal/package.json b/packages/internal/package.json index 75d0c899..916ffb2d 100644 --- a/packages/internal/package.json +++ b/packages/internal/package.json @@ -1,6 +1,6 @@ { "name": "@gql.tada/internal", - "version": "1.0.7", + "version": "1.0.8", "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 ecd230e6..35c0b804 100644 --- a/website/CHANGELOG.md +++ b/website/CHANGELOG.md @@ -1,5 +1,12 @@ # @gql.tada/website-vitepress +## 0.0.36 + +### Patch Changes + +- Updated dependencies (See [#377](https://github.com/0no-co/gql.tada/pull/377)) + - gql.tada@1.8.7 + ## 0.0.35 ### Patch Changes diff --git a/website/package.json b/website/package.json index 8d94f1dd..23ab97e0 100644 --- a/website/package.json +++ b/website/package.json @@ -1,6 +1,6 @@ { "name": "@gql.tada/website-vitepress", - "version": "0.0.35", + "version": "0.0.36", "private": true, "scripts": { "dev": "vitepress dev",