graphql-tag
Advanced tools
Comparing version 2.10.0 to 2.10.1
# Change log | ||
### v2.10.0 | ||
* Add support for `graphql@14` by [timsuchanek](https://github.com/timsuchanek) in [#210](https://github.com/apollographql/graphql-tag/pull/210), [#211](https://github.com/apollographql/graphql-tag/pull/211) | ||
### v2.9.1 | ||
@@ -4,0 +7,0 @@ * Fix IE11 support by using a regular for-loop by [vitorbal](https://github.com/vitorbal) in [#176](https://github.com/apollographql/graphql-tag/pull/176) |
@@ -133,3 +133,9 @@ "use strict"; | ||
var allRefs = new Set(); | ||
var newRefs = new Set(opRefs); | ||
var newRefs = new Set(); | ||
// IE 11 doesn't support "new Set(iterable)", so we add the members of opRefs to newRefs one by one | ||
opRefs.forEach(function(refName) { | ||
newRefs.add(refName); | ||
}); | ||
while (newRefs.size > 0) { | ||
@@ -136,0 +142,0 @@ var prevRefs = newRefs; |
{ | ||
"name": "graphql-tag", | ||
"version": "2.10.0", | ||
"version": "2.10.1", | ||
"description": "A JavaScript template literal tag that parses GraphQL queries", | ||
@@ -5,0 +5,0 @@ "main": "./lib/graphql-tag.umd.js", |
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
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
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
1119
72308
17
13