graphql-tag
Advanced tools
Comparing version 2.1.0 to 2.2.0
# Change log | ||
### vNEXT | ||
### v2.2.0 | ||
- Bumping `graphql` peer dependency to ^0.10.0 [dotansimha](https://github.com/dotansimha) in [PR #85](https://github.com/apollographql/graphql-tag/pull/85) | ||
### v2.1.0 | ||
- Add support for calling `gql` as a function [matthewerwin](https://github.com/matthewerwin) in [PR #66](https://github.com/apollographql/graphql-tag/pull/66) | ||
- Including yarn.lock file [PowerKiKi](https://github.com/PowerKiKi) in [PR #72](https://github.com/apollographql/graphql-tag/pull/72) | ||
- Ignore duplicate fragments when using the Webpack loader [czert](https://github.com/czert) in [PR #52](https://github.com/apollographql/graphql-tag/pull/52) | ||
- Fixing `graphql-tag/loader` by properly stringifying GraphQL Source [jnwng](https://github.com/jnwng) in [PR #65](https://github.com/apollographql/graphql-tag/pull/65) | ||
@@ -5,0 +12,0 @@ ### v2.0.0 |
{ | ||
"name": "graphql-tag", | ||
"version": "2.1.0", | ||
"version": "2.2.0", | ||
"description": "A JavaScript template literal tag that parses GraphQL queries", | ||
@@ -28,9 +28,9 @@ "main": "./lib/graphql-tag.umd.js", | ||
"chai": "^3.5.0", | ||
"graphql": "^0.9.1", | ||
"mocha": "^3.2.0", | ||
"graphql": "^0.10.0", | ||
"mocha": "^3.4.1", | ||
"rollup": "^0.41.5" | ||
}, | ||
"peerDependencies": { | ||
"graphql": "^0.9.x" | ||
"graphql": "^0.9.0 || ^0.10.0" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
69641