Skip to content

Releases: apollographql/vscode-graphql

v2.3.6

22 Oct 07:52
7e8130b
Compare
Choose a tag to compare

Patch Changes

v2.3.5

15 Oct 13:28
cd60606
Compare
Choose a tag to compare

Patch Changes

v2.3.4

15 Oct 09:21
493731d
Compare
Choose a tag to compare

Patch Changes

  • #224 b7d300f7 Thanks @phryneas! - Fix a situation where config files using require would not be imported as CommonJS.

v2.3.3

27 Sep 15:17
24440fa
Compare
Choose a tag to compare

Patch Changes

v2.3.2

19 Sep 13:29
5477c4e
Compare
Choose a tag to compare

Patch Changes

  • #211 9aa1fc1b Thanks @phryneas! - Avoid detection if .js config file is ESM or CommonJs, just try both.

v2.3.1

19 Sep 12:31
761e015
Compare
Choose a tag to compare

Patch Changes

v2.3.0

18 Sep 14:03
880c6f1
Compare
Choose a tag to compare

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 for apollo.config.yml, apollo.config.yaml and apollo.config.json.

v2.2.1

11 Sep 16:01
f730d3f
Compare
Choose a tag to compare

Patch Changes

v2.2.0

28 Aug 16:25
fea5f3d
Compare
Choose a tag to compare

Minor Changes

  • #184 9c53a11e Thanks @phryneas! - Derive extensions for supported languages and monitored files from other installed extensions.
    Adjust default includes 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

26 Aug 08:55
28f144f
Compare
Choose a tag to compare

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.