Mirror: TypeScript LSP plugin that finds GraphQL documents in your code and provides diagnostics, auto-complete and hover-information.

Version Packages (#163)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

-19
.changeset/few-flowers-buy.md
···
-
---
-
'@0no-co/graphqlsp': major
-
---
-
-
Look for `gql` and `graphql` by default as well as change the default for call-expressions to true.
-
-
If you are using TaggedTemplateExpressions you can migrate by adding the following to your tsconfig file
-
-
```json
-
{
-
"plugins": [
-
{
-
"name": "@0no-co/graphqlsp",
-
"schema": "...",
-
"templateIsCallExpression": false
-
}
-
]
-
}
-
```
···
-6
.changeset/long-garlics-compare.md
···
-
---
-
"@0no-co/graphqlsp": major
-
---
-
-
Retire automatic typegen with tagged-templates, we encourage folks to either try out
-
[gql.tada](https://github.com/0no-co/gql.tada) or the [client-preset](https://the-guild.dev/graphql/codegen/docs/guides/react-vue)
···
-5
.changeset/shiny-needles-arrive.md
···
-
---
-
'@0no-co/graphqlsp': minor
-
---
-
-
Add option named `tadaOutputLocation` to automatically write the `introspection.ts` file
···
-5
.changeset/silly-pots-leave.md
···
-
---
-
'@0no-co/graphqlsp': major
-
---
-
-
Remove `fragment-checking` from tagged-templates due to issues with barrel-file exports and flip defaults for field usage and import tracking with call-expressions
···
-5
.changeset/silly-tips-tell.md
···
-
---
-
'@0no-co/graphqlsp': minor
-
---
-
-
Update build process to output typings and to bundle more dependencies.
···
-5
.changeset/swift-eels-hunt.md
···
-
---
-
'@0no-co/graphqlsp': minor
-
---
-
-
Use `ts` namespace passed to plugin by TypeScript instance, rather than re-requiring/importing it.
···
-5
.changeset/tough-birds-brush.md
···
-
---
-
'@0no-co/graphqlsp': minor
-
---
-
-
Allow `tadaOutputLocation` to contain filename targets and switch between a `.d.ts` and `.ts` output mode.
···
+35
packages/graphqlsp/CHANGELOG.md
···
# @0no-co/graphqlsp
## 0.15.0
### Minor Changes
···
# @0no-co/graphqlsp
+
## 1.0.0
+
+
### Major Changes
+
+
- Look for `gql` and `graphql` by default as well as change the default for call-expressions to true.
+
If you are using TaggedTemplateExpressions you can migrate by adding the following to your tsconfig file
+
```json
+
{
+
"plugins": [
+
{
+
"name": "@0no-co/graphqlsp",
+
"schema": "...",
+
"templateIsCallExpression": false
+
}
+
]
+
}
+
```
+
Submitted by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#162](https://github.com/0no-co/GraphQLSP/pull/162))
+
- Retire automatic typegen with tagged-templates, we encourage folks to either try out
+
[gql.tada](https://github.com/0no-co/gql.tada) or the [client-preset](https://the-guild.dev/graphql/codegen/docs/guides/react-vue)
+
Submitted by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#148](https://github.com/0no-co/GraphQLSP/pull/148))
+
- Remove `fragment-checking` from tagged-templates due to issues with barrel-file exports and flip defaults for field usage and import tracking with call-expressions
+
Submitted by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#166](https://github.com/0no-co/GraphQLSP/pull/166))
+
+
### Minor Changes
+
+
- Add option named `tadaOutputLocation` to automatically write the `introspection.ts` file
+
Submitted by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#165](https://github.com/0no-co/GraphQLSP/pull/165))
+
- Update build process to output typings and to bundle more dependencies
+
Submitted by [@kitten](https://github.com/kitten) (See [#167](https://github.com/0no-co/GraphQLSP/pull/167))
+
- Use `ts` namespace passed to plugin by TypeScript instance, rather than re-requiring/importing it
+
Submitted by [@kitten](https://github.com/kitten) (See [#167](https://github.com/0no-co/GraphQLSP/pull/167))
+
- Allow `tadaOutputLocation` to contain filename targets and switch between a `.d.ts` and `.ts` output mode
+
Submitted by [@kitten](https://github.com/kitten) (See [#169](https://github.com/0no-co/GraphQLSP/pull/169))
+
## 0.15.0
### Minor Changes
+1 -1
packages/graphqlsp/package.json
···
{
"name": "@0no-co/graphqlsp",
-
"version": "0.15.0",
"description": "TypeScript LSP plugin that finds GraphQL documents in your code and provides hints and auto-generates types.",
"main": "./dist/graphqlsp.js",
"module": "./dist/graphqlsp.module.js",
···
{
"name": "@0no-co/graphqlsp",
+
"version": "1.0.0",
"description": "TypeScript LSP plugin that finds GraphQL documents in your code and provides hints and auto-generates types.",
"main": "./dist/graphqlsp.js",
"module": "./dist/graphqlsp.module.js",