Skip to content

Commit

Permalink
Version Packages (#305)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] committed Apr 26, 2024
1 parent 1e657c8 commit 847a476
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 37 deletions.
26 changes: 0 additions & 26 deletions .changeset/light-penguins-explain.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/spicy-garlics-drum.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/young-phones-search.md

This file was deleted.

30 changes: 30 additions & 0 deletions packages/graphqlsp/CHANGELOG.md
@@ -1,5 +1,35 @@
# @0no-co/graphqlsp

## 1.12.0

### Minor Changes

- Add support for defining multiple indepenent schemas through a new config property called `schemas`, you can
pass a config like the following:
```json
{
"name": "@0no-co/graphqlsp",
"schemas": [
{
"name": "pokemons",
"schema": "./pokemons.graphql",
"tadaOutputLocation": "./pokemons-introspection.d.ts"
},
{
"name": "weather",
"schema": "./weather.graphql",
"tadaOutputLocation": "./weather-introspection.d.ts"
}
]
}
```
The LSP will depending on what `graphql()` template you use figure out what API you are reaching out to.
Submitted by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#303](https://github.com/0no-co/GraphQLSP/pull/303))
- Expose `findAllCallExpressions` on `@0no-co/graphqlsp/api`
Submitted by [@kitten](https://github.com/kitten) (See [#308](https://github.com/0no-co/GraphQLSP/pull/308))
- Expand support for `gql.tada` API. GraphQLSP will now recognize `graphql()`/`graphql.persisted()` calls regardless of variable naming and support more obscure usage patterns
Submitted by [@kitten](https://github.com/kitten) (See [#309](https://github.com/0no-co/GraphQLSP/pull/309))

## 1.11.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/graphqlsp/package.json
@@ -1,6 +1,6 @@
{
"name": "@0no-co/graphqlsp",
"version": "1.11.0",
"version": "1.12.0",
"description": "TypeScript LSP plugin that finds GraphQL documents in your code and provides hints and auto-generates types.",
"main": "./dist/graphqlsp",
"module": "./dist/graphqlsp.mjs",
Expand Down

0 comments on commit 847a476

Please sign in to comment.