You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
NPM doesn't handle -beta, -rc or similar in any special way, meaning that because s comes after r in the alphabet, 2.0.0-sashko.0 is interpreted as a newer version than 2.0.0-rc.7, which is the latest version.
NPM doesn't handle
-beta
,-rc
or similar in any special way, meaning that becauses
comes afterr
in the alphabet,2.0.0-sashko.0
is interpreted as a newer version than2.0.0-rc.7
, which is the latest version.The list here https://www.npmjs.com/package/apollo-server-lambda lists the versions by date, but in NPM/Yarn it will fetch it by version number.
So, if you have a version pinning of
^2.0.0-rc.7
you will currently get2.0.0-sashko.0
instead of the RCs.Running
yarn upgrade apollo-server@bla
(to force the list of versions) will get you the following list,Solution: You should probably delete
2.0.0-sashko.0
to avoid others getting their builds broken.The text was updated successfully, but these errors were encountered: