apollo-server-koa: Please upgrade to dependencies that have graphql 14.0.0 to peerDependencies
See original GitHub issueapollo-server-koa as of 2.2 has graphql 14.0.0 as peerDependency which is great! However some of the related dependencies do not have graphql 14.0.0 as peerDependency at the version apollo-server-koa is using them.
apollo-server-koa > @apollographql/apollo-upload-server@5.0.3" has incorrect peer dependency "graphql@^0.13.1".
apollo-server-koa > apollo-server-core > graphql-tag@2.9.2" has incorrect peer dependency "graphql@^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0".
I think the latest versions of graphql-tag and @apollographql/apollo-upload-server supports graphql 14.0.0 so if apollo-server-koa and apollo-server-core could upgrade its dependencies to the latest version it would be solved.
Issue Analytics
- State:
- Created 5 years ago
- Reactions:4
- Comments:9 (6 by maintainers)
Top Results From Across the Web
apollo-server-core versions and peer dependencies
Online Peer dependency version tool to search for compatible versions of related NPM packages.
Read more >Outdated packages/warnings even after upgrading to latest ...
Hi all, So, I have this observation, after I upgraded, I still see outdated packages and warnings after I ran the command (yarn...
Read more >Npm dependency conflict - how to solve it? - Stack Overflow
this has occured because the peer dependencies were conflicting for new versions of npm. the package is not so well maintained.
Read more >npm Peer Dependencies - JavaScript inDepth
In this article I clarify what npm Peer Dependencies are and especially when you should use them. Peer Dependencies are listed in the...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@abernix You are correct, this is fixed. I ran
yarn add apollo-server-koa@2.3.0-alpha.0
and after that I still saw the warning. However I realised now thatyarn.lock
actually locked down the version ofgraphql-tag
. After runningyarn upgrade
all apollo-server warnings are gone! Sorry for wasting your time!The
alpha
releases didn’t identify any problems so I’ve graduated this to the officialapollo-server-*@2.3.0
releases.