diff --git a/.changeset/eight-yaks-provide.md b/.changeset/eight-yaks-provide.md deleted file mode 100644 index 44493187..00000000 --- a/.changeset/eight-yaks-provide.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'gql.tada': patch ---- - -Fix tokenizer hitting tail recursion limit by recursing on each ignored token. diff --git a/.changeset/four-lies-hide.md b/.changeset/four-lies-hide.md deleted file mode 100644 index 142aa06b..00000000 --- a/.changeset/four-lies-hide.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@gql.tada/cli-utils': patch ---- - -Add `generate-schema` command which takes a URL | path to a JSON file and outputs a graphql schema. Example: `gql-tada generate-schema https://example.com ./schema.graphql --header 'authorization: bearer token'` diff --git a/.changeset/silver-peaches-beam.md b/.changeset/silver-peaches-beam.md deleted file mode 100644 index 113d0e3a..00000000 --- a/.changeset/silver-peaches-beam.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'gql.tada': patch ---- - -Allow `readFragment` to be called again on an already unmasked fragment. diff --git a/.changeset/ten-gorillas-watch.md b/.changeset/ten-gorillas-watch.md deleted file mode 100644 index c4e2ec99..00000000 --- a/.changeset/ten-gorillas-watch.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'gql.tada': patch ---- - -Re-export `DocumentDecoration` diff --git a/CHANGELOG.md b/CHANGELOG.md index b1193ad5..3d1a309e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # gql.tada +## 1.3.2 + +### Patch Changes + +- ⚠️ Fix tokenizer hitting tail recursion limit by recursing on each ignored token + Submitted by [@kitten](https://github.com/kitten) (See [#125](https://github.com/0no-co/gql.tada/pull/125)) +- Allow `readFragment` to be called again on an already unmasked fragment + Submitted by [@kitten](https://github.com/kitten) (See [#124](https://github.com/0no-co/gql.tada/pull/124)) +- Re-export `DocumentDecoration` + Submitted by [@kitten](https://github.com/kitten) (See [#113](https://github.com/0no-co/gql.tada/pull/113)) +- Updated dependencies (See [#120](https://github.com/0no-co/gql.tada/pull/120)) + - @gql.tada/cli-utils@0.1.1 + ## 1.3.1 ### Patch Changes diff --git a/package.json b/package.json index 2a6af871..d8f435d7 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.1", + "version": "1.3.2", "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 6dade001..dcc5fa80 100644 --- a/packages/cli-utils/CHANGELOG.md +++ b/packages/cli-utils/CHANGELOG.md @@ -1,5 +1,12 @@ # @gql.tada/cli-utils +## 0.1.1 + +### Patch Changes + +- Add `generate-schema` command which takes a URL | path to a JSON file and outputs a graphql schema. Example: `gql-tada generate-schema https://example.com ./schema.graphql --header 'authorization: bearer token'` + Submitted by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#120](https://github.com/0no-co/gql.tada/pull/120)) + ## 0.1.0 ### Minor Changes diff --git a/packages/cli-utils/package.json b/packages/cli-utils/package.json index 19547649..8f1bae04 100644 --- a/packages/cli-utils/package.json +++ b/packages/cli-utils/package.json @@ -1,6 +1,6 @@ { "name": "@gql.tada/cli-utils", - "version": "0.1.0", + "version": "0.1.1", "public": true, "description": "Main logic for gql.tada’s CLI tool.", "author": "0no.co ",