Skip to content

Commit

Permalink
Adjust graphql peer dep to cover explicit minor ranges
Browse files Browse the repository at this point in the history
Since the ^ operator only covers any minor version if the major
version is not 0 (since a major version if technically considered
development by semver 2), the current ^0.11.0 || ^14.0.0 graphql
range doesn't cover 0.12.* or 0.13.*.

Fixes #3737.
  • Loading branch information
hwillson committed Jul 27, 2018
1 parent 45deadb commit 1ae788d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/apollo-client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
"zen-observable": "^0.8.0"
},
"peerDependencies": {
"graphql": "^0.11.0 || ^14.0.0"
"graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0"
},
"devDependencies": {
"@types/benchmark": "1.0.31",
Expand Down

0 comments on commit 1ae788d

Please sign in to comment.