Releases: apollographql/vscode-graphql
v2.3.6
v2.3.5
v2.3.4
v2.3.3
v2.3.2
v2.3.1
v2.3.0
Minor Changes
Patch Changes
-
#200
d6c6af81
Thanks @phryneas! - Fixed an issue where the configuration was not reloaded when the.env.local
file changed. -
#202
ea5cc094
Thanks @phryneas! - Prevent configuration file parsing loop when transpiling TypeScript configs. -
#204
c2351d2e
Thanks @phryneas! - Fix a bug where config file changes could not be picked up -
#200
d6c6af81
Thanks @phryneas! - Add support forapollo.config.yml
,apollo.config.yaml
andapollo.config.json
.
v2.2.1
v2.2.0
Minor Changes
-
#184
9c53a11e
Thanks @phryneas! - Derive extensions for supported languages and monitored files from other installed extensions.
Adjust defaultincludes
for client projects.This changes the default
includes
similar to (depending on additional extensions you might have installed):-'src/**/*.{ts,tsx,js,jsx,graphql,gql}', +'src/**/*{.gql,.graphql,.graphqls,.js,.mjs,.cjs,.es6,.pac,.ts,.mts,.cts,.jsx,.tsx,.vue,.svelte,.py,.rpy,.pyw,.cpy,.gyp,.gypi,.pyi,.ipy,.pyt,.rb,.rbx,.rjs,.gemspec,.rake,.ru,.erb,.podspec,.rbi,.dart,.re,.ex,.exs}'
v2.1.0
Minor Changes
- #179
b4687eb
Thanks @phryneas! - Improve detection of GraphQL inside of JavaScript/TypeScript files.
Add support for/** GraphQL */
annotations before a template string.
Patch Changes
-
#173
415ff4a1
Thanks @phryneas! - Fix a bug where when rapidly changing multiple files some of the changes might have gotten lost. -
#176
cbc1c638
Thanks @phryneas! - Fixed a bug where annotations might have mapped to the wrong position on the first line of an embedded document. -
#173
415ff4a1
Thanks @phryneas! - Fixed a bug where hints on the 0-th line of an embedded GraphQL document were offset incorrectly.E.g. in
const veryLongVariableName = gql` type Foo { baaaaaar: String } `;
the hover on
String
would only appear when hovering characters left of it.