Skip to content
Compare
Choose a tag to compare
@kitten kitten released this 01 Oct 12:49
· 922 commits to main since this release
3accd99

This release moves urql from being in dependencies to peerDependencies. Please install it
explicitly, as you may have already in the past, and ensure that both urql and @urql/core are
not duplicated with either npm dedupe or npx yarn-deduplicate.

npm i --save urql
# or
yarn add urql

Major Changes

  • Move the urql dependency to a peer dependency.
  • Remove the automatic polyfilling of fetch since this is done automatically starting at
    Next v9.4
    If you are using a version before 9.4 you can upgrade by installing isomorphic-unfetch
    and importing it to polyfill the behavior, by @JoviDeCroock (See #1018)