Skip to content

Commit

Permalink
Update dependency relay-runtime to v16 (#505)
Browse files Browse the repository at this point in the history
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [relay-runtime](https://relay.dev) ([source](https://togithub.com/facebook/relay)) | [`15.0.0` -> `16.0.0`](https://renovatebot.com/diffs/npm/relay-runtime/15.0.0/16.0.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/relay-runtime/16.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/relay-runtime/16.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/relay-runtime/15.0.0/16.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/relay-runtime/15.0.0/16.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>facebook/relay (relay-runtime)</summary>

### [`v16.0.0`](https://togithub.com/facebook/relay/releases/tag/v16.0.0)

[Compare Source](https://togithub.com/facebook/relay/compare/v15.0.0...v16.0.0)

#### Breaking

-   Arguments passed to the filters keyword for the `@connection` directive will now throw if they are invalid instead of being a no-op. \[[`2dd7954`](https://togithub.com/facebook/relay/commit/2dd79543d3f6)]

Flow-related breaking changes:

-   Explicit type annotations are no longer needed for `commitMutation` \[[`603ce54`](https://togithub.com/facebook/relay/commit/603ce546741a)] and `useMutation` \[[`051e469`](https://togithub.com/facebook/relay/commit/051e4694c20b)].
-   Records can no longer be modified directly and can only be passed to utility functions such as those in `RelayModernRecord.js`. \[[`21a896c`](https://togithub.com/facebook/relay/commit/21a896c54e63)]
-   Added the `babel-plugin-syntax-hermes-parser` plugin, which switches Babel to use `hermes-parser` instead of `@babel/parser`, and enables full syntax support for Flow. \[[`c320a89`](https://togithub.com/facebook/relay/commit/c320a892482c)]
-   \[[`1d95ce2`](https://togithub.com/facebook/relay/commit/1d95ce251653)] - Make `React.Element` fully opaque

TypeScript-related breaking changes:

-   Empty variables will now be typed as `Record<PropertyKey, never>` instead of as `{}` to represent an object without properties. \[[`16910c9`](https://togithub.com/facebook/relay/commit/16910c948e9a)] ([#&#8203;4404](https://togithub.com/facebook/relay/issues/4404))
-   Nullable fields will now yield a union of the actual type, `null` and `undefined` (`T | null | undefined`) instead of (`T | null`). To keep the old type generation behavior for now, you may set the `typescriptExcludeUndefinedFromNullableUnion` feature flag in the `relay-compiler` config as follows. Note the feature flag will be removed in a future release. \[[`cc47bc9`](https://togithub.com/facebook/relay/commit/cc47bc95414b)] ([#&#8203;4380](https://togithub.com/facebook/relay/issues/4380))



    {
      "language": "typescript",
      "typescriptExcludeUndefinedFromNullableUnion": true
    }

#### Bug Fixes

-   \[[`313d62d`](https://togithub.com/facebook/relay/commit/313d62d2e96f)] - Don't assign to frozen objects and arrays
-   \[[`a5e0ba3`](https://togithub.com/facebook/relay/commit/a5e0ba35d72f)] - Fix flow errors in the reactive executor and relay runtimes
-   \[[`17f4abf`](https://togithub.com/facebook/relay/commit/17f4abf1eb59)] - Make isWithinUnmatchedTypeRefinement be set on a per-fragment basis
-   \[[`33d5475`](https://togithub.com/facebook/relay/commit/33d5475eba9b)] - Fix RelayObservable ifEmpty: Cannot access 'current' before initialization
-   \[[`4123383`](https://togithub.com/facebook/relay/commit/41233831f88c)] - Do not freeze array buffer views
-   \[[`a2c2b64`](https://togithub.com/facebook/relay/commit/a2c2b6453702)] - Get compiler playground working again ([#&#8203;4336](https://togithub.com/facebook/relay/issues/4336))
-   \[[`04005db`](https://togithub.com/facebook/relay/commit/04005db54643)] - Replace invalid variable characters for import name ([#&#8203;4293](https://togithub.com/facebook/relay/issues/4293))
-   \[[`0fce632`](https://togithub.com/facebook/relay/commit/0fce632a4882)] - Fix refetching and pagination when using a custom nodeInterfaceIdField ([#&#8203;4053](https://togithub.com/facebook/relay/issues/4053))
-   \[[`e784ee4`](https://togithub.com/facebook/relay/commit/e784ee42756b)] - Fix version number parsing in cannotReadPropertyOfUndefined\_\_DEPRECATED ([#&#8203;4314](https://togithub.com/facebook/relay/issues/4314))
-   \[[`a79038b`](https://togithub.com/facebook/relay/commit/a79038b77b3d)] - Fix some grammar in validation selection conflict error messages
-   \[[`6f30869`](https://togithub.com/facebook/relay/commit/6f30869b2896)] - Updating connection handler to be able to deal with streamed edges that are already in memory
-   \[[`2699206`](https://togithub.com/facebook/relay/commit/2699206e9757)] - Always use / as path separators in generated artifacts (to allow stable compilation between windows and unix-based systems)

#### Experimental

[Relay Resolvers](https://relay.dev/docs/guides/relay-resolvers/) are an experimental feature of Relay which allows you to model derived data, and soon client state, in your Relay graph. Since our last release we’ve put considerable work into stabilizing the feature. This includes bug fixes across our compiler, type generation, runtime and LSP (editor integration). In particular, contributors have fixed a number of bugs which made it impossible to use Relay Resolvers with TypeScript.

Documentation:

-   \[[`bd95f00`](https://togithub.com/facebook/relay/commit/bd95f00a1010)] - Updates RelayResolvers docs to include terse syntax and updates to the module resolution details

Improvements:

-   \[[`15c2715`](https://togithub.com/facebook/relay/commit/15c2715fc203)] - Fix compiler issue with stale artifacts for Resolvers in watch mode ([#&#8203;4415](https://togithub.com/facebook/relay/issues/4415))
-   \[[`0b2791f`](https://togithub.com/facebook/relay/commit/0b2791feeebe)] - skip_redundant_nodes: do not mess with order of selections within inline fragments with client edge metadata
-   \[[`77304c2`](https://togithub.com/facebook/relay/commit/77304c284152)] - Add flag and validation for strict resolver flavors
-   \[[`3d66ad8`](https://togithub.com/facebook/relay/commit/3d66ad8907e1)] - Add artifact with schema resolvers
-   \[[`998fd49`](https://togithub.com/facebook/relay/commit/998fd498a104)] - Regression test for not detecting undefined variables on resolver fields
-   \[[`556d696`](https://togithub.com/facebook/relay/commit/556d696fe4e8)] - Fix Relay Resolver typegen for Typescript-based projects ([#&#8203;4274](https://togithub.com/facebook/relay/issues/4274))
-   \[[`508dca3`](https://togithub.com/facebook/relay/commit/508dca3b96ce)] - Add handleMissedUpdates to subscription callback
-   \[[`c899a68`](https://togithub.com/facebook/relay/commit/c899a6817e15)] - skip generating client edge queries for base project fragments
-   \[[`bb50fdf`](https://togithub.com/facebook/relay/commit/bb50fdf624cf)] - Support Graph Mode GraphQL response data processing
-   \[[`c93322b`](https://togithub.com/facebook/relay/commit/c93322b9a6c3)] - Add directives to the base project resolvers (types/fields)
-   \[[`5d22d1c`](https://togithub.com/facebook/relay/commit/5d22d1c21031)] - Show a helpful error if a resolver returns an interface with no implementors ([#&#8203;4428](https://togithub.com/facebook/relay/issues/4428))
-   \[[`a8dc8a9`](https://togithub.com/facebook/relay/commit/a8dc8a93e5b1)] - Retain description for terse resolvers
-   \[[`64b707d`](https://togithub.com/facebook/relay/commit/64b707d9182d)] - Set the cache as missing state when missed updates
-   \[[`b09fd94`](https://togithub.com/facebook/relay/commit/b09fd948822e)] - Support for suspend after initial mounting for plural fragments
-   \[[`f4bdd5a`](https://togithub.com/facebook/relay/commit/f4bdd5ac6044)] - Components can suspend after initial mounting
-   \[[`900f40c`](https://togithub.com/facebook/relay/commit/900f40cae43f)] - Update operation tracker for optimistic updates
-   \[[`b2dcbfe`](https://togithub.com/facebook/relay/commit/b2dcbfe56094)] - Allow `@required` to bubble to client edge resolvers.
-   \[[`b23fe58`](https://togithub.com/facebook/relay/commit/b23fe58e3d04)] - Split out method in RelayReader responsible for propagating resolver metadata
-   \[[`fca7a9c`](https://togithub.com/facebook/relay/commit/fca7a9ca7ebd)] - Catch errors thrown during .read()
-   \[[`4a1d71d`](https://togithub.com/facebook/relay/commit/4a1d71df2fb0)] - Log Required fields even if not missing data
-   \[[`5dfb88b`](https://togithub.com/facebook/relay/commit/5dfb88bc1699)] - Simplify what we keep in the store for resolver errors
-   \[[`feaba45`](https://togithub.com/facebook/relay/commit/feaba45d5e93)] - Validate that resolver fields are always nullable
-   \[[`147498f`](https://togithub.com/facebook/relay/commit/147498ffa8ed)] - non-nullable \__relay_model_instance
-   \[[`6e4ff95`](https://togithub.com/facebook/relay/commit/6e4ff95b9e1d)] - Unify handling of plural/nullabile resolver field types
-   \[[`2732238`](https://togithub.com/facebook/relay/commit/273223898436)] - Reflect correct resolver type in test fixture
-   \[[`f0e802a`](https://togithub.com/facebook/relay/commit/f0e802a7c1f4)] - Ensure incremental builds include all [@&#8203;rootFragment](https://togithub.com/rootFragment) fragments
-   \[[`6a80a0f`](https://togithub.com/facebook/relay/commit/6a80a0f1a74c)] - Add runtime test validating plural `@live` field
-   \[[`6347254`](https://togithub.com/facebook/relay/commit/634725410363)] - Fix bug where suspending `@weak` resolver values were getting normalized
-   \[[`3c44796`](https://togithub.com/facebook/relay/commit/3c4479637d32)] - Enable tsx extension on relay resolvers ([#&#8203;4303](https://togithub.com/facebook/relay/issues/4303))
-   \[[`a02b706`](https://togithub.com/facebook/relay/commit/a02b7065aae0)] - Don't wrap nullish values returned from `@weak` model resolvers
-   \[[`0fe2553`](https://togithub.com/facebook/relay/commit/0fe2553a3aa9)] - Allow legacy resolvers with `@rootFragment` on model types
-   \[[`fd06faa`](https://togithub.com/facebook/relay/commit/fd06faa7546a)] - Preserve correct resolver path across client edges
-   \[[`fccb3c8`](https://togithub.com/facebook/relay/commit/fccb3c850a2f)] - Allow resolvers with `@rootFragment` on model types
-   \[[`b4099fc`](https://togithub.com/facebook/relay/commit/b4099fcb69df)] - Type bug with resolverDataInjector and resolvers that accept args
-   \[[`5c0a740`](https://togithub.com/facebook/relay/commit/5c0a74092420)] - Fix for `@required` on client edges
-   \[[`ed612b8`](https://togithub.com/facebook/relay/commit/ed612b84370d)] - Add feature flag for operation tracking that would work with lazy React notification
-   \[[`cf1650e`](https://togithub.com/facebook/relay/commit/cf1650e4018c)] - Log on LiveResolver batch start/end
-   \[[`f7d62f4`](https://togithub.com/facebook/relay/commit/f7d62f4fb431)] - When adding a concrete object that implements an interface to a schema, also modify interfaces

#### Improvements

-   \[[`58da806`](https://togithub.com/facebook/relay/commit/58da8063854c)] - Allow configurable `@defer`/`@stream` names ([#&#8203;4467](https://togithub.com/facebook/relay/issues/4467))
-   \[[`c4618c6`](https://togithub.com/facebook/relay/commit/c4618c6077a2)] - Add support for copying field errors into the store
-   \[[`9a96c6a`](https://togithub.com/facebook/relay/commit/9a96c6ad0f45)] - Improve error message clarity
-   \[[`4ffd869`](https://togithub.com/facebook/relay/commit/4ffd869524df)] - Add typescriptExcludeUndefinedFromNullableUnion to SingleProjectConfigFile ([#&#8203;4482](https://togithub.com/facebook/relay/issues/4482))
-   \[[`51fca35`](https://togithub.com/facebook/relay/commit/51fca35271f0)] - Stabilize printing paths in fixture tests
-   \[[`9c7b92a`](https://togithub.com/facebook/relay/commit/9c7b92a43e75)] - Type-safe updaters for TypeScript ([#&#8203;4370](https://togithub.com/facebook/relay/issues/4370))
-   \[[`0bc4142`](https://togithub.com/facebook/relay/commit/0bc414290036)] - allow using provided variables with refetchable fragments
-   \[[`38a08ed`](https://togithub.com/facebook/relay/commit/38a08ed8c3b7)] - Allow printing interfaces implementing interfaces
-   \[[`1328fc1`](https://togithub.com/facebook/relay/commit/1328fc1b0421)] - Export node from assignable fragment ([#&#8203;4409](https://togithub.com/facebook/relay/issues/4409))
-   \[[`bacd1ae`](https://togithub.com/facebook/relay/commit/bacd1aef8d68)] - Allow extending interface interfaces
-   \[[`7ba6387`](https://togithub.com/facebook/relay/commit/7ba63874bf05)] - Add getFields() to RelayModernRecord
-   \[[`a062e17`](https://togithub.com/facebook/relay/commit/a062e17047d6)] - Extend multiple schemas in parallel
-   \[[`699b0ab`](https://togithub.com/facebook/relay/commit/699b0aba3605)] - Improve fragment and fragment spread hover
-   \[[`091a4f0`](https://togithub.com/facebook/relay/commit/091a4f097250)] - Allow ast_diff_in_doc drops machine readable struct
-   \[[`99ce43f`](https://togithub.com/facebook/relay/commit/99ce43f042ba)] - Inject changed schema files when loading from saved state
-   \[[`bc40b4b`](https://togithub.com/facebook/relay/commit/bc40b4be8eef)] - Fix error message in UpdatableDisallowRelayResolvers error
-   \[[`7a14de0`](https://togithub.com/facebook/relay/commit/7a14de0dd614)] - Extract type for RequiredFieldLoggerEvent
-   \[[`95c54b4`](https://togithub.com/facebook/relay/commit/95c54b496251)] - Allow persisting to also include the query text for safe migration ([#&#8203;3917](https://togithub.com/facebook/relay/issues/3917))
-   \[[`de6594b`](https://togithub.com/facebook/relay/commit/de6594bf3e84)] - Using opaque type trick to enforce nested relay entry point safety
-   \[[`ce74006`](https://togithub.com/facebook/relay/commit/ce74006e245c)] - Recommend Babel extension to fix VSCode syntax highlighting ([#&#8203;4324](https://togithub.com/facebook/relay/issues/4324))
-   \[[`d04c7be`](https://togithub.com/facebook/relay/commit/d04c7bef8eb6)] - MockPayloadGenerator support for @&#8203;no_inline with args
-   \[[`39ebc1c`](https://togithub.com/facebook/relay/commit/39ebc1c7d28b)] - Avoid reusing AST nodes ([#&#8203;4309](https://togithub.com/facebook/relay/issues/4309))
-   \[[`35fea88`](https://togithub.com/facebook/relay/commit/35fea8837e6c)] - Add parent node information when providing error about printing empty selections
-   \[[`2108aed`](https://togithub.com/facebook/relay/commit/2108aed4c44d)] - Add support for deferred fragments in MockPayloadGenerator

#### Documentation

Additions:

-   \[[`356bc78`](https://togithub.com/facebook/relay/commit/356bc78ccb01)] - Docs v15.0.0
-   \[[`5df8aee`](https://togithub.com/facebook/relay/commit/5df8aee44445)] - Add blog post highlighting changes in Relay 15 ([#&#8203;4258](https://togithub.com/facebook/relay/issues/4258))
-   \[[`098a84e`](https://togithub.com/facebook/relay/commit/098a84e7f1da)] - Add Réa to list of relay users ([#&#8203;4430](https://togithub.com/facebook/relay/issues/4430))
-   \[[`6e9e000`](https://togithub.com/facebook/relay/commit/6e9e000642a4)] - Build Wasm compiler explorer when deploying docs website ([#&#8203;3928](https://togithub.com/facebook/relay/issues/3928))
-   \[[`1ef73b2`](https://togithub.com/facebook/relay/commit/1ef73b25c5c9)] - Update mutations-updates.md ([#&#8203;4424](https://togithub.com/facebook/relay/issues/4424))
-   \[[`563c570`](https://togithub.com/facebook/relay/commit/563c5700d4db)] - Update connections-pagination.md ([#&#8203;4423](https://togithub.com/facebook/relay/issues/4423))
-   \[[`8fcf1fc`](https://togithub.com/facebook/relay/commit/8fcf1fcb8074)] - update docs for missing field handlers ([#&#8203;4259](https://togithub.com/facebook/relay/issues/4259))
-   \[[`2877676`](https://togithub.com/facebook/relay/commit/28776765d74a)] - Add doc explaining client mutation ID and actor ID

Typo fixes:

-   \[[`610806b`](https://togithub.com/facebook/relay/commit/610806b2ece6)] - Fix typo in testing-relay-with-preloaded-queries.md ([#&#8203;4405](https://togithub.com/facebook/relay/issues/4405))
-   \[[`3b9f90a`](https://togithub.com/facebook/relay/commit/3b9f90a2e1f4)] - Fixed typo in refetchable-fragments.md ([#&#8203;4427](https://togithub.com/facebook/relay/issues/4427))
-   \[[`b998f9b`](https://togithub.com/facebook/relay/commit/b998f9b65089)] - fix(docs): remove duplicate text in MutationConfig.md ([#&#8203;4462](https://togithub.com/facebook/relay/issues/4462))
-   \[[`0d63f5a`](https://togithub.com/facebook/relay/commit/0d63f5ab3f2d)] - Update documentation with corrected usage of `useTransistion`
-   \[[`10f00e4`](https://togithub.com/facebook/relay/commit/10f00e448545)] - Fix typo in tutorial ([#&#8203;4444](https://togithub.com/facebook/relay/issues/4444))
-   \[[`555ebfd`](https://togithub.com/facebook/relay/commit/555ebfd3d68d)] - Fix link to an explanation of @&#8203;raw_response_type usage ([#&#8203;4435](https://togithub.com/facebook/relay/issues/4435))
-   \[[`5450fcd`](https://togithub.com/facebook/relay/commit/5450fcd96906)] - Fix small typo in tutorial (queries-2.md) ([#&#8203;4398](https://togithub.com/facebook/relay/issues/4398))
-   \[[`6910c55`](https://togithub.com/facebook/relay/commit/6910c554f2cf)] - Connections Doc Minor Typo Fix ([#&#8203;4369](https://togithub.com/facebook/relay/issues/4369))
-   \[[`34a3581`](https://togithub.com/facebook/relay/commit/34a35815077a)] - Fixed a typo in the website tutorial ([#&#8203;4342](https://togithub.com/facebook/relay/issues/4342))
-   \[[`9942761`](https://togithub.com/facebook/relay/commit/994276157f4a)] - Fix typo in load-query.md documentation ([#&#8203;4106](https://togithub.com/facebook/relay/issues/4106))
-   \[[`7094921`](https://togithub.com/facebook/relay/commit/7094921ee9a3)] - docs: add missing comma ([#&#8203;4295](https://togithub.com/facebook/relay/issues/4295))
-   \[[`dc659df`](https://togithub.com/facebook/relay/commit/dc659dfce37e)] - docs: Fix typo in `getting-started/installation-and-setup.md` ([#&#8203;4306](https://togithub.com/facebook/relay/issues/4306))
-   \[[`442d494`](https://togithub.com/facebook/relay/commit/442d4943d8ae)] - Fix typo in jest method name ([#&#8203;4271](https://togithub.com/facebook/relay/issues/4271))

Tutorial updates:

-   \[[`94745ee`](https://togithub.com/facebook/relay/commit/94745eea040b)] - fixing guided tour page
-   \[[`cba7764`](https://togithub.com/facebook/relay/commit/cba77649c396)] - update fragment tutorial documentation ([#&#8203;4292](https://togithub.com/facebook/relay/issues/4292))
-   \[[`007eff0`](https://togithub.com/facebook/relay/commit/007eff0a68eb)] - Link to persisted queries in tutorial ([#&#8203;4359](https://togithub.com/facebook/relay/issues/4359))
-   \[[`51fee15`](https://togithub.com/facebook/relay/commit/51fee1513e2b)] - Fix TypeScript before continuing in tutorial ([#&#8203;4355](https://togithub.com/facebook/relay/issues/4355))
-   \[[`97cedbc`](https://togithub.com/facebook/relay/commit/97cedbca1a1b)] - Rerun relay compiler ([#&#8203;4288](https://togithub.com/facebook/relay/issues/4288))

Other corrections:

-   \[[`9eb2747`](https://togithub.com/facebook/relay/commit/9eb274756274)] - fix(docs): `readInlineData` function ([#&#8203;4451](https://togithub.com/facebook/relay/issues/4451))
-   \[[`0ce764a`](https://togithub.com/facebook/relay/commit/0ce764a4aa60)] - Remove flow-type parameters from Relay API references
-   \[[`9a1ea37`](https://togithub.com/facebook/relay/commit/9a1ea37e1af3)] - A full example of creating Relay environment in Relay Environment Provider docs
-   \[[`5357c44`](https://togithub.com/facebook/relay/commit/5357c44b56be)] - fix(docs): Error boundaries link points to React legacy docs ([#&#8203;4392](https://togithub.com/facebook/relay/issues/4392))
-   \[[`0bf353a`](https://togithub.com/facebook/relay/commit/0bf353a3c9f0)] - Update commit-mutation.md ([#&#8203;4346](https://togithub.com/facebook/relay/issues/4346))
-   \[[`7e42ea1`](https://togithub.com/facebook/relay/commit/7e42ea1df78e)] - Fix invalid usage of `useMemo()` in docs ([#&#8203;4281](https://togithub.com/facebook/relay/issues/4281))
-   \[[`37ad7f2`](https://togithub.com/facebook/relay/commit/37ad7f260c5f)] - Update fetch-query.md ([#&#8203;4296](https://togithub.com/facebook/relay/issues/4296))
-   \[[`d431902`](https://togithub.com/facebook/relay/commit/d4319028f539)] - Update advanced-pagination.md ([#&#8203;4264](https://togithub.com/facebook/relay/issues/4264))
-   \[[`2f38a11`](https://togithub.com/facebook/relay/commit/2f38a11816a8)] - Fix grammar error in the fragments page of docs ([#&#8203;4267](https://togithub.com/facebook/relay/issues/4267))
-   \[[`6ed8289`](https://togithub.com/facebook/relay/commit/6ed82894fa33)] - Update record method for filling in missing data docs ([#&#8203;4249](https://togithub.com/facebook/relay/issues/4249))

#### Tooling

-   \[[`392ea1f`](https://togithub.com/facebook/relay/commit/392ea1f2d9ab)] - Build compiler playground as part of GitHub CI (take 2) ([#&#8203;4470](https://togithub.com/facebook/relay/issues/4470))
-   \[[`5cadb43`](https://togithub.com/facebook/relay/commit/5cadb4368f69)] - Improve inline fragment suggestions for abstract types ([#&#8203;4453](https://togithub.com/facebook/relay/issues/4453))
-   \[[`f67e9c5`](https://togithub.com/facebook/relay/commit/f67e9c55efc8)] - Make the Relay Compiler Terminal Transient ([#&#8203;4455](https://togithub.com/facebook/relay/issues/4455))
-   \[[`1ae14fe`](https://togithub.com/facebook/relay/commit/1ae14fe73701)] - Add a subcommand to dump definitions to file
-   \[[`3b96b01`](https://togithub.com/facebook/relay/commit/3b96b01d25f1)] - Enable goto def in LSP to goto the actual schema definition ([#&#8203;4434](https://togithub.com/facebook/relay/issues/4434))

#### Miscellaneous

-   \[[`d4ca7d9`](https://togithub.com/facebook/relay/commit/d4ca7d919d04)] - Add From extension AST to definition AST
-   \[[`beb0e92`](https://togithub.com/facebook/relay/commit/beb0e920a9fc)] - graphql-syntax: add comments explaining FloatNode
-   \[[`a55a3fa`](https://togithub.com/facebook/relay/commit/a55a3fa11777)] - Add newtype for Union::name
-   \[[`1c8917b`](https://togithub.com/facebook/relay/commit/1c8917b179bb)] - Make InMemory schema cloneable
-   \[[`4d9f255`](https://togithub.com/facebook/relay/commit/4d9f2552cdf8)] - Level-based logging for graphql schema tools
-   \[[`a203dc6`](https://togithub.com/facebook/relay/commit/a203dc6e25dc)] - Remove duplicated flow definitions from arvr/js
-   \[[`48ce83a`](https://togithub.com/facebook/relay/commit/48ce83af6968)] - Update strum and enable the derive feature
-   \[[`59912af`](https://togithub.com/facebook/relay/commit/59912af0e759)] - Remove unused method arguments ([#&#8203;4326](https://togithub.com/facebook/relay/issues/4326))
-   \[[`17d9f9f`](https://togithub.com/facebook/relay/commit/17d9f9f05a9d)] - Remove Flight support in Relay Compiler
-   \[[`5dd6914`](https://togithub.com/facebook/relay/commit/5dd6914ea89a)] - Create stand-alone PR to fix VSCode extension build ([#&#8203;4275](https://togithub.com/facebook/relay/issues/4275))
-   \[[`cc1daa1`](https://togithub.com/facebook/relay/commit/cc1daa18fb08)] - Create shared mock for scheduler ([#&#8203;4313](https://togithub.com/facebook/relay/issues/4313))
-   \[[`f5c48cd`](https://togithub.com/facebook/relay/commit/f5c48cdd9369)] - Relay: More Resilient `cannotReadPropertyOfUndefined`
-   \[[`46fa2fa`](https://togithub.com/facebook/relay/commit/46fa2faf0ecc)] - Remove `experimental.abstract_locations` config
-   \[[`3073f1e`](https://togithub.com/facebook/relay/commit/3073f1e4a588)] - Add feature flag to log missing data using invariant in prod
-   \[[`e2b8516`](https://togithub.com/facebook/relay/commit/e2b85160a713)] - Remove `inference_mode` config now that LTI is the default

#### Flow Changes

-   \[[`92aaeaf`](https://togithub.com/facebook/relay/commit/92aaeafb9e06)] - Add TRawResponse to useClientQuery generics to support @&#8203;raw_response_type
-   \[[`9b7e157`](https://togithub.com/facebook/relay/commit/9b7e157c0295)] - Strictify EntryPoint typing by making `TPreloadParams` invariant
-   \[[`fe26a5e`](https://togithub.com/facebook/relay/commit/fe26a5eeb2da)] - Fix flow suppression in buildReactRelayContainer
-   \[[`79ba933`](https://togithub.com/facebook/relay/commit/79ba93388fde)] - Suppress forwardRef flow error on WWW
-   \[[`fdafa27`](https://togithub.com/facebook/relay/commit/fdafa272e014)] - Enable mapped type
-   \[[`eb29556`](https://togithub.com/facebook/relay/commit/eb295569850d)] - Replace $Call with ReturnType in flow typegen
-   \[[`037a28f`](https://togithub.com/facebook/relay/commit/037a28fd6d21)] - Make Props readonly
-   \[[`f0dbef2`](https://togithub.com/facebook/relay/commit/f0dbef284b74)] - Codemod `$Shape` to `Partial` in Relay files, suppressing errors
-   \[[`f9cba52`](https://togithub.com/facebook/relay/commit/f9cba52f6bdb)] - Update setLinkedRecords flowtype
-   \[[`e43a369`](https://togithub.com/facebook/relay/commit/e43a36913a28)] - Extract events into named types ([#&#8203;4254](https://togithub.com/facebook/relay/issues/4254))

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/X-oss-byte/Nextjs).
  • Loading branch information
renovate[bot] authored Oct 22, 2023
1 parent 63c8806 commit cc1196d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@
"react-ssr-prepass": "1.5.0",
"react-virtualized": "9.22.5",
"relay-compiler": "16.0.0",
"relay-runtime": "15.0.0",
"relay-runtime": "16.0.0",
"release": "6.3.1",
"request-promise-core": "1.1.4",
"resolve-from": "5.0.0",
Expand Down
8 changes: 4 additions & 4 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit cc1196d

Please sign in to comment.