Skip to content

Releases: graphql/graphql-js

v0.2.2

31 Jul 04:25
Compare
Choose a tag to compare

Fixes:

  • Fix case reported by @steveluscher where overlapping fragments could incorrectly invalidate.

v0.2.1

31 Jul 02:12
Compare
Choose a tag to compare

Fixes:

  • Removes flow comments from npm published JS. Unfortunately the flow-comment transpiler is too buggy at this point in time.

v0.2.0

31 Jul 01:17
Compare
Choose a tag to compare

New:

  • Flow types are included in the npm release in the form of flow-comments. Flow will find and utilize these when you install graphql-js via npm, and if you don't use flow then it's business as usual.
  • GraphQL Type predicates for common groupings are now exported from graphql/type.
  • A new submodule graphql/language/schema for parsing and working with the GraphQL schema language.
  • The submodule graphql/utilities was included which adds a lot of useful functions for building client tools.
    • A definitive full introspection query.
    • Build a client-side GraphQLSchema instance from an introspection result.
    • Build a client-side GraphQLSchema from GraphQL Schema language.
    • Print a GraphQLSchema to GraphQL Schema language.
    • Create a GraphQLType instance from GraphQL Schema language.
    • Create a JavaScript value from a GraphQL language value.
    • Create a GraphQL language value from a JavaScript value.
    • A smart visitor which maintains type information as it visits the GraphQL document AST.
    • Utilities to determine if a JavaScript value or GraphQL language value adhere to a GraphQL type.
  • Minor re-organization of submodules.

v0.1.12

31 Jul 01:05
Compare
Choose a tag to compare

No changes

v0.1.11

31 Jul 01:06
Compare
Choose a tag to compare

New:

  • GraphQL submodules are now directly accessible as public API.

    import { ... } from 'graphql/language';

0.1.10

27 Jul 23:39
Compare
Choose a tag to compare

No changes, just testing auto-publish from Travis CI

0.1.9

27 Jul 23:24
Compare
Choose a tag to compare

Fixes:

  • Update dependencies
  • Read files correctly for tools

0.1.8

23 Jul 22:24
Compare
Choose a tag to compare

New:

  • Adds schema printer tool which accepts schema definition files and prints the result of an introspection query against that schema.

0.1.7

23 Jul 19:54
Compare
Choose a tag to compare

New:

  • Adds Schema Definition Language Parser

Fixed:

  • Fixes defaultValue behavior
  • Update to latest babel
  • Reconciles Union declaration
  • Corrects directive introspection

0.1.6

17 Jul 06:03
Compare
Choose a tag to compare

Fixed:

  • Validator could result in unhelpful error for some invalid queries