diff --git a/.changeset/five-dancers-refuse.md b/.changeset/five-dancers-refuse.md deleted file mode 100644 index 1b97278d..00000000 --- a/.changeset/five-dancers-refuse.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@0no-co/graphqlsp': minor ---- - -Add ability to specify a URL for your schema, GraphQLSP will then fetch the introspection from the specified URL diff --git a/.changeset/grumpy-toes-serve.md b/.changeset/grumpy-toes-serve.md deleted file mode 100644 index 24d79b6a..00000000 --- a/.changeset/grumpy-toes-serve.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@0no-co/graphqlsp': minor ---- - -Display some documentation alongside fields and fragments, for fields it will show the documentation or the type and for fragmentSpreads the typeCondition will be displayed diff --git a/.changeset/olive-jokes-drum.md b/.changeset/olive-jokes-drum.md deleted file mode 100644 index 7911178b..00000000 --- a/.changeset/olive-jokes-drum.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@0no-co/graphqlsp': patch ---- - -Check the `dirty` state of the file an additional time to prevent writing to the file when the user types directly after saving diff --git a/.changeset/proud-trainers-switch.md b/.changeset/proud-trainers-switch.md deleted file mode 100644 index cadebdb0..00000000 --- a/.changeset/proud-trainers-switch.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@0no-co/graphqlsp': patch ---- - -Enforce the correct type on FragmentSpread suggestions diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..d0868f7a --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,17 @@ +# @0no-co/graphqlsp + +## 0.2.0 + +### Minor Changes + +- Add ability to specify a URL for your schema, GraphQLSP will then fetch the introspection from the specified URL + Submitted by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#26](https://github.com/0no-co/GraphQLSP/pull/26)) +- Display some documentation alongside fields and fragments, for fields it will show the documentation or the type and for fragmentSpreads the typeCondition will be displayed + Submitted by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#31](https://github.com/0no-co/GraphQLSP/pull/31)) + +### Patch Changes + +- Check the `dirty` state of the file an additional time to prevent writing to the file when the user types directly after saving + Submitted by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#27](https://github.com/0no-co/GraphQLSP/pull/27)) +- Enforce the correct type on FragmentSpread suggestions + Submitted by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#32](https://github.com/0no-co/GraphQLSP/pull/32)) diff --git a/package.json b/package.json index d4fefeb6..0fd9da5b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@0no-co/graphqlsp", - "version": "0.1.0", + "version": "0.2.0", "description": "TypeScript LSP plugin that finds GraphQL documents in your code and provides hints and auto-generates types.", "main": "./dist/index.js", "module": "./dist/index.module.js",