Skip to content

@urql/next@2.0.1

Choose a tag to compare

@github-actions github-actions released this 15 Jun 17:41
Immutable release. Only release title and notes can be modified.
15f622c

Patch Changes

  • Remove the invalid exports field from the generated subpath package.json files (e.g. @urql/exchange-graphcache/extras, @urql/exchange-graphcache/default-storage, @urql/core/internal, @urql/next/rsc). These targets pointed at the parent dist/ directory (../dist/...), which violates the Node.js package-exports spec requirement that every exports target begin with ./. Metro (Expo 53 / React Native 0.79) validates this and logged a warning for every affected package. Subpath resolution continues to work: exports-aware bundlers resolve through the root package.json, while legacy resolution relies on the main/module/types fields that remain in place
    Submitted by @JoviDeCroock (See #3886)