Skip to content

Latest commit

 

History

History
1213 lines (689 loc) · 49.6 KB

File metadata and controls

1213 lines (689 loc) · 49.6 KB

graphql-language-service-cli

3.4.0

Minor Changes

  • #3521 aa6dbbb4 Thanks @acao! - Fix many schema and fragment lifecycle issues, not all of them, but many related to cacheing. Note: this makes cacheSchemaForLookup enabled by default again for schema first contexts.

    This fixes multiple cacheing bugs, upon addomg some in-depth integration test coverage for the LSP server. It also solves several bugs regarding loading config types, and properly restarts the server and invalidates schema when there are config changes.

    Bugfix Summary

    • configurable polling updates for network and other code first schema configuration, set to a 30s interval by default. powered by schemaCacheTTL which can be configured in the IDE settings (vscode, nvim) or in the graphql config file. (1)
    • jump to definition in embedded files offset bug, for both fragments and code files with SDL strings
    • cache invalidation for fragments (fragment lookup/autcoomplete data is more accurate, but incomplete/invalid fragments still do not autocomplete or validate, and remember fragment options always filter/validate by the on type!)
    • schema cache invalidation for schema files - schema updates as you change the SDL files, and the generated file for code first by the schemaCacheTTL setting
    • schema definition lookups & autocomplete crossing over into the wrong project

    Notes

    1. If possible, configuring for your locally running framework or a schema registry client to handle schema updates and output to a schema.graphql or introspection.json will always provide a better experience. many graphql frameworks have this built in! Otherwise, we must use this new lazy polling approach if you provide a url schema (this includes both introspection URLs and remote file URLs, and the combination of these).

    Known Bugs Fixed

    • #3318
    • #2357
    • #3469
    • #2422
    • #2820
    • many more!

    Test Improvements

    • new, high level integration spec suite for the LSP with a matching test utility
    • more unit test coverage
    • total increased test coverage of about 25% in the LSP server codebase.
    • many "happy paths" covered for both schema and code first contexts
    • many bugs revealed (and their source)

    What's next?

    Another stage of the rewrite is already almost ready. This will fix even more bugs and improve memory usage, eliminate redundant parsing and ensure that graphql config's loaders do all of the parsing and heavy lifting, thus honoring all the configs as well. It also significantly reduces the code complexity.

    There is also a plan to match Relay LSP's lookup config for either IDE (vscode, nvm, etc) settings as they provide, or by loading modules into your graphql-config!

Patch Changes

  • #3521 aa6dbbb4 Thanks @acao! - Fixes several issues with Type System (SDL) completion across the ecosystem:

    • restores completion for object and input type fields when the document context is not detectable or parseable
    • correct top-level completions for either of the unknown, type system or executable definitions. this leads to mixed top level completions when the document is unparseable, but now you are not seemingly restricted to only executable top level definitions
    • .graphqls ad-hoc standard functionality remains, but is not required, as it is not part of the official spec, and the spec also allows mixed mode documents in theory, and this concept is required when the type is unknown
  • #3521 aa6dbbb4 Thanks @acao! - Introduce locateCommand based on Relay LSP pathToLocateCommand:

    Now with <graphql config>.extensions.languageService.locateCommand, you can specify either the existing signature for relay, with the same callback parameters and return signature (of a string delimited by : characters), or you can return an object with {uri, range} for the exact set of coordinates for the destination range. the function can be sync or async.

    Relay LSP currently supports Type and Type.field for the 2nd argument. Ours also returns Type.field(argument) as a point of reference. It works with object types, input types, fragments, executable definitions and their fields, and should work for directive definitions as well.

    In the case of unnamed types such as fragment spreads, they return the name of the implemented type currently, but I'm curious what users prefer here. I assumed that some people may want to not be limited to only using this for SDL type definition lookups. Also look soon to see locateCommand support added for symbols, outline, and coming references and implementations.

    The module at the path you specify in relay LSP for pathToLocateCommand should work as such.

    // import it
    import { locateCommand } from './graphql/tooling/lsp/locate.js';
    export default {
      languageService: {
        locateCommand,
      },
    
      projects: {
        a: {
          schema: 'https://localhost:8000/graphql',
          documents: './a/**/*.{ts,tsx,jsx,js,graphql}',
        },
        b: {
          schema: './schema/ascode.ts',
          documents: './b/**/*.{ts,tsx,jsx,js,graphql}',
        },
      },
    };
    // or define it inline
    
    import { type LocateCommand } from 'graphql-language-service-server';
    
    // relay LSP style
    const locateCommand = (projectName: string, typePath: string) => {
      const { path, startLine, endLine } = ourLookupUtility(
        projectName,
        typePath,
      );
      return `${path}:${startLine}:${endLine}`;
    };
    
    // an example with our alternative return signature
    const locateCommand: LocateCommand = (projectName, typePath, info) => {
      // pass more info, such as GraphQLType with the ast node. info.project is also available if you need it
      const { path, range } = ourLookupUtility(
        projectName,
        typePath,
        info.type.node,
      );
      return { uri: path, range }; // range.start.line/range.end.line
    };
    
    export default {
      languageService: {
        locateCommand,
      },
      schema: 'https://localhost:8000/graphql',
      documents: './**/*.{ts,tsx,jsx,js,graphql}',
    };

    Passing a string as a module path to resolve is coming in a follow-up release. Then it can be used with .yml, .toml, .json, package.json#graphql, etc

    For now this was a quick baseline for a feature asked for in multiple channels!

    Let us know how this works, and about any other interoperability improvements between our graphql LSP and other language servers (relay, intellij, etc) used by you and colleauges in your engineering organisations. We are trying our best to keep up with the awesome innovations they have 👀!

  • Updated dependencies [aa6dbbb4, aa6dbbb4, aa6dbbb4]:

    • graphql-language-service-server@2.13.0
    • graphql-language-service@5.2.1

3.3.33

Patch Changes

  • Updated dependencies [98af5307, 36c7f25c]:
    • graphql-language-service-server@2.12.0

3.3.32

Patch Changes

  • Updated dependencies [6c7adf85]:
    • graphql-language-service-server@2.11.10

3.3.31

Patch Changes

  • Updated dependencies [34d0a976]:
    • graphql-language-service-server@2.11.9

3.3.30

Patch Changes

  • Updated dependencies [3bfb2877]:
    • graphql-language-service-server@2.11.8

3.3.29

Patch Changes

  • #3488 d5028be2 Thanks @acao! - Bump graphql & graphql-tools version to fix potential runtime security bugs

  • 22771f35 Thanks @acao! - Fixes to svelte parsing, tag parsing refactor

  • Updated dependencies [d5028be2, 22771f35]:

    • graphql-language-service-server@2.11.7

3.3.28

Patch Changes

  • Updated dependencies [75ccd72c]:
    • graphql-language-service-server@2.11.6

3.3.27

Patch Changes

  • Updated dependencies [530ef47a]:
    • graphql-language-service-server@2.11.5

3.3.26

Patch Changes

  • Updated dependencies [7b00774a, 7b00774a]:
    • graphql-language-service@5.2.0
    • graphql-language-service-server@2.11.4

3.3.25

Patch Changes

  • #3322 6939bac4 Thanks @acao! - Bypass babel typescript parsing errors to continue extracting graphql strings

  • Updated dependencies [6939bac4]:

    • graphql-language-service-server@2.11.3

3.3.24

Patch Changes

3.3.24-alpha.0

Patch Changes

  • #3224 5971d528 Thanks @acao! - try removing some packages from pre.json

  • Updated dependencies [5971d528, d9e5089f, 55135804]:

    • graphql-language-service-server@2.11.2-alpha.0
    • graphql-language-service@5.1.7-alpha.0

3.3.23

Patch Changes

  • Updated dependencies [4c3a08b1]:
    • graphql-language-service-server@2.11.1

3.3.22

Patch Changes

  • #3148 06007498 Thanks @mskelton! - Use native LSP logger instead of manual file based logging. This fixes errors in Neovim when using the GraphQL LSP.

  • Updated dependencies [06007498, 28b1b5a0]:

    • graphql-language-service-server@2.11.0
    • graphql-language-service@5.1.6

3.3.21

Patch Changes

  • Updated dependencies [f2040452]:
    • graphql-language-service-server@2.10.0

3.3.20

Patch Changes

  • Updated dependencies [4d33b221]:
    • graphql-language-service-server@2.9.10
    • graphql-language-service@5.1.5

3.3.19

Patch Changes

  • Updated dependencies [632a7c6b]:
    • graphql-language-service-server@2.9.9

3.3.18

Patch Changes

3.3.17

Patch Changes

3.3.16

Patch Changes

3.3.15

Patch Changes

3.3.14

Patch Changes

  • #2901 eff4fd6b Thanks @acao! - Reload the language service when a legacy format .graphqlconfig file has changed

  • Updated dependencies [eff4fd6b]:

    • graphql-language-service-server@2.9.4

3.3.13

Patch Changes

  • #2900 8989ffce Thanks @acao! - use decorators-legacy @babel/parser plugin so that all styles of decorator usage are supported
  • Updated dependencies [8989ffce]:
    • graphql-language-service-server@2.9.3

3.3.12

Patch Changes

  • Updated dependencies [bdd1bd04, 967006a6]:
    • graphql-language-service-server@2.9.2

3.3.11

Patch Changes

  • #2829 c835ca87 Thanks @acao! - svelte language support, using the vue sfc parser introduced for vue support

  • Updated dependencies [c835ca87, c835ca87]:

    • graphql-language-service-server@2.9.1

3.3.10

Patch Changes

  • Updated dependencies [b422003c]:
    • graphql-language-service-server@2.9.0

3.3.9

Patch Changes

  • Updated dependencies [929152f8]:
    • graphql-language-service-server@2.8.9

3.3.8

Patch Changes

  • #2812 cf2e3061 Thanks @acao! - fix a bundling bug for vscode, rolling back graphql-config upgrade

  • Updated dependencies [cf2e3061]:

    • graphql-language-service-server@2.8.8

3.3.7

Patch Changes

  • Updated dependencies [f688422e]:
    • graphql-language-service-server@2.8.7

3.3.6

Patch Changes

  • Updated dependencies [a2071504]:
    • graphql-language-service-server@2.8.6

3.3.5

Patch Changes

  • #2616 b0d7f06c Thanks @acao! - support vscode multi-root workspaces! creates an LSP server instance for each workspace.

    WARNING: large-scale vscode workspaces usage, and this in tandem with graphql.config.* multi-project configs could lead to excessive system resource usage. Optimizations coming soon.

  • Updated dependencies [b0d7f06c]:

    • graphql-language-service-server@2.8.5

3.3.4

Patch Changes

  • Updated dependencies [d6ff4d7a]:
    • graphql-language-service@5.1.0
    • graphql-language-service-server@2.8.4

3.3.3

Patch Changes

  • Updated dependencies [721425b3]:
    • graphql-language-service-server@2.8.3

3.3.2

Patch Changes

  • #2660 34d31fbc Thanks @acao! - bump ts-node to 10.x, so that TypeScript based configs (i.e. .graphqlrc.ts) will continue to work. It also bumps to the latest patch releases of graphql-config fixed several issues with TypeScript loading (v4.3.2, v4.3.3). We tested manually, but please open a bug if you encounter any with schema-as-url configs & schema introspection.

  • Updated dependencies [34d31fbc]:

    • graphql-language-service-server@2.8.2

3.3.1

Patch Changes

  • Updated dependencies [12cf4db0]:
    • graphql-language-service-server@2.8.1

3.3.0

Minor Changes

  • #2557 3304606d Thanks @acao! - upgrades the vscode-languageserver and vscode-jsonrpc reference implementations for the lsp server to the latest. also upgrades vscode-languageclient in vscode-graphql to the latest 8.0.1. seems to work fine for IPC in vscode-graphql at least!

    hopefully this solves #2230 once and for all!

Patch Changes

  • Updated dependencies [3304606d]:
    • graphql-language-service-server@2.8.0

3.2.30

Patch Changes

  • #2553 edc1c964 Thanks @acao! - Fix error with LSP crash for CLI users #2230. vscode-graphql not impacted - rather, nvim.coc, maybe other clients who use CLI directly). recreation of #2546 by [@xuanduc987](https://github.com/xuanduc987, thank you!)

  • Updated dependencies [edc1c964]:

    • graphql-language-service-server@2.7.29

3.2.29

Patch Changes

  • #2519 de5d5a07 Thanks @acao! - enable graphql-config legacy mode by default in the LSP server
  • #2509 737d4184 Thanks @Chnapy! - Add gql(``), graphql(``) call expressions support for highlighting & language

  • Updated dependencies [de5d5a07, 737d4184]:

    • graphql-language-service-server@2.7.28

3.2.28

Patch Changes

  • Updated dependencies [cccefa70]:
    • graphql-language-service-server@2.7.27
    • graphql-language-service@5.0.6

3.2.27

Patch Changes

  • #2486 c9c51b8a Thanks @stonexer! - definition support for operation fields ✨

    you can now jump to the applicable object type definition for query/mutation/subscription fields!

  • Updated dependencies [c9c51b8a]:

    • graphql-language-service-server@2.7.26
    • graphql-language-service@5.0.5

3.2.26

Patch Changes

  • Updated dependencies [cf092f59]:
    • graphql-language-service-server@2.7.25

3.2.25

Patch Changes

  • Updated dependencies [d0017a93]:
    • graphql-language-service-server@2.7.24

3.2.24

Patch Changes

  • Updated dependencies [6ca6a92d]:
    • graphql-language-service-server@2.7.23

3.2.23

Patch Changes

  • Updated dependencies [6db28447, 1bea864d]:
    • graphql-language-service-server@2.7.22

3.2.22

Patch Changes

  • Updated dependencies [d22f6111]:
    • graphql-language-service@5.0.4
    • graphql-language-service-server@2.7.21

3.2.21

Patch Changes

  • #2291 45cbc759 Thanks @retrodaredevil! - Target es6 for the languages services

  • Updated dependencies [45cbc759]:

    • graphql-language-service@5.0.3
    • graphql-language-service-server@2.7.20

3.2.20

Patch Changes

  • Updated dependencies [c36504a8]:
    • graphql-language-service@5.0.2
    • graphql-language-service-server@2.7.19

3.2.19

Patch Changes

  • Updated dependencies [e15d1dae]:
    • graphql-language-service-server@2.7.18

3.2.18

Patch Changes

  • #2267 fe441272 Thanks @elken! - Re-add graphql-language-service-server as a dep to graphql-language-service-cli

3.2.17

Patch Changes

3.2.16

Patch Changes

  • Updated dependencies [2502a364]:
    • graphql-language-service@5.0.0
    • graphql-language-service-server@2.7.16

3.2.15

Patch Changes

  • Updated dependencies [ab83198f]:
    • graphql-language-service-server@2.7.15

3.2.14

Patch Changes

  • Updated dependencies [484c0523, 5852ba47, 48c5df65]:
    • graphql-language-service-server@2.7.14
    • graphql-language-service@4.1.5

3.2.13

Patch Changes

  • Updated dependencies [08ff6dce]:
    • graphql-language-service-server@2.7.13
    • graphql-language-service@4.1.4

3.2.12

Patch Changes

  • Updated dependencies [a44772d6]:
    • graphql-language-service@4.1.3
    • graphql-language-service-server@2.7.12

3.2.11

Patch Changes

  • Updated dependencies [e20760fb]:
    • graphql-language-service@4.1.2
    • graphql-language-service-server@2.7.11

3.2.10

Patch Changes

  • Updated dependencies [ff9cebe5]:
    • graphql-language-service-server@2.7.10
    • graphql-language-service-utils@2.7.1
    • graphql-language-service@4.1.1

3.2.9

Patch Changes

  • Updated dependencies [0f1f90ce]:
    • graphql-language-service@4.1.0
    • graphql-language-service-server@2.7.9

3.2.8

Patch Changes

  • Updated dependencies [9df315b4]:
    • graphql-language-service-utils@2.7.0
    • graphql-language-service@4.0.0
    • graphql-language-service-server@2.7.8

3.2.7

Patch Changes

  • Updated dependencies [c4236190, df57cd25]:
    • graphql-language-service-server@2.7.7
    • graphql-language-service@3.2.5

3.2.6

Patch Changes

  • Updated dependencies [4286185c]:
    • graphql-language-service-server@2.7.6

3.2.5

Patch Changes

  • f82bd7a9 #2055 Thanks @acao! - this fixes the URI scheme related bugs and make sure schema as sdl config works again.

    fileURLToPath had been introduced by a contributor and I didn't test properly, it broke sdl file loading!

    definitions, autocomplete, diagnostics, etc should work again also hides the more verbose logging output for now

  • Updated dependencies [f82bd7a9]:

    • graphql-language-service-server@2.7.5
    • graphql-language-service@3.2.4
    • graphql-language-service-utils@2.6.3

3.2.4

Patch Changes

  • bdd57312 #2047 Thanks @willstott101! - Source code included in all packages to fix source maps. codemirror-graphql includes esm build in package.

  • Updated dependencies [bdd57312]:

    • graphql-language-service@3.2.3
    • graphql-language-service-server@2.7.4
    • graphql-language-service-utils@2.6.2

3.2.3

Patch Changes

  • Updated dependencies [858907d2]:
    • graphql-language-service@3.2.2
    • graphql-language-service-server@2.7.3
    • graphql-language-service-utils@2.6.1

3.2.2

Patch Changes

  • Updated dependencies [7e98c6ff]:
    • graphql-language-service-server@2.7.2

3.2.1

Patch Changes

  • 9a6ed03f #2013 Thanks @PabloSzx! - Update utils

  • Updated dependencies [9a6ed03f, 9a6ed03f]:

    • graphql-language-service-utils@2.6.0
    • graphql-language-service@3.2.1
    • graphql-language-service-server@2.7.1

3.2.0

Minor Changes

  • 716cf786 #2010 Thanks @acao! - upgrade to graphql@16.0.0-experimental-stream-defer.5. thanks @saihaj!

Patch Changes

  • Updated dependencies [716cf786]:
    • graphql-language-service-server@2.7.0
    • graphql-language-service@3.2.0

3.1.14

Patch Changes

3.1.13

Patch Changes

  • 6869ce77 #1816 Thanks @acao! - improve peer resolutions for graphql 14 & 15. 14.5.0 minimum is for built-in typescript types, and another method only available in 14.4.0

3.1.12 (2021-01-07)

Note: Version bump only for package graphql-language-service-cli

3.1.11 (2021-01-07)

Note: Version bump only for package graphql-language-service-cli

3.1.10 (2021-01-07)

Note: Version bump only for package graphql-language-service-cli

3.1.9 (2021-01-03)

Note: Version bump only for package graphql-language-service-cli

3.1.8 (2020-12-28)

Note: Version bump only for package graphql-language-service-cli

3.1.7 (2020-12-08)

Note: Version bump only for package graphql-language-service-cli

3.1.6 (2020-11-28)

Note: Version bump only for package graphql-language-service-cli

3.1.5 (2020-10-20)

Note: Version bump only for package graphql-language-service-cli

3.1.4 (2020-09-23)

Note: Version bump only for package graphql-language-service-cli

3.1.3 (2020-09-23)

Note: Version bump only for package graphql-language-service-cli

3.1.2 (2020-09-20)

Note: Version bump only for package graphql-language-service-cli

3.1.1 (2020-09-20)

Note: Version bump only for package graphql-language-service-cli

3.1.0 (2020-09-18)

Note: Version bump only for package graphql-language-service-cli

3.1.0-alpha.5 (2020-09-11)

Note: Version bump only for package graphql-language-service-cli

3.1.0-alpha.4 (2020-08-26)

Note: Version bump only for package graphql-language-service-cli

3.1.0-alpha.3 (2020-08-22)

Note: Version bump only for package graphql-language-service-cli

3.1.0-alpha.2 (2020-08-12)

Note: Version bump only for package graphql-language-service-cli

3.1.0-alpha.1 (2020-08-12)

Note: Version bump only for package graphql-language-service-cli

3.1.0-alpha.0 (2020-08-10)

Bug Fixes

  • pre-caching schema bugs, new server config options (#1636) (d989456)

Features

3.0.1 (2020-08-06)

Note: Version bump only for package graphql-language-service-cli

3.0.0 (2020-06-11)

Note: Version bump only for package graphql-language-service-cli

3.0.0-alpha.5 (2020-06-04)

Note: Version bump only for package graphql-language-service-cli

3.0.0-alpha.4 (2020-06-04)

Bug Fixes

  • cleanup cache entry from lerna publish (4a26218)

3.0.0-alpha.3 (2020-05-28)

Note: Version bump only for package graphql-language-service-cli

3.0.0-alpha.2 (2020-05-19)

Note: Version bump only for package graphql-language-service-cli

2.4.0-alpha.8 (2020-05-17)

Bug Fixes

  • repair CLI, handle all schema and LSP errors (#1482) (992f384)

2.4.0-alpha.7 (2020-04-10)

Note: Version bump only for package graphql-language-service

2.4.0-alpha.6 (2020-04-10)

Note: Version bump only for package graphql-language-service

2.4.0-alpha.5 (2020-04-06)

Features

2.4.0-alpha.4 (2020-04-03)

Note: Version bump only for package graphql-language-service

2.4.0-alpha.3 (2020-03-20)

Note: Version bump only for package graphql-language-service

2.4.0-alpha.2 (2020-03-20)

Bug Fixes

Features

2.4.0-alpha.1 (2020-01-18)

Features

  • convert LSP Server to Typescript, remove watchman (#1138) (8e33dbb)

2.3.4 (2019-12-09)

Note: Version bump only for package graphql-language-service

2.3.3 (2019-12-09)

Note: Version bump only for package graphql-language-service

2.3.2 (2019-12-03)

Note: Version bump only for package graphql-language-service

2.3.1 (2019-11-26)

Note: Version bump only for package graphql-language-service

2.3.0 (2019-10-04)

Features

2.0.1 (2019-05-14)

2.0.0 (2018-09-18)

1.2.2 (2018-06-11)

1.1.2 (2018-04-19)

1.1.1 (2018-04-18)

1.1.0 (2018-04-09)

1.0.18 (2018-01-04)

1.0.16 (2017-11-21)

1.0.15 (2017-10-02)

0.1.14 (2017-09-29)

0.1.13 (2017-08-24)

0.1.12 (2017-08-21)

0.1.11 (2017-08-20)

0.1.10 (2017-08-19)

0.1.9 (2017-08-18)

0.1.8 (2017-08-18)

0.1.7 (2017-08-16)

0.1.6 (2017-08-15)

0.1.5 (2017-08-14)

0.1.5-0 (2017-08-10)

0.1.4-0 (2017-08-10)

0.1.3-0 (2017-08-10)

0.1.2-0 (2017-08-10)

0.1.1-0 (2017-08-10)

0.1.0-0 (2017-08-10)

2.2.0 (2019-10-04)

Features

2.0.1 (2019-05-14)

2.0.0 (2018-09-18)

1.2.2 (2018-06-11)

1.1.2 (2018-04-19)

1.1.1 (2018-04-18)

1.1.0 (2018-04-09)

1.0.18 (2018-01-04)

1.0.16 (2017-11-21)

1.0.15 (2017-10-02)

0.1.14 (2017-09-29)

0.1.13 (2017-08-24)

0.1.12 (2017-08-21)

0.1.11 (2017-08-20)

0.1.10 (2017-08-19)

0.1.9 (2017-08-18)

0.1.8 (2017-08-18)

0.1.7 (2017-08-16)

0.1.6 (2017-08-15)

0.1.5 (2017-08-14)

0.1.5-0 (2017-08-10)

0.1.4-0 (2017-08-10)

0.1.3-0 (2017-08-10)

0.1.2-0 (2017-08-10)

0.1.1-0 (2017-08-10)

0.1.0-0 (2017-08-10)

2.2.0-alpha.0 (2019-10-04)

Features

2.0.1 (2019-05-14)

2.0.0 (2018-09-18)

1.2.2 (2018-06-11)

1.1.2 (2018-04-19)

1.1.1 (2018-04-18)

1.1.0 (2018-04-09)

1.0.18 (2018-01-04)

1.0.16 (2017-11-21)

1.0.15 (2017-10-02)

0.1.14 (2017-09-29)

0.1.13 (2017-08-24)

0.1.12 (2017-08-21)

0.1.11 (2017-08-20)

0.1.10 (2017-08-19)

0.1.9 (2017-08-18)

0.1.8 (2017-08-18)

0.1.7 (2017-08-16)

0.1.6 (2017-08-15)

0.1.5 (2017-08-14)

0.1.5-0 (2017-08-10)

0.1.4-0 (2017-08-10)

0.1.3-0 (2017-08-10)

0.1.2-0 (2017-08-10)

0.1.1-0 (2017-08-10)

0.1.0-0 (2017-08-10)

2.1.1-alpha.1 (2019-09-01)

2.0.1 (2019-05-14)

2.0.0 (2018-09-18)

1.2.2 (2018-06-11)

1.1.2 (2018-04-19)

1.1.1 (2018-04-18)

1.1.0 (2018-04-09)

1.0.18 (2018-01-04)

1.0.16 (2017-11-21)

1.0.15 (2017-10-02)

0.1.14 (2017-09-29)

0.1.13 (2017-08-24)

0.1.12 (2017-08-21)

0.1.11 (2017-08-20)

0.1.10 (2017-08-19)

0.1.9 (2017-08-18)

0.1.8 (2017-08-18)

0.1.7 (2017-08-16)

0.1.6 (2017-08-15)

0.1.5 (2017-08-14)

0.1.5-0 (2017-08-10)

0.1.4-0 (2017-08-10)

0.1.3-0 (2017-08-10)

0.1.2-0 (2017-08-10)

0.1.1-0 (2017-08-10)

0.1.0-0 (2017-08-10)

Note: Version bump only for package graphql-language-service

2.1.1-alpha.0 (2019-09-01)

2.0.1 (2019-05-14)

2.0.0 (2018-09-18)

1.2.2 (2018-06-11)

1.1.2 (2018-04-19)

1.1.1 (2018-04-18)

1.1.0 (2018-04-09)

1.0.18 (2018-01-04)

1.0.16 (2017-11-21)

1.0.15 (2017-10-02)

0.1.14 (2017-09-29)

0.1.13 (2017-08-24)

0.1.12 (2017-08-21)

0.1.11 (2017-08-20)

0.1.10 (2017-08-19)

0.1.9 (2017-08-18)

0.1.8 (2017-08-18)

0.1.7 (2017-08-16)

0.1.6 (2017-08-15)

0.1.5 (2017-08-14)

0.1.5-0 (2017-08-10)

0.1.4-0 (2017-08-10)

0.1.3-0 (2017-08-10)

0.1.2-0 (2017-08-10)

0.1.1-0 (2017-08-10)

0.1.0-0 (2017-08-10)

Note: Version bump only for package graphql-language-service

2.1.1 (2019-09-01)

2.0.1 (2019-05-14)

2.0.0 (2018-09-18)

1.2.2 (2018-06-11)

1.1.2 (2018-04-19)

1.1.1 (2018-04-18)

1.1.0 (2018-04-09)

1.0.18 (2018-01-04)

1.0.16 (2017-11-21)

1.0.15 (2017-10-02)

0.1.14 (2017-09-29)

0.1.13 (2017-08-24)

0.1.12 (2017-08-21)

0.1.11 (2017-08-20)

0.1.10 (2017-08-19)

0.1.9 (2017-08-18)

0.1.8 (2017-08-18)

0.1.7 (2017-08-16)

0.1.6 (2017-08-15)

0.1.5 (2017-08-14)

0.1.5-0 (2017-08-10)

0.1.4-0 (2017-08-10)

0.1.3-0 (2017-08-10)

0.1.2-0 (2017-08-10)

0.1.1-0 (2017-08-10)

0.1.0-0 (2017-08-10)

Note: Version bump only for package graphql-language-service