Skip to content

chore(deps): update dependency relay-runtime to v21#92

Open
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/major-relay-monorepo
Open

chore(deps): update dependency relay-runtime to v21#92
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/major-relay-monorepo

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Mar 10, 2021

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
relay-runtime (source) ^10.1.3^21.0.1 age confidence

Release Notes

facebook/relay (relay-runtime)

v21.0.1

Compare Source

Version 21.0.0 had an issue where it failed to include our new TypeScript types in the published NPM bundle. Thanks to @​PHILLIPS71 for the pull request identifying and resolving the issue. This point release resolves that issue and includes a number of other minor improvements which have landed since to v21.0.0 release.

Bug fixes
  • Fix(build): ship TypeScript definition files in gulp dist build (#​5287) by Jordan Phillips (commit)
Added
  • Feat(compiler): add --noWatchman CLI flag (#​5292) by Jordan Eldredge (commit)
Improvements
  • Feat: Warn on deprecated enum values used as arguments (#​5277) by jungwoo3490 (commit)
  • Add shard_extra_artifacts feature flag to shard PHP text artifacts by Tianyu Yao (commit)
  • Allow updatable fragments to be spread at the top level of another fragment by Rajiv Anisetti (commit)
Documentation Improvements
  • Update v21 release notes, compiler CLI docs, and codemods guide by Jordan Eldredge (commit)
  • Document fetchPolicy option for fetchQuery (#​5244) by Batrić Perović (commit)
  • Update Film import path to include file extension (#​5243) by Meshack Ogeto (commit)
  • Fix the quickstart docs by Evan Yeung (commit)
  • Relay 21 release notes blog post by Jordan Eldredge (commit)
Miscellaneous
  • Implement feature flag to gate rollout of flow modern syntax by Sam Zhou (commit)
  • Use simpler intersect algorithm by Matt Mahoney (commit)
  • Update compiler clock to query result on subscribe by Shashank Kambhampati (commit)

v21.0.0

Compare Source

Relay v21.0.0 brings first-party TypeScript support, modernized Flow type generation, new error handling capabilities, and experimental React Server Components support. This release contains several breaking changes -- please read the migration notes below carefully.

Upgrading

TypeScript users: First-party .d.ts type definitions are now shipped directly in relay-runtime and react-relay. You no longer need @types/relay-runtime from DefinitelyTyped. Node.js ESM named imports (e.g. import { fetchQuery } from 'relay-runtime') now work correctly in .mjs files. Thank you to everyone who contributed to the DefinitelyTyped type definitions over the years — your work kept the Relay TypeScript community going, and it served as a valuable reference for these first-party types.

Flow users -- action required: Generated types now use modern Flow syntax. (expr: Type) casts are replaced with (expr as Type) (requires Flow >= 0.250.0), $ReadOnlyArray becomes ReadonlyArray, mixed becomes unknown, and $NonMaybeType becomes NonNullable. After upgrading, you must re-run the Relay compiler to regenerate all artifacts.

@live_query removed: The @live_query directive has been removed. Migrate to @client_polling(interval: ...) for polling behavior, or @live for server-pushed updates.

Relay Resolvers -- new syntax required: The enable_legacy_verbose_resolver_syntax flag has been removed. The legacy verbose docblock syntax (@onType, @onInterface, @fieldName, @edgeTo) no longer works. In addition, we've replaced the generic @RelayResolver tag with more specific @relayField and @relayType tags. The Relay compiler can automatically migrate you to this new syntax via the relay-compiler codemod fix-all command. If you're not ready to migrate, you can enable the allow_legacy_relay_resolver_tag feature flag in your compiler config file.

@oneOf inputs: @oneOf input types now generate a stricter discriminated union type that only permits one property at a time, instead of an object with all optional fields. This catches bugs at compile time where multiple fields were incorrectly set simultaneously. You can opt out via oneOfType: "relaxed" in compiler config if needed.

New Features

@catch expansion: @catch now works on @connection fields and client edge fields, letting you gracefully handle field errors in pagination and client-edge scenarios instead of throwing.

@alias on fragment definitions: The @alias directive now works on fragment definitions (not just inline fragments).

New compiler CLI tools: Two experimental subcommands are available: experimental-regenerate-sub-schema replaces the currently configured schema file with the portion of the provided "full schema" and experimental-compare-document-ir compares intermediate representations (IR) of documents passed and outputs selections that exists in left but not in right.

React Server Components (Experimental): A new react-relay/rsc_EXPERIMENTAL entry point provides an experimental API for fetching GraphQL in server components: serverFetchQuery for server-side data fetching, serverReadFragment for reading fragment data on the server, and serverPreloadQuery + useQueryFromServer for preloading data on the server and hydrating the client store. These APIs are experimental and are likely to change in upcoming versions.

Notable Bug Fixes
  • Large schema crash fixed: A stack overflow when printing schemas with very large types (1000+ fields) has been fixed with iterative drop logic.
  • @raw_response_type accuracy: Selections on abstract types in @raw_response_type are now correctly typed as optional when the concrete type may not implement the abstract type (PR #​4775).
  • Conflicting @match fields: The compiler now properly validates and reports errors for conflicting @match fields across fragments, preventing silent runtime issues.
  • Watch mode stability: Numerous incremental compilation fixes improve reliability of --watch mode, including cross-project fragment crash resolution and proper detection of schema field changes.
Breaking Changes
  • Remove @​live_query directive support from Relay compiler (commit)
  • Deprecate polling_interval on @​live_query in Relay compiler (commit)
  • @​oneOf input objects stricter typegen (#​5108) (commit)
  • Remove Node interface restriction for mixed interface server types (commit)
  • Flip casting syntax feature flag default (commit)
  • Eliminate legacy casting syntax in relay (commit)
  • Remove enable_legacy_verbose_resolver_syntax feature flag (commit)
  • Delete readonly_array_for_flow flag from the rust code (commit)
  • Change mixed to unknown (commit)
  • Change $NonMaybeType to NonNullable (commit)
  • Remove unused TPreloadParams generic from PreloadProps<> (commit)
  • Remove the relay/typeInformation LSP command (commit)
  • Remove unused initialization params from lsp (commit)
Added
  • Add missing TS type declarations for RelayFeatureFlags and Store log option (commit)
  • Support named exports with nodejs ESM (#​5162) (commit)
  • Add TypeScript type defs to react-relay (commit)
  • Add TypeScript type defs to relay-runtime (commit)
  • Make resolversSchemaModule path optional to allow skipping map file generation (commit)
  • Add emit_nogrep_annotation feature flag for incremental @​nogrep removal (commit)
  • Support @​catch directive on client edge fields (commit)
  • Add query-stats subcommand for per-operation fragment usage analysis (commit)
  • Add find_subset_violations binary for schema subset checking (commit)
  • Add Relay compiler command to dump artifact map (commit)
  • Support @​live on Conditions (Relay + mobile) (commit)
  • Add experimental command to OSS the Relay compiler to update schema to be the used subset of a larger schema (commit)
  • Add feature flag and codegen for ReadonlyArray (commit)
  • Support @​catch on @​connection (commit)
Bug Fixes
  • Fix RequiredDirectiveArgAdded description message in find_subset_violations (commit)
  • Fix incremental bug: multi-project cross-fragment crash in CommonJS mode (commit)
  • Fix SchemaSet partitioning enum values + more (commit)
  • Don't emit has_s2c_resolvers flag for Query-rooted resolvers (commit)
  • Fix typos in set_exclude comments (commit)
  • Clear is_building in incremental build loop when no pending changes (commit)
  • Fix SchemaSet::exclude to preserve type definitions when other is an extension (commit)
  • Clear daemon artifact cache on watch loop restart after rebase (commit)
  • Fix bug with conflicting @​match fields (commit)
  • Report all fragment validation errors instead of stopping at first (commit)
  • Fix stack overflow in RcDoc Drop for large single-type definitions (commit)
  • Fix raw response with selections on abstract type (#​4775) (commit)
  • Fix codemod to collect errors from both Flow-based and docblock parsing paths (commit)
  • Fix exclude_schema to also remove fields from client extension types (commit)
  • Fix query-stats -p flag not filtering projects and optimize stats computation (commit)
  • Fix incremental build missing field return type changes (commit)
  • Do not add empty Query after fixing all types (commit)
  • Fix Diagnostic JSON serialization panic caused by typetag/serde tag collision (commit)
  • Fix vulerability issue on fbsource/xplat/js/RKJSModules/Libraries/Relay/oss/github/website/yarn.lock @​pnpm/npm-conf (commit)
  • Fix stack overflow in graphql-merge-sdl for large schemas (commit)
  • Fix Flow tabs to use @​relayField for field resolvers (commit)
  • Fix wrong description for strong_id__ flatbuffer field (commit)
  • Fix infinite recursion in InexactObject::Ord::cmp (commit)
  • Fix ProjectFixture to discard preamble before first separator (commit)
  • Fix catch and alias directive not working together (commit)
  • Fix incremental build missing mutation field return type changes (commit)
  • Fix for incremental_delete_fragment_used_by_relay_resolver (commit)
  • Fix for delete_match_removes_normalization (commit)
  • Fix @​refetchable preferFetchable boolean value being ignored (commit)
  • Fix wrong directive name in duplicate label error for @​stream (commit)
  • Fix is_sub_range flawed multi-line range comparison (commit)
  • Fix schema cache not invalidated on base project schema changes (commit)
  • Fix wrong error location for missing parameter type annotation (commit)
  • Fix wrong dispatch in default_transform_variable_definitions (commit)
  • Fix fragment name typo in docs (#​5194) (commit)
  • Fix new flow casting syntax codegen bug (commit)
  • Fix new flow casting syntax codegen bug (commit)
  • Fix infinite loop when extracting bare graphql token (commit)
  • Fix new flow casting syntax codegen bug (commit)
  • Fix set_exclude to preserve empty types not in exclusion set (commit)
  • Fix typo in loading experience section (#​5133) (commit)
  • Fix GraphQL lexer crash on emoji (#​5172) (commit)
  • Fix resolversSchemaModule codegen for @​gqlField property lookups (commit)
  • Fix useMutation Activity compatibility (commit)
  • Fix subschema extraction to include all input fields for inline objects (commit)
  • Fix directive comparison to ignore source byte positions (commit)
  • Fix typos and grammatical errors in blog posts and specs (commit)
  • Fix typos and grammatical errors in debugging, tutorial, getting-started (commit)
  • Fix typos and grammatical errors in guides (commit)
  • Fix typos and grammatical errors in guided-tour (commit)
  • Fix typos and grammatical errors in api-reference (commit)
  • Fix trunk: update flow-bin 0.298 in yarn.lock (commit)
  • Fix abstract field argument merging (commit)
  • Fix types with original definition (commit)
  • Fix update-cargo-lock workflow by upgrading create-pull-request action (#​5141) (commit)
  • Fix enum-in-InputObject detection in incremental builds (commit)
  • Fix bug where subschema extraction would fail if Query type was omitted (commit)
  • Fix panic when source directory contents match excludes (commit)
  • Fix home dark theme code highlight (#​5094) (commit)
  • Fix trusted publishing by adding required OIDC permissions (#​5122) (commit)
  • Fix trusted publishing Node.js compatibility (#​5117) (commit)
  • Fix Rust build in CI (#​5100) (commit)
  • Fix infinite suspense on client only query when there is missing data (commit)
  • Fix an incremental mode bug with resolvers on abstract types (commit)
  • Fix OSS flow error (commit)
  • Fix useFragment w <Activity> a->b->a mutation edge case (commit)
  • Fix for weak resolver GC bug (commit)
  • Fix printing repeatable for directive definitions (commit)
Improvements
  • Expose ToSetDefinition trait and set_type_from_definition (commit)
  • Split location-based info from is-present/extension info (commit)
  • Detect external modifications to generated artifacts (commit)
  • Surface compiler crashes to meerkat clients (commit)
  • Use watchman clock to synchronize file subscription and write events (commit)
  • Round-trip extension-only types as extend X { ... } instead of X { ... } (commit)
  • Clarify how to construct SchemaSet from base + extension SDL sources (commit)
  • Add S2C execution to Scope: handleS2CExecutions, readInto, createRootFragmentNode (commit)
  • Phase 3: @​defer/@​stream support in NormalizationEngine (commit)
  • Add a directives function for TypeSystemDefinition (commit)
  • Phase 1+2: Hoist normalization to network layer — infrastructure + initial responses (commit)
  • Emit has_s2c_resolvers on operations with S2C resolvers (commit)
  • Add SetEnumValue and SetArgumentValue wrappers for enum values and directive arguments (commit)
  • Add SetDirectiveValue to wrap directive values with definition metadata (commit)
  • Support multiple source locations in SchemaDefinitionItem (commit)
  • Add base_restricted_directives to find_subset_violations (commit)
  • Add base_restricted_directives to SafeExclusionOptions (commit)
  • Add field-level directive validation and rename InconsistentTypeDirectiveUse (commit)
  • Refactor exclude_directives to accept SafeExclusionOptions (commit)
  • Use imports instead of qualified types in find_subset_violations (commit)
  • Add CLI arg, comments, and tests for subset_directives in find_subset_violations (commit)
  • Use CanHaveDirectives trait in walk_type_directive_violations (commit)
  • Include full directive definition in subset violation error message (commit)
  • Add default schema definition for scalars in BUILTIN_SCALAR_SET (commit)
  • Add source control update simulation to daemon integration test infrastructure (commit)
  • Support directive subset matching in schema set exclusion (commit)
  • Merge directive arguments in schema-set when existing directive has none (commit)
  • Include fragment_arguments in normalization AST for exec-time resolvers (commit)
  • Update schema set merging to return errors instead of panicking (commit)
  • Update schema_set public functions to return DiagnosticsResult (commit)
  • Update print_base_and_client_definitions to return a Diagnostic result (commit)
  • Log suspense in Relay hooks (commit)
  • Make watchman globs include dot files by default for excludes (commit)
  • Consistently sort used schema directives (commit)
  • Add write_artifacts sub-timers to commit_project telemetry (commit)
  • Upgrade minimatch to 3.1.4 to fix CVE-2026-27903/27904 (commit)
  • Add source locations to subset violations (commit)
  • Xplat/js: Auto-fix react-prefer-namespace-import ESLint Rule (commit)
  • Add Flow type annotation to @​gqlField property accessor lambdas (commit)
  • Gate @​RelayResolver usage behind allow_legacy_relay_resolver_tag in relay-schema-generation (commit)
  • Add parse_docblock_with_offset to docblock-syntax (commit)
  • Sort docblock test output by SDL instead of debug IR (commit)
  • Optimize client_extensions transform — 89% faster via PointerAddress cache (commit)
  • Add server_object_operations field to ClientEdgeMetadataDirective (commit)
  • Add test cases for mixed interface client edges (commit)
  • Upgrade minimatch 3.1.2 → 3.1.4 (CVE-2026-27903, CVE-2026-27904) (commit)
  • Rename build_schema_with_extensions to build_schema_with_extensions_parallel (commit)
  • Update @​live_query(polling_interval:) to @​client_polling(interval:) in Relay tests (commit)
  • Add serverObjectOperations to ReaderClientEdgeToClientObject Flow type (commit)
  • Add Bicycle type to test schema (commit)
  • Replace flatbuffer schema support with compact schema in relay compiler (commit)
  • Create new_flow_casting_syntax_require_cond flag to gate new casting syntax for requireCond (commit)
  • Back out "Deploy 0.305.0 to xplat" (commit)
  • Add compact binary schema serialization format (commit)
  • Update platform010 & platform010-aarch64 symlinks (take 2) (commit)
  • Add pretty crate for document-based formatting (commit)
  • Simplify prettier GraphQL printers by extracting shared utilities (commit)
  • Preserve block string syntax in Rust GraphQL AST printer (commit)
  • Expand SDL prettier comparison tests to cover all definition types (commit)
  • Log when in daemon incremental build (commit)
  • Implement field-level directive line-breaking (commit)
  • Add docblock IR overlay to FlatBuffer schema (commit)
  • Add log file to daemon to help with debugging (commit)
  • Add prettier_common module for shared formatting utilities (commit)
  • Update platform010 & platform010-aarch64 symlinks (commit)
  • Static doc for the CLI subcommand (commit)
  • Flatbuffer schema tracking in CompilerState (commit)
  • Support diffing SDLSchemas (commit)
  • Relay Flatbuffer SchemaLocation (commit)
  • Properly gate use_new_flow_casting_syntax flag (commit)
  • Allow InputObjectRemoved to be incremental. (commit)
  • Allow ObjectRemoved to be incremental. (commit)
  • Add CLI tool for formatting GraphQL files (commit)
  • Add fragment-level directive line-breaking support (commit)
  • FlatBuffer schema: preserve directives on argument definitions (commit)
  • Add missing hyper-util features to third-party Cargo.toml for OSS builds (commit)
  • TransformTypeParamBound codemod 5/9 (commit)
  • Make module name prefix validation opt-in for non-Haste projects (#​5200) (commit)
  • TransformTypeParamBound codemod 4/9 (commit)
  • S3: Prefetch Eden hash map (commit)
  • Fbsource//xplat/js/RKJSModules/Libraries/Relay:Relay (commit)
  • Add actionable guidance to plugin-socket dependency and field argument conflict error messages (commit)
  • Add Buck target for relay-compiler-playground WASM build (commit)
  • Avoid redundant cloning of executable definition ASTs (commit)
  • Update to hyper 1 (commit)
  • Add prettier executable and document printers (commit)
  • Implement prettier-compatible SDL printer (commit)
  • Unbreak tests (commit)
  • Replace RwLock with DashMap in flatten transform caches (commit)
  • Relax compiler validation for S2C edges in exec time resolvers (commit)
  • Avoid querying artifact file hash map when zero artifacts. (commit)
  • Parallelize source hashing and schema change dependency analysis (commit)
  • Parallelize schema parsing for current/previous in detect_changes. (commit)
  • Classify unsafe ObjectAdded as SafeWithIncrementalBuild (commit)
  • Reuse built schema in schema_change_safety (commit)
  • Classify InputObjectChanged as SafeWithIncrementalBuild (commit)
  • Skip redundant base-project schema safety check (commit)
  • Add builtin_scalars module with BUILTIN_SCALAR_SET and helper functions (commit)
  • Initial CLI tooling for updating allowlist without manual changes (commit)
  • Print errors to client (split) (commit)
  • Extract diagnostic formatting into reusable functions (split) (commit)
  • Migrate test projects from @​RelayResolver to @​relayType/@​relayField (commit)
  • Print project stats to the client (commit)
  • Add @​relayType and @​relayField docblock tags for Relay Resolvers (#​5179) (commit)
  • Refactor integration test output to always use ++ or xx for changes (commit)
  • Load FlatBuffer schemas in Relay compiler with SDL fallback (commit)
  • Implement FlatBuffer getter methods (commit)
  • Add FlatBuffer output format to schema-extend binary (commit)
  • Keep locations spec-sorted in print_schema (commit)
  • Use Schema Coordinate for argument errors (commit)
  • Keep locations sorted when translating to SDL definition (commit)
  • Add more Relay timing events (commit)
  • Add fix for @​module incremental deletion bug (commit)
  • Raise log version requirement to 0.4.29 (commit)
  • Add field-granular subscription notifications for client:root (commit)
  • Add repro test for @​module incremental deletion bug (commit)
  • Add an option to generate flow code with new casting syntax (commit)
  • Upgrading petgraph to 0.8 (commit)
  • Add test fixture for empty nested input subschema extraction (commit)
  • Integrate with the Relay compiler (commit)
  • Faster comparisons (commit)
  • Deletion integration tests (commit)
  • Run full build alongside incremental build to catch incremental bugs (commit)
  • Expose diff tool as binary command (commit)
  • Copy IR diff core logic and tests to relay crates (commit)
  • Add crate for parsing + printing Schema Coordinates (commit)
  • Support @​__metadata directive on fragments (commit)
  • Add Test file source for injecting file change notifications (commit)
  • Refactor relay_resolvers into module directory (commit)
  • Refactor shadow_resolvers to use get_resolver_info helper (commit)
  • Codex -> CodeHub in relay LSP (commit)
  • Restrict npm publish job to main branch and version tags (#​5156) (commit)
  • Update platform010 & platform010-aarch64 symlinks (commit)
  • Update platform010 & platform010-aarch64 symlinks (commit)
  • Add BuildStatus to detect if build is ongoing before writing files (commit)
  • Visit refetchable fragment directive arguments when doing dependnecy tracking (commit)
  • Regression test for S615905 (commit)
  • Add incremental build support to compiler integration tests (commit)
  • Add file changes support to ProjectFixture (commit)
  • Deprecate legacy verbose resolver syntax (commit)
  • Validate that returnFragment is a valid, unused fragment name (commit)
  • Rand: Upgrade 0.8 to 0.9, take 2, batch 2/N (commit)
  • Stub out transform for shadow resolvers (commit)
  • Add docblock tag for @​returnFragment (name can change later) (commit)
  • Add compiler feature flag for shadow resolvers (commit)
  • Add feature flag to enable legacy verbose syntax (commit)
  • Fix: print enum value directives (commit)
  • Sort directives and arguments in schema-print for stable output (commit)
  • Rule that uses the allowlist for client schema (commit)
  • Transform another round of xplat (commit)
  • Introduce set_remove_defined_references to remove Set contents from a given exclusionary schema (commit)
  • SchemaSet => AST is better sorted (commit)
  • Update EntryPoint type to support nullable PreloadedQuery (commit)
  • Transform all remaining utility types (commit)
  • Rand: Upgrade 0.8 to 0.9, batch 17/N (commit)
  • Update eslint-plugin-react to 7.37.5 (commit)
  • Daily arc lint --take PRETTIERJAVASCRIPT (commit)
  • SchemaSetSyntaxVisitor => SyntaxVisitor (commit)
  • ProgramWithDependencies: allow sig and def (commit)
  • Do not use dep IR to build program (commit)
  • Add test case demonstrating enum-in-InputObject bug (commit)
  • Refactor subschema extration to enable writing tests (commit)
  • Transform $Values to Values (commit)
  • Add Claude command to automate fixing github ci (#​5129) (commit)
  • Improve validation of config paths (commit)
  • Make single project excludes consistent with multi-project excludes (commit)
  • Capture config validation errors in integration tests (commit)
  • Regression tests for issues that cause the compiler to panic (commit)
  • Stop using fb-only markers in delete mode (example) (commit)
  • Update declare functions to have named params in xplat/js (commit)
  • Transform $ReadOnlyArray to ReadonlyArray 10/n (commit)
  • Transform $ReadOnly to Readonly 22/n (commit)
  • Add vultureHash to metadata's Flow type (commit)
  • Transform mixed to unknown in xplat/js (commit)
  • Transform $NonMaybeTypes to NonNullable (commit)
  • Normalize path separators in artifact map debug output (commit)
  • Include seen directives when extracting used schema (commit)
  • Update MockPayloadGenerator tests to acknowledge invalid payload warnings (#​5107) (commit)
  • RFC: usePreloadedQuery accepts a nullable query ref: returns null if ref is null (commit)
  • Add logging for DataChecker missing data events (commit)
  • Transform mixed to unknown in xplat/js (commit)
  • Transform mixed to unknown in xplat/js (commit)
  • Include artifact map in integration test output (commit)
  • Get an fb version of our integration tests wired up (commit)
  • Add workflow for updating yarn.lock (#​5124) (commit)
  • Transform all Flow legacy utility types ($NonMaybeType) to TypeScript-style types in xplat/js (commit)
  • Prevent internal component usage from being exported to Github (commit)
  • Configure permissions for cargo lock updater action (#​5123) (commit)
  • Something is broken in the implementing objects stuff (commit)
  • Enable trusted publishing (#​5116) (commit)
  • Resolve symlinks in relay compiler when looking for the full schema's relative path (commit)
  • Duplicate lookup_field function implementation in GraphQL build infra (commit)
  • Support fixme fat interface (commit)
  • Add visitors for TypeSystemDefinition (commit)
  • Implement a GraphQL AST visitor (commit)
  • Allow missing fields from defer payloads (#​5083) ([commit](https://redirect.github.com/facebook/relay/commit/0

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • Between 12:00 AM and 03:59 AM (* 0-3 * * *)
  • 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 was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot force-pushed the renovate/major-relay-monorepo branch 2 times, most recently from dfc00f2 to c250716 Compare March 30, 2021 08:30
@renovate renovate Bot force-pushed the renovate/major-relay-monorepo branch from c250716 to acc2b6d Compare April 15, 2021 19:16
@renovate renovate Bot force-pushed the renovate/major-relay-monorepo branch from acc2b6d to f6b8b85 Compare October 18, 2021 17:03
@renovate renovate Bot changed the title chore(deps): update dependency relay-runtime to v11 chore(deps): update dependency relay-runtime to v12 Oct 18, 2021
@renovate renovate Bot force-pushed the renovate/major-relay-monorepo branch from f6b8b85 to 21ac036 Compare March 7, 2022 08:42
@renovate renovate Bot changed the title chore(deps): update dependency relay-runtime to v12 chore(deps): update dependency relay-runtime to v13 Mar 7, 2022
@renovate renovate Bot force-pushed the renovate/major-relay-monorepo branch from 21ac036 to 0a8afc6 Compare March 26, 2022 12:09
@renovate renovate Bot force-pushed the renovate/major-relay-monorepo branch from 0a8afc6 to 27e0991 Compare April 21, 2022 14:47
@renovate renovate Bot force-pushed the renovate/major-relay-monorepo branch from 27e0991 to decb947 Compare June 18, 2022 14:34
@renovate renovate Bot changed the title chore(deps): update dependency relay-runtime to v13 chore(deps): update dependency relay-runtime to v14 Jun 18, 2022
@renovate renovate Bot force-pushed the renovate/major-relay-monorepo branch from decb947 to 0f8eefd Compare September 25, 2022 18:26
@renovate renovate Bot force-pushed the renovate/major-relay-monorepo branch from 0f8eefd to 066eb11 Compare March 16, 2023 15:57
@renovate renovate Bot changed the title chore(deps): update dependency relay-runtime to v14 chore(deps): update dependency relay-runtime to v15 Mar 16, 2023
@renovate renovate Bot changed the title chore(deps): update dependency relay-runtime to v15 chore(deps): update dependency relay-runtime to v16 Oct 19, 2023
@renovate renovate Bot force-pushed the renovate/major-relay-monorepo branch from 066eb11 to c5df94d Compare October 19, 2023 18:56
@renovate renovate Bot force-pushed the renovate/major-relay-monorepo branch from c5df94d to 0c94f73 Compare December 12, 2023 00:10
@renovate renovate Bot force-pushed the renovate/major-relay-monorepo branch from 0c94f73 to 875cf45 Compare January 23, 2024 19:33
@renovate renovate Bot force-pushed the renovate/major-relay-monorepo branch from 875cf45 to 2fc4e86 Compare June 15, 2024 00:27
@renovate renovate Bot changed the title chore(deps): update dependency relay-runtime to v16 chore(deps): update dependency relay-runtime to v17 Jun 15, 2024
@renovate renovate Bot force-pushed the renovate/major-relay-monorepo branch from 2fc4e86 to 3a37c4f Compare September 7, 2024 03:37
@renovate renovate Bot changed the title chore(deps): update dependency relay-runtime to v17 chore(deps): update dependency relay-runtime to v18 Sep 7, 2024
@renovate renovate Bot force-pushed the renovate/major-relay-monorepo branch from 3a37c4f to 92de661 Compare October 4, 2024 21:46
@renovate renovate Bot force-pushed the renovate/major-relay-monorepo branch from 92de661 to 189d4d2 Compare November 21, 2024 20:32
@renovate renovate Bot force-pushed the renovate/major-relay-monorepo branch from 189d4d2 to 34623c6 Compare May 2, 2025 22:45
@renovate renovate Bot changed the title chore(deps): update dependency relay-runtime to v18 chore(deps): update dependency relay-runtime to v19 May 2, 2025
@renovate renovate Bot force-pushed the renovate/major-relay-monorepo branch from 34623c6 to 4cfac7b Compare June 14, 2025 02:27
@renovate renovate Bot changed the title chore(deps): update dependency relay-runtime to v19 chore(deps): update dependency relay-runtime to v20 Jun 14, 2025
@renovate renovate Bot force-pushed the renovate/major-relay-monorepo branch from 4cfac7b to 8c8266e Compare July 28, 2025 18:46
@renovate renovate Bot force-pushed the renovate/major-relay-monorepo branch from 8c8266e to 2e78dbe Compare August 7, 2025 00:58
@renovate renovate Bot force-pushed the renovate/major-relay-monorepo branch from 2e78dbe to 0ea9160 Compare August 19, 2025 16:09
@renovate renovate Bot force-pushed the renovate/major-relay-monorepo branch from 0ea9160 to 4a8b14c Compare September 25, 2025 14:46
@renovate renovate Bot force-pushed the renovate/major-relay-monorepo branch from 4a8b14c to c7a2326 Compare January 19, 2026 15:12
@renovate renovate Bot force-pushed the renovate/major-relay-monorepo branch from c7a2326 to b38f87f Compare April 1, 2026 17:52
@renovate renovate Bot force-pushed the renovate/major-relay-monorepo branch from b38f87f to 75b2963 Compare May 19, 2026 02:40
@renovate renovate Bot changed the title chore(deps): update dependency relay-runtime to v20 chore(deps): update dependency relay-runtime to v21 May 19, 2026
@renovate renovate Bot force-pushed the renovate/major-relay-monorepo branch from 75b2963 to b7674f4 Compare May 27, 2026 19:40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants