Skip to content

Latest commit

 

History

History
174 lines (110 loc) · 5.58 KB

CHANGELOG.md

File metadata and controls

174 lines (110 loc) · 5.58 KB

Change log

v2.9.1

  • Fix IE11 support by using a regular for-loop by vitorbal in #176

v2.9.0

v2.8.0

  • Update graphql to ^0.13, support testing all compatible versions jnwng in PR #156
  • Export single queries as both default and named stonexer in PR #154

v2.7.{0,1,2,3}

  • Merge and then revert PR #141 due to errors being thrown

v2.6.1

  • Accept graphql@^0.12.0 as peerDependency jnwng addressing #134

v2.6.0

  • Support multiple query definitions when using Webpack loader jfaust in PR #122

v2.5.0

  • Update graphql to ^0.11.0, add graphql@^0.11.0 to peerDependencies pleunv in PR #124

v2.4.{1,2}

  • Temporarily reverting PR #99 to investigate issues with bundling

v2.4.0

v2.3.0

v2.2.2

v2.2.1

v2.2.0

v2.1.0

v2.0.0

Restore dependence on graphql module abhiaiyer91 in PR #46 addressing #6

v1.3.2

  • Add typescript definitions for the bundledPrinter PR #63

v1.3.1

  • Making sure not to log deprecation warnings for internal use of deprecated module jnwng addressing #54

v1.3.0

  • Bump bundled graphql packages to v0.9.1 jnwng in PR #55.
  • Deprecate the graphql/language/parser and graphql/language/printer exports jnwng in PR #55

v1.2.4

Restore Node < 6 compatibility. DragosRotaru in PR #41 addressing #39

v1.2.1

Fixed an issue with fragment imports. PR #35.

v1.2.0

Added ability to import other GraphQL documents with fragments using #import comments. PR #33

v1.1.2

Fix issue with interpolating undefined values Issue #19

v1.1.1

Added typescript definitions for the below.

v1.1.0

We now emit warnings if you use the same name for two different fragments.

You can disable this with:

import { disableFragmentWarnings } from 'graphql-tag';

disableFragmentWarnings();

v1.0.0

Releasing 0.1.17 as 1.0.0 in order to be explicit about Semantic Versioning.

v0.1.17

  • Allow embedding fragments inside document strings, as in
import gql from 'graphql-tag';

const fragment = gql`
  fragment Foo on Bar {
    field
  }
`;

const query = gql`
{
  ...Foo
}
${Foo}
`;

See also http://dev.apollodata.com/react/fragments.html

v0.1.16

  • Add caching to Webpack loader. PR #16

v0.1.15

  • Add Webpack loader to graphql-tag/loader.

v0.1.14

Changes were not tracked before this version.