graphprotocol / graph-client

The Graph library for building GraphQL-based dapps in a decentralized way.
MIT License
174 stars 44 forks source link

fix(deps): update all non-major dependencies #744

Closed renovate[bot] closed 3 months ago

renovate[bot] commented 3 months ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@apollo/client (source) 3.10.6 -> 3.11.1 age adoption passing confidence
@babel/core (source) 7.24.7 -> 7.24.9 age adoption passing confidence
@babel/preset-env (source) 7.24.7 -> 7.24.8 age adoption passing confidence
@graphql-mesh/apollo-link (source) ^0.99.0 -> ^0.100.0 age adoption passing confidence
@graphql-mesh/cli (source) ^0.91.0 -> ^0.92.0 age adoption passing confidence
@graphql-mesh/fusion-runtime (source) ^0.3.0 -> ^0.5.0 age adoption passing confidence
@graphql-mesh/graphql (source) ^0.98.0 -> ^0.99.0 age adoption passing confidence
@graphql-mesh/transform-prefix (source) ^0.98.0 -> ^0.99.0 age adoption passing confidence
@graphql-mesh/transform-rename (source) ^0.98.0 -> ^0.99.0 age adoption passing confidence
@graphql-mesh/transform-type-merging (source) ^0.98.0 -> ^0.99.0 age adoption passing confidence
@graphql-mesh/types (source) ^0.78.0 \|\| ^0.79.0 \|\| ^0.80.0 \|\| ^0.81.0 \|\| ^0.82.0 \|\| ^0.83.0 \|\| ^0.84.0 \|\| ^0.85.0 \|\| ^0.89.0 \|\| ^0.90.0 \|\| ^0.91.0 \|\| ^0.93.0 \|\| ^0.94.0 \|\| ^0.97.0 \|\| ^0.98.0 -> ^0.78.0 \|\| ^0.79.0 \|\| ^0.80.0 \|\| ^0.81.0 \|\| ^0.82.0 \|\| ^0.83.0 \|\| ^0.84.0 \|\| ^0.85.0 \|\| ^0.89.0 \|\| ^0.90.0 \|\| ^0.91.0 \|\| ^0.93.0 \|\| ^0.94.0 \|\| ^0.97.0 \|\| ^0.98.0 \|\| ^0.99.0 age adoption passing confidence
@graphql-mesh/urql-exchange (source) ^0.99.0 -> ^0.100.0 age adoption passing confidence
@graphql-tools/utils (source) 10.2.2 -> 10.3.2 age adoption passing confidence
@tanstack/react-query (source) 5.48.0 -> 5.51.15 age adoption passing confidence
@types/lodash (source) 4.17.5 -> 4.17.7 age adoption passing confidence
@types/node (source) 20.14.8 -> 20.14.12 age adoption passing confidence
eslint (source) 9.5.0 -> 9.7.0 age adoption passing confidence
husky 9.0.11 -> 9.1.2 age adoption passing confidence
prettier (source) 3.3.2 -> 3.3.3 age adoption passing confidence
rimraf 5.0.7 -> 5.0.9 age adoption passing confidence
ts-jest (source) 29.1.5 -> 29.2.3 age adoption passing confidence
tslib (source) 2.6.2 -> 2.6.3 age adoption passing confidence
vite (source) 5.3.1 -> 5.3.5 age adoption passing confidence

Release Notes

apollographql/apollo-client (@​apollo/client) ### [`v3.11.1`](https://togithub.com/apollographql/apollo-client/blob/HEAD/CHANGELOG.md#3111) [Compare Source](https://togithub.com/apollographql/apollo-client/compare/v3.11.0...v3.11.1) ##### Patch Changes - [#​11969](https://togithub.com/apollographql/apollo-client/pull/11969) [`061cab6`](https://togithub.com/apollographql/apollo-client/commit/061cab6627abd4ec81f83c40c1d281c418627c93) Thanks [@​jerelmiller](https://togithub.com/jerelmiller)! - Remove check for `window.__APOLLO_CLIENT__` when determining whether to connect to Apollo Client Devtools when `connectToDevtools` or `devtools.enabled` is not specified. This now simply checks to see if the application is in development mode. - [#​11971](https://togithub.com/apollographql/apollo-client/pull/11971) [`ecf77f6`](https://togithub.com/apollographql/apollo-client/commit/ecf77f6f5b5ccf64cfba51e838e96549fb6c92fe) Thanks [@​jerelmiller](https://togithub.com/jerelmiller)! - Prevent the `setTimeout` for suggesting devtools from running in non-browser environments. ### [`v3.11.0`](https://togithub.com/apollographql/apollo-client/blob/HEAD/CHANGELOG.md#3110) [Compare Source](https://togithub.com/apollographql/apollo-client/compare/v3.10.8...v3.11.0) ##### Potentially Breaking Fixes - [#​11789](https://togithub.com/apollographql/apollo-client/pull/11789) [`5793301`](https://togithub.com/apollographql/apollo-client/commit/579330147d6bd6f7167a35413a33746103e375cb) Thanks [@​phryneas](https://togithub.com/phryneas)! - Changes usages of the `GraphQLError` type to `GraphQLFormattedError`. This was a type bug - these errors were never `GraphQLError` instances to begin with, and the `GraphQLError` class has additional properties that can never be correctly rehydrated from a GraphQL result. The correct type to use here is `GraphQLFormattedError`. Similarly, please ensure to use the type `FormattedExecutionResult` instead of `ExecutionResult` - the non-"Formatted" versions of these types are for use on the server only, but don't get transported over the network. - [#​11626](https://togithub.com/apollographql/apollo-client/pull/11626) [`228429a`](https://togithub.com/apollographql/apollo-client/commit/228429a1d36eae691473b24fb641ec3cd84c8a3d) Thanks [@​phryneas](https://togithub.com/phryneas)! - Call `nextFetchPolicy` with "variables-changed" even if there is a `fetchPolicy` specified. Previously this would only be called when the current `fetchPolicy` was equal to the `fetchPolicy` option or the option was not specified. If you use `nextFetchPolicy` as a function, expect to see this function called more often. Due to this bug, this also meant that the `fetchPolicy` might be reset to the initial `fetchPolicy`, even when you specified a `nextFetchPolicy` function. If you previously relied on this behavior, you will need to update your `nextFetchPolicy` callback function to implement this resetting behavior. As an example, if your code looked like the following: ```js useQuery(QUERY, { nextFetchPolicy(currentFetchPolicy, info) { // your logic here } ); ``` Update your function to the following to reimplement the resetting behavior: ```js useQuery(QUERY, { nextFetchPolicy(currentFetchPolicy, info) { if (info.reason === 'variables-changed') { return info.initialFetchPolicy; } // your logic here } ); ``` ##### Minor Changes - [#​11923](https://togithub.com/apollographql/apollo-client/pull/11923) [`d88c7f8`](https://togithub.com/apollographql/apollo-client/commit/d88c7f8909e3cb31532e8b1fc7dd06be12f35591) Thanks [@​jerelmiller](https://togithub.com/jerelmiller)! - Add support for `subscribeToMore` function to `useQueryRefHandlers`. - [#​11854](https://togithub.com/apollographql/apollo-client/pull/11854) [`3812800`](https://togithub.com/apollographql/apollo-client/commit/3812800c6e4e5e3e64f473543babdba35ce100c2) Thanks [@​jcostello-atlassian](https://togithub.com/jcostello-atlassian)! - Support extensions in useSubscription - [#​11923](https://togithub.com/apollographql/apollo-client/pull/11923) [`d88c7f8`](https://togithub.com/apollographql/apollo-client/commit/d88c7f8909e3cb31532e8b1fc7dd06be12f35591) Thanks [@​jerelmiller](https://togithub.com/jerelmiller)! - Add support for `subscribeToMore` function to `useLoadableQuery`. - [#​11863](https://togithub.com/apollographql/apollo-client/pull/11863) [`98e44f7`](https://togithub.com/apollographql/apollo-client/commit/98e44f74cb7c7e93a81bdc7492c9218bf4a2dcd4) Thanks [@​phryneas](https://togithub.com/phryneas)! - Reimplement `useSubscription` to fix rules of React violations. - [#​11869](https://togithub.com/apollographql/apollo-client/pull/11869) [`a69327c`](https://togithub.com/apollographql/apollo-client/commit/a69327cce1b36e8855258e9b19427511e0af8748) Thanks [@​phryneas](https://togithub.com/phryneas)! - Rewrite big parts of `useQuery` and `useLazyQuery` to be more compliant with the Rules of React and React Compiler - [#​11936](https://togithub.com/apollographql/apollo-client/pull/11936) [`1b23337`](https://togithub.com/apollographql/apollo-client/commit/1b23337e5a9eec4ce3ed69531ca4f4afe8e897a6) Thanks [@​jerelmiller](https://togithub.com/jerelmiller)! - Add the ability to specify a name for the client instance for use with Apollo Client Devtools. This is useful when instantiating multiple clients to identify the client instance more easily. This deprecates the `connectToDevtools` option in favor of a new `devtools` configuration. ```ts new ApolloClient({ devtools: { enabled: true, name: "Test Client", }, }); ``` This option is backwards-compatible with `connectToDevtools` and will be used in the absense of a `devtools` option. - [#​11923](https://togithub.com/apollographql/apollo-client/pull/11923) [`d88c7f8`](https://togithub.com/apollographql/apollo-client/commit/d88c7f8909e3cb31532e8b1fc7dd06be12f35591) Thanks [@​jerelmiller](https://togithub.com/jerelmiller)! - Add support for `subscribeToMore` function to `useBackgroundQuery`. - [#​11930](https://togithub.com/apollographql/apollo-client/pull/11930) [`a768575`](https://togithub.com/apollographql/apollo-client/commit/a768575ac1454587208aad63abc811b6a966fe72) Thanks [@​jerelmiller](https://togithub.com/jerelmiller)! - Deprecates experimental schema testing utilities introduced in 3.10 in favor of recommending [`@apollo/graphql-testing-library`](https://togithub.com/apollographql/graphql-testing-library). ##### Patch Changes - [#​11951](https://togithub.com/apollographql/apollo-client/pull/11951) [`0de03af`](https://togithub.com/apollographql/apollo-client/commit/0de03af912a76c4e0111f21b4f90a073317b63b6) Thanks [@​phryneas](https://togithub.com/phryneas)! - add React 19 RC to `peerDependencies` - [#​11927](https://togithub.com/apollographql/apollo-client/pull/11927) [`2941824`](https://togithub.com/apollographql/apollo-client/commit/2941824dd66cdd20eee5f2293373ad7a9cf991a4) Thanks [@​phryneas](https://togithub.com/phryneas)! - Add `restart` function to `useSubscription`. - [#​11949](https://togithub.com/apollographql/apollo-client/pull/11949) [`4528918`](https://togithub.com/apollographql/apollo-client/commit/45289186bcaaa33dfe904913eb6df31e2541c219) Thanks [@​alessbell](https://togithub.com/alessbell)! - Remove deprecated `watchFragment` option, `canonizeResults` - [#​11937](https://togithub.com/apollographql/apollo-client/pull/11937) [`78332be`](https://togithub.com/apollographql/apollo-client/commit/78332be32a9af0da33eb3e4100e7a76c3eac2496) Thanks [@​phryneas](https://togithub.com/phryneas)! - `createSchemaFetch`: simulate serialized errors instead of an `ApolloError` instance - [#​11902](https://togithub.com/apollographql/apollo-client/pull/11902) [`96422ce`](https://togithub.com/apollographql/apollo-client/commit/96422ce95b923b560321a88acd2eec35cf2a1c18) Thanks [@​phryneas](https://togithub.com/phryneas)! - Add `cause` field to `ApolloError`. - [#​11806](https://togithub.com/apollographql/apollo-client/pull/11806) [`8df6013`](https://togithub.com/apollographql/apollo-client/commit/8df6013b6b45452ec058fab3e068b5b6d6c493f7) Thanks [@​phryneas](https://togithub.com/phryneas)! - MockLink: add query default variables if not specified in mock request - [#​11926](https://togithub.com/apollographql/apollo-client/pull/11926) [`3dd6432`](https://togithub.com/apollographql/apollo-client/commit/3dd64324dc5156450cead27f8141ea93315ffe65) Thanks [@​phryneas](https://togithub.com/phryneas)! - `watchFragment`: forward additional options to `diffOptions` - [#​11946](https://togithub.com/apollographql/apollo-client/pull/11946) [`7d833b8`](https://togithub.com/apollographql/apollo-client/commit/7d833b80119a991e6d2eb58f2c71074d697b8e63) Thanks [@​jerelmiller](https://togithub.com/jerelmiller)! - Fix issue where mutations were not accessible by Apollo Client Devtools in 3.11.0-rc.0. - [#​11944](https://togithub.com/apollographql/apollo-client/pull/11944) [`8f3d7eb`](https://togithub.com/apollographql/apollo-client/commit/8f3d7eb3bc2e0c2d79c5b1856655abe829390742) Thanks [@​sneyderdev](https://togithub.com/sneyderdev)! - Allow `IgnoreModifier` to be returned from a `optimisticResponse` function when inferring from a `TypedDocumentNode` when used with a generic argument. - [#​11954](https://togithub.com/apollographql/apollo-client/pull/11954) [`4a6e86a`](https://togithub.com/apollographql/apollo-client/commit/4a6e86aeaf6685abf0dd23110784848c8b085735) Thanks [@​phryneas](https://togithub.com/phryneas)! - Document (and deprecate) the previously undocumented `errors` property on the `useQuery` `QueryResult` type. - [#​11719](https://togithub.com/apollographql/apollo-client/pull/11719) [`09a6677`](https://togithub.com/apollographql/apollo-client/commit/09a6677ec1a0cffedeecb2cbac5cd3a3c8aa0fa1) Thanks [@​phryneas](https://togithub.com/phryneas)! - Allow wrapping `createQueryPreloader` - [#​11921](https://togithub.com/apollographql/apollo-client/pull/11921) [`70406bf`](https://togithub.com/apollographql/apollo-client/commit/70406bfd2b9a645d781638569853d9b435e047df) Thanks [@​phryneas](https://togithub.com/phryneas)! - add `ignoreResults` option to `useSubscription` ### [`v3.10.8`](https://togithub.com/apollographql/apollo-client/blob/HEAD/CHANGELOG.md#3108) [Compare Source](https://togithub.com/apollographql/apollo-client/compare/v3.10.7...v3.10.8) ##### Patch Changes - [#​11911](https://togithub.com/apollographql/apollo-client/pull/11911) [`1f0460a`](https://togithub.com/apollographql/apollo-client/commit/1f0460a60fc613e8d6f218a74ded69e81e960791) Thanks [@​jerelmiller](https://togithub.com/jerelmiller)! - Allow `undefined` to be returned from a `cache.modify` modifier function when a generic type argument is used. ### [`v3.10.7`](https://togithub.com/apollographql/apollo-client/blob/HEAD/CHANGELOG.md#3107) [Compare Source](https://togithub.com/apollographql/apollo-client/compare/v3.10.6...v3.10.7) ##### Patch Changes - [#​11901](https://togithub.com/apollographql/apollo-client/pull/11901) [`10a8c0a`](https://togithub.com/apollographql/apollo-client/commit/10a8c0a8f6f3e13ec3c67bf53cc11a948b60e6d9) Thanks [@​phryneas](https://togithub.com/phryneas)! - update `canUseLayoutEffect` check to also allow for layout effects in React Native - [#​11861](https://togithub.com/apollographql/apollo-client/pull/11861) [`1aed0e8`](https://togithub.com/apollographql/apollo-client/commit/1aed0e82fcc432380a56d4a446f414ce8b1a7a90) Thanks [@​henryqdineen](https://togithub.com/henryqdineen)! - Defend against non-serializable params in `invariantWrappers` - [#​11905](https://togithub.com/apollographql/apollo-client/pull/11905) [`29755da`](https://togithub.com/apollographql/apollo-client/commit/29755da8797dc94613a23fe050ddd6ef9ffab607) Thanks [@​phryneas](https://togithub.com/phryneas)! - Add `.d.cts` files for cjs bundles - [#​11906](https://togithub.com/apollographql/apollo-client/pull/11906) [`d104759`](https://togithub.com/apollographql/apollo-client/commit/d104759cfb4be31e2ffbe166531a9b11861ade99) Thanks [@​phryneas](https://togithub.com/phryneas)! - chore: update TypeScript to 5.5
babel/babel (@​babel/core) ### [`v7.24.9`](https://togithub.com/babel/babel/blob/HEAD/CHANGELOG.md#v7249-2024-07-15) [Compare Source](https://togithub.com/babel/babel/compare/v7.24.8...v7.24.9) ##### :bug: Bug Fix - `babel-core`, `babel-standalone` - [#​16639](https://togithub.com/babel/babel/pull/16639) Avoid `require()` call in `@babel/standalone` bundle ([@​nicolo-ribaudo](https://togithub.com/nicolo-ribaudo)) - `babel-types` - [#​16638](https://togithub.com/babel/babel/pull/16638) fix: provide legacy typings for TS < 4.1 ([@​JLHwung](https://togithub.com/JLHwung)) ##### :nail_care: Polish - `babel-generator`, `babel-plugin-transform-optional-chaining` - [#​16617](https://togithub.com/babel/babel/pull/16617) Avoid extra parens in TS `as`/`satisfies` ([@​nicolo-ribaudo](https://togithub.com/nicolo-ribaudo)) ##### :house: Internal - `babel-helper-module-transforms` - [#​16629](https://togithub.com/babel/babel/pull/16629) Lazy top-level initializations for module transforms ([@​guybedford](https://togithub.com/guybedford)) ### [`v7.24.8`](https://togithub.com/babel/babel/blob/HEAD/CHANGELOG.md#v7248-2024-07-11) [Compare Source](https://togithub.com/babel/babel/compare/v7.24.7...v7.24.8) ##### :eyeglasses: Spec Compliance - `babel-parser` - [#​16567](https://togithub.com/babel/babel/pull/16567) Do not use strict mode in TS `declare` ([@​liuxingbaoyu](https://togithub.com/liuxingbaoyu)) ##### :bug: Bug Fix - `babel-generator` - [#​16630](https://togithub.com/babel/babel/pull/16630) Correctly print parens around `in` in `for` heads ([@​nicolo-ribaudo](https://togithub.com/nicolo-ribaudo)) - [#​16626](https://togithub.com/babel/babel/pull/16626) Fix printing of comments in `await using` ([@​nicolo-ribaudo](https://togithub.com/nicolo-ribaudo)) - [#​16591](https://togithub.com/babel/babel/pull/16591) fix typescript code generation for yield expression inside type expre… ([@​SreeXD](https://togithub.com/SreeXD)) - `babel-parser` - [#​16613](https://togithub.com/babel/babel/pull/16613) Disallow destructuring assignment in `using` declarations ([@​H0onnn](https://togithub.com/H0onnn)) - [#​16490](https://togithub.com/babel/babel/pull/16490) fix: do not add `.value: undefined` to regexp literals ([@​liuxingbaoyu](https://togithub.com/liuxingbaoyu)) - `babel-types` - [#​16615](https://togithub.com/babel/babel/pull/16615) Remove boolean props from `ObjectTypeInternalSlot` visitor keys ([@​nicolo-ribaudo](https://togithub.com/nicolo-ribaudo)) - `babel-plugin-transform-typescript` - [#​16566](https://togithub.com/babel/babel/pull/16566) fix: Correctly handle `export import x =` ([@​liuxingbaoyu](https://togithub.com/liuxingbaoyu)) ##### :nail_care: Polish - `babel-generator` - [#​16625](https://togithub.com/babel/babel/pull/16625) Avoid unnecessary parens around `async` in `for await` ([@​nicolo-ribaudo](https://togithub.com/nicolo-ribaudo)) - `babel-traverse` - [#​16619](https://togithub.com/babel/babel/pull/16619) Avoid checking `Scope.globals` multiple times ([@​liuxingbaoyu](https://togithub.com/liuxingbaoyu))
ardatan/graphql-mesh (@​graphql-mesh/apollo-link) ### [`v0.100.4`](https://togithub.com/ardatan/graphql-mesh/blob/HEAD/packages/legacy/apollo-link/CHANGELOG.md#01004) [Compare Source](https://togithub.com/ardatan/graphql-mesh/compare/@graphql-mesh/apollo-link@0.100.3...@graphql-mesh/apollo-link@0.100.4) ##### Patch Changes - Updated dependencies \[]: - [@​graphql-mesh/runtime](https://togithub.com/graphql-mesh/runtime)[@​0](https://togithub.com/0).100.4 ### [`v0.100.3`](https://togithub.com/ardatan/graphql-mesh/blob/HEAD/packages/legacy/apollo-link/CHANGELOG.md#01003) [Compare Source](https://togithub.com/ardatan/graphql-mesh/compare/@graphql-mesh/apollo-link@0.100.2...@graphql-mesh/apollo-link@0.100.3) ##### Patch Changes - Updated dependencies \[]: - [@​graphql-mesh/runtime](https://togithub.com/graphql-mesh/runtime)[@​0](https://togithub.com/0).100.3 ### [`v0.100.2`](https://togithub.com/ardatan/graphql-mesh/blob/HEAD/packages/legacy/apollo-link/CHANGELOG.md#01002) [Compare Source](https://togithub.com/ardatan/graphql-mesh/compare/@graphql-mesh/apollo-link@0.100.1...@graphql-mesh/apollo-link@0.100.2) ##### Patch Changes - Updated dependencies \[[`4bc495c`](https://togithub.com/ardatan/graphql-mesh/commit/4bc495c03493f18c85e11f3f5fb54b3c35d16d8e)]: - [@​graphql-mesh/runtime](https://togithub.com/graphql-mesh/runtime)[@​0](https://togithub.com/0).100.2 ### [`v0.100.1`](https://togithub.com/ardatan/graphql-mesh/blob/HEAD/packages/legacy/apollo-link/CHANGELOG.md#01001) [Compare Source](https://togithub.com/ardatan/graphql-mesh/compare/@graphql-mesh/apollo-link@0.100.0...@graphql-mesh/apollo-link@0.100.1) ##### Patch Changes - Updated dependencies \[[`7800514`](https://togithub.com/ardatan/graphql-mesh/commit/780051468203f3e82e7fee4ac40ce8b8a2cb10a3)]: - [@​graphql-mesh/runtime](https://togithub.com/graphql-mesh/runtime)[@​0](https://togithub.com/0).100.1 ### [`v0.100.0`](https://togithub.com/ardatan/graphql-mesh/blob/HEAD/packages/legacy/apollo-link/CHANGELOG.md#01000) [Compare Source](https://togithub.com/ardatan/graphql-mesh/compare/@graphql-mesh/apollo-link@0.99.12...@graphql-mesh/apollo-link@0.100.0) ##### Patch Changes - Updated dependencies \[]: - [@​graphql-mesh/runtime](https://togithub.com/graphql-mesh/runtime)[@​0](https://togithub.com/0).100.0 ### [`v0.99.12`](https://togithub.com/ardatan/graphql-mesh/blob/HEAD/packages/legacy/apollo-link/CHANGELOG.md#09912) [Compare Source](https://togithub.com/ardatan/graphql-mesh/compare/@graphql-mesh/apollo-link@0.99.11...@graphql-mesh/apollo-link@0.99.12) ##### Patch Changes - [#​7185](https://togithub.com/ardatan/graphql-mesh/pull/7185) [`0d916a4`](https://togithub.com/ardatan/graphql-mesh/commit/0d916a4b4603ca57a383337f42c51ef8d5f4ae3d) Thanks [@​ardatan](https://togithub.com/ardatan)! - dependencies updates: - Updated dependency [`@graphql-tools/utils@^10.2.3` ↗︎](https://www.npmjs.com/package/@​graphql-tools/utils/v/10.2.3) (from `^10.2.1`, in `peerDependencies`) - Updated dependencies \[[`0d916a4`](https://togithub.com/ardatan/graphql-mesh/commit/0d916a4b4603ca57a383337f42c51ef8d5f4ae3d)]: - [@​graphql-mesh/runtime](https://togithub.com/graphql-mesh/runtime)[@​0](https://togithub.com/0).99.12 ### [`v0.99.11`](https://togithub.com/ardatan/graphql-mesh/blob/HEAD/packages/legacy/apollo-link/CHANGELOG.md#09911) [Compare Source](https://togithub.com/ardatan/graphql-mesh/compare/@graphql-mesh/apollo-link@0.99.10...@graphql-mesh/apollo-link@0.99.11) ##### Patch Changes - Updated dependencies \[[`7544594`](https://togithub.com/ardatan/graphql-mesh/commit/75445949f91f225ffed15491b8040b61ec4cf3ae)]: - [@​graphql-mesh/runtime](https://togithub.com/graphql-mesh/runtime)[@​0](https://togithub.com/0).99.11
ardatan/graphql-mesh (@​graphql-mesh/cli) ### [`v0.92.4`](https://togithub.com/ardatan/graphql-mesh/blob/HEAD/packages/legacy/cli/CHANGELOG.md#0924) [Compare Source](https://togithub.com/ardatan/graphql-mesh/compare/@graphql-mesh/cli@0.92.3...@graphql-mesh/cli@0.92.4) ##### Patch Changes - Updated dependencies \[[`597e790`](https://togithub.com/ardatan/graphql-mesh/commit/597e7905e542be06e7f576d8ffde3f94d7b0630b), [`597e790`](https://togithub.com/ardatan/graphql-mesh/commit/597e7905e542be06e7f576d8ffde3f94d7b0630b)]: - [@​graphql-mesh/utils](https://togithub.com/graphql-mesh/utils)[@​0](https://togithub.com/0).99.4 - [@​graphql-mesh/config](https://togithub.com/graphql-mesh/config)[@​0](https://togithub.com/0).101.4 - [@​graphql-mesh/http](https://togithub.com/graphql-mesh/http)[@​0](https://togithub.com/0).100.4 - [@​graphql-mesh/runtime](https://togithub.com/graphql-mesh/runtime)[@​0](https://togithub.com/0).100.4 - [@​graphql-mesh/store](https://togithub.com/graphql-mesh/store)[@​0](https://togithub.com/0).99.4 - [@​graphql-mesh/types](https://togithub.com/graphql-mesh/types)[@​0](https://togithub.com/0).99.4 ### [`v0.92.3`](https://togithub.com/ardatan/graphql-mesh/blob/HEAD/packages/legacy/cli/CHANGELOG.md#0923) [Compare Source](https://togithub.com/ardatan/graphql-mesh/compare/@graphql-mesh/cli@0.92.2...@graphql-mesh/cli@0.92.3) ##### Patch Changes - [#​7360](https://togithub.com/ardatan/graphql-mesh/pull/7360) [`5e5dec5`](https://togithub.com/ardatan/graphql-mesh/commit/5e5dec51b571df8d23a4379f61fd7fbd7a3df58e) Thanks [@​enisdenjo](https://togithub.com/enisdenjo)! - dependencies updates: - Added dependency [`jiti@^1.21.6` ↗︎](https://www.npmjs.com/package/jiti/v/1.21.6) (to `dependencies`) - [#​7360](https://togithub.com/ardatan/graphql-mesh/pull/7360) [`5e5dec5`](https://togithub.com/ardatan/graphql-mesh/commit/5e5dec51b571df8d23a4379f61fd7fbd7a3df58e) Thanks [@​enisdenjo](https://togithub.com/enisdenjo)! - Use jiti as default JS importer - Updated dependencies \[[`5e5dec5`](https://togithub.com/ardatan/graphql-mesh/commit/5e5dec51b571df8d23a4379f61fd7fbd7a3df58e), [`5e5dec5`](https://togithub.com/ardatan/graphql-mesh/commit/5e5dec51b571df8d23a4379f61fd7fbd7a3df58e)]: - [@​graphql-mesh/utils](https://togithub.com/graphql-mesh/utils)[@​0](https://togithub.com/0).99.3 - [@​graphql-mesh/config](https://togithub.com/graphql-mesh/config)[@​0](https://togithub.com/0).101.3 - [@​graphql-mesh/http](https://togithub.com/graphql-mesh/http)[@​0](https://togithub.com/0).100.3 - [@​graphql-mesh/runtime](https://togithub.com/graphql-mesh/runtime)[@​0](https://togithub.com/0).100.3 - [@​graphql-mesh/store](https://togithub.com/graphql-mesh/store)[@​0](https://togithub.com/0).99.3 - [@​graphql-mesh/types](https://togithub.com/graphql-mesh/types)[@​0](https://togithub.com/0).99.3 ### [`v0.92.2`](https://togithub.com/ardatan/graphql-mesh/blob/HEAD/packages/legacy/cli/CHANGELOG.md#0922) [Compare Source](https://togithub.com/ardatan/graphql-mesh/compare/@graphql-mesh/cli@0.92.1...@graphql-mesh/cli@0.92.2) ##### Patch Changes - Updated dependencies \[[`4bc495c`](https://togithub.com/ardatan/graphql-mesh/commit/4bc495c03493f18c85e11f3f5fb54b3c35d16d8e), [`4bc495c`](https://togithub.com/ardatan/graphql-mesh/commit/4bc495c03493f18c85e11f3f5fb54b3c35d16d8e), [`4bc495c`](https://togithub.com/ardatan/graphql-mesh/commit/4bc495c03493f18c85e11f3f5fb54b3c35d16d8e)]: - [@​graphql-mesh/runtime](https://togithub.com/graphql-mesh/runtime)[@​0](https://togithub.com/0).100.2 - [@​graphql-mesh/types](https://togithub.com/graphql-mesh/types)[@​0](https://togithub.com/0).99.2 - [@​graphql-mesh/utils](https://togithub.com/graphql-mesh/utils)[@​0](https://togithub.com/0).99.2 - [@​graphql-mesh/config](https://togithub.com/graphql-mesh/config)[@​0](https://togithub.com/0).101.2 - [@​graphql-mesh/http](https://togithub.com/graphql-mesh/http)[@​0](https://togithub.com/0).100.2 - [@​graphql-mesh/store](https://togithub.com/graphql-mesh/store)[@​0](https://togithub.com/0).99.2 ### [`v0.92.1`](https://togithub.com/ardatan/graphql-mesh/blob/HEAD/packages/legacy/cli/CHANGELOG.md#0921) [Compare Source](https://togithub.com/ardatan/graphql-mesh/compare/@graphql-mesh/cli@0.92.0...@graphql-mesh/cli@0.92.1) ##### Patch Changes - Updated dependencies \[[`7800514`](https://togithub.com/ardatan/graphql-mesh/commit/780051468203f3e82e7fee4ac40ce8b8a2cb10a3), [`7800514`](https://togithub.com/ardatan/graphql-mesh/commit/780051468203f3e82e7fee4ac40ce8b8a2cb10a3), [`7800514`](https://togithub.com/ardatan/graphql-mesh/commit/780051468203f3e82e7fee4ac40ce8b8a2cb10a3)]: - [@​graphql-mesh/runtime](https://togithub.com/graphql-mesh/runtime)[@​0](https://togithub.com/0).100.1 - [@​graphql-mesh/types](https://togithub.com/graphql-mesh/types)[@​0](https://togithub.com/0).99.1 - [@​graphql-mesh/utils](https://togithub.com/graphql-mesh/utils)[@​0](https://togithub.com/0).99.1 - [@​graphql-mesh/config](https://togithub.com/graphql-mesh/config)[@​0](https://togithub.com/0).101.1 - [@​graphql-mesh/http](https://togithub.com/graphql-mesh/http)[@​0](https://togithub.com/0).100.1 - [@​graphql-mesh/store](https://togithub.com/graphql-mesh/store)[@​0](https://togithub.com/0).99.1 ### [`v0.92.0`](https://togithub.com/ardatan/graphql-mesh/blob/HEAD/packages/legacy/cli/CHANGELOG.md#0920) [Compare Source](https://togithub.com/ardatan/graphql-mesh/compare/@graphql-mesh/cli@0.91.2...@graphql-mesh/cli@0.92.0) ##### Minor Changes - [#​7261](https://togithub.com/ardatan/graphql-mesh/pull/7261) [`a8e3f00`](https://togithub.com/ardatan/graphql-mesh/commit/a8e3f003264f2a4703a35a08667818fa8800dc00) Thanks [@​enisdenjo](https://togithub.com/enisdenjo)! - Use jiti import from [@​graphql-mesh/utils](https://togithub.com/graphql-mesh/utils) instead of tsx ##### Patch Changes - [#​7218](https://togithub.com/ardatan/graphql-mesh/pull/7218) [`ededa2c`](https://togithub.com/ardatan/graphql-mesh/commit/ededa2c9e0fd44b338f2d3c66adfa1b59b130fa2) Thanks [@​EmrysMyrddin](https://togithub.com/EmrysMyrddin)! - dependencies updates: - Updated dependency [`rimraf@^6.0.0` ↗︎](https://www.npmjs.com/package/rimraf/v/6.0.0) (from `^5.0.0`, in `dependencies`) - [#​7244](https://togithub.com/ardatan/graphql-mesh/pull/7244) [`522788e`](https://togithub.com/ardatan/graphql-mesh/commit/522788ef35f7ae415d16e08e53c25eb51d9078d8) Thanks [@​renovate](https://togithub.com/apps/renovate)! - dependencies updates: - Updated dependency [`rimraf@^6.0.0` ↗︎](https://www.npmjs.com/package/rimraf/v/6.0.0) (from `^5.0.0`, in `dependencies`) - [#​7261](https://togithub.com/ardatan/graphql-mesh/pull/7261) [`a8e3f00`](https://togithub.com/ardatan/graphql-mesh/commit/a8e3f003264f2a4703a35a08667818fa8800dc00) Thanks [@​enisdenjo](https://togithub.com/enisdenjo)! - dependencies updates: - Removed dependency [`tsx@^4.7.1` ↗︎](https://www.npmjs.com/package/tsx/v/4.7.1) (from `dependencies`) - Updated dependencies \[[`a8e3f00`](https://togithub.com/ardatan/graphql-mesh/commit/a8e3f003264f2a4703a35a08667818fa8800dc00), [`a8e3f00`](https://togithub.com/ardatan/graphql-mesh/commit/a8e3f003264f2a4703a35a08667818fa8800dc00)]: - [@​graphql-mesh/utils](https://togithub.com/graphql-mesh/utils)[@​0](https://togithub.com/0).99.0 - [@​graphql-mesh/config](https://togithub.com/graphql-mesh/config)[@​0](https://togithub.com/0).101.0 - [@​graphql-mesh/http](https://togithub.com/graphql-mesh/http)[@​0](https://togithub.com/0).100.0 - [@​graphql-mesh/runtime](https://togithub.com/graphql-mesh/runtime)[@​0](https://togithub.com/0).100.0 - [@​graphql-mesh/store](https://togithub.com/graphql-mesh/store)[@​0](https://togithub.com/0).99.0 - [@​graphql-mesh/types](https://togithub.com/graphql-mesh/types)[@​0](https://togithub.com/0).99.0 ### [`v0.91.2`](https://togithub.com/ardatan/graphql-mesh/blob/HEAD/packages/legacy/cli/CHANGELOG.md#0912) [Compare Source](https://togithub.com/ardatan/graphql-mesh/compare/@graphql-mesh/cli@0.91.1...@graphql-mesh/cli@0.91.2) ##### Patch Changes - [#​7185](https://togithub.com/ardatan/graphql-mesh/pull/7185) [`0d916a4`](https://togithub.com/ardatan/graphql-mesh/commit/0d916a4b4603ca57a383337f42c51ef8d5f4ae3d) Thanks [@​ardatan](https://togithub.com/ardatan)! - dependencies updates: - Updated dependency [`@graphql-tools/utils@^10.2.3` ↗︎](https://www.npmjs.com/package/@​graphql-tools/utils/v/10.2.3) (from `^10.2.1`, in `dependencies`) - Updated dependencies \[[`0d916a4`](https://togithub.com/ardatan/graphql-mesh/commit/0d916a4b4603ca57a383337f42c51ef8d5f4ae3d), [`0d916a4`](https://togithub.com/ardatan/graphql-mesh/commit/0d916a4b4603ca57a383337f42c51ef8d5f4ae3d), [`8a04cf7`](https://togithub.com/ardatan/graphql-mesh/commit/8a04cf7abff41122d5268c57acfb26e97712730b), [`0d916a4`](https://togithub.com/ardatan/graphql-mesh/commit/0d916a4b4603ca57a383337f42c51ef8d5f4ae3d), [`0d916a4`](https://togithub.com/ardatan/graphql-mesh/commit/0d916a4b4603ca57a383337f42c51ef8d5f4ae3d), [`0d916a4`](https://togithub.com/ardatan/graphql-mesh/commit/0d916a4b4603ca57a383337f42c51ef8d5f4ae3d), [`0d916a4`](https://togithub.com/ardatan/graphql-mesh/commit/0d916a4b4603ca57a383337f42c51ef8d5f4ae3d), [`0d916a4`](https://togithub.com/ardatan/graphql-mesh/commit/0d916a4b4603ca57a383337f42c51ef8d5f4ae3d), [`8a04cf7`](https://togithub.com/ardatan/graphql-mesh/commit/8a04cf7abff41122d5268c57acfb26e97712730b)]: - [@​graphql-mesh/config](https://togithub.com/graphql-mesh/config)[@​0](https://togithub.com/0).100.12 - [@​graphql-mesh/cross-helpers](https://togithub.com/graphql-mesh/cross-helpers)[@​0](https://togithub.com/0).4.4 - [@​graphql-mesh/http](https://togithub.com/graphql-mesh/http)[@​0](https://togithub.com/0).99.12 - [@​graphql-mesh/runtime](https://togithub.com/graphql-mesh/runtime)[@​0](https://togithub.com/0).99.12 - [@​graphql-mesh/store](https://togithub.com/graphql-mesh/store)[@​0](https://togithub.com/0).98.10 - [@​graphql-mesh/types](https://togithub.com/graphql-mesh/types)[@​0](https://togithub.com/0).98.10 - [@​graphql-mesh/utils](https://togithub.com/graphql-mesh/utils)[@​0](https://togithub.com/0).98.10 ### [`v0.91.1`](https://togithub.com/ardatan/graphql-mesh/blob/HEAD/packages/legacy/cli/CHANGELOG.md#0911) [Compare Source](https://togithub.com/ardatan/graphql-mesh/compare/@graphql-mesh/cli@0.91.0...@graphql-mesh/cli@0.91.1) ##### Patch Changes - Updated dependencies \[[`f985978`](https://togithub.com/ardatan/graphql-mesh/commit/f9859784ad854207e4d32bda11c904b5301610ee), [`7544594`](https://togithub.com/ardatan/graphql-mesh/commit/75445949f91f225ffed15491b8040b61ec4cf3ae)]: - [@​graphql-mesh/utils](https://togithub.com/graphql-mesh/utils)[@​0](https://togithub.com/0).98.9 - [@​graphql-mesh/runtime](https://togithub.com/graphql-mesh/runtime)[@​0](https://togithub.com/0).99.11 - [@​graphql-mesh/config](https://togithub.com/graphql-mesh/config)[@​0](https://togithub.com/0).100.11 - [@​graphql-mesh/http](https://togithub.com/graphql-mesh/http)[@​0](https://togithub.com/0).99.11 - [@​graphql-mesh/store](https://togithub.com/graphql-mesh/store)[@​0](https://togithub.com/0).98.9 - [@​graphql-mesh/types](https://togithub.com/graphql-mesh/types)[@​0](https://togithub.com/0).98.9
ardatan/graphql-mesh (@​graphql-mesh/fusion-runtime) ### [`v0.5.5`](https://togithub.com/ardatan/graphql-mesh/blob/HEAD/packages/fusion/runtime/CHANGELOG.md#055) [Compare Source](https://togithub.com/ardatan/graphql-mesh/compare/@graphql-mesh/fusion-runtime@0.5.4...@graphql-mesh/fusion-runtime@0.5.5) ##### Patch Changes - [#​7343](https://togithub.com/ardatan/graphql-mesh/pull/7343) [`597e790`](https://togithub.com/ardatan/graphql-mesh/commit/597e7905e542be06e7f576d8ffde3f94d7b0630b) Thanks [@​ardatan](https://togithub.com/ardatan)! - More verbose debug logs for HTTP fetch calls and subgraph requests - Updated dependencies \[[`597e790`](https://togithub.com/ardatan/graphql-mesh/commit/597e7905e542be06e7f576d8ffde3f94d7b0630b), [`597e790`](https://togithub.com/ardatan/graphql-mesh/commit/597e7905e542be06e7f576d8ffde3f94d7b0630b)]: - [@​graphql-mesh/utils](https://togithub.com/graphql-mesh/utils)[@​0](https://togithub.com/0).99.4 - [@​graphql-mesh/runtime](https://togithub.com/graphql-mesh/runtime)[@​0](https://togithub.com/0).100.4 - [@​graphql-mesh/types](https://togithub.com/graphql-mesh/types)[@​0](https://togithub.com/0).99.4 - [@​graphql-mesh/transport-common](https://togithub.com/graphql-mesh/transport-common)[@​0](https://togithub.com/0).4.4 ### [`v0.5.4`](https://togithub.com/ardatan/graphql-mesh/blob/HEAD/packages/fusion/runtime/CHANGELOG.md#054) [Compare Source](https://togithub.com/ardatan/graphql-mesh/compare/@graphql-mesh/fusion-runtime@0.5.3...@graphql-mesh/fusion-runtime@0.5.4) ##### Patch Changes - Updated dependencies \[[`5e5dec5`](https://togithub.com/ardatan/graphql-mesh/commit/5e5dec51b571df8d23a4379f61fd7fbd7a3df58e), [`5e5dec5`](https://togithub.com/ardatan/graphql-mesh/commit/5e5dec51b571df8d23a4379f61fd7fbd7a3df58e)]: - [@​graphql-mesh/utils](https://togithub.com/graphql-mesh/utils)[@​0](https://togithub.com/0).99.3 - [@​graphql-mesh/runtime](https://togithub.com/graphql-mesh/runtime)[@​0](https://togithub.com/0).100.3 - [@​graphql-mesh/types](https://togithub.com/graphql-mesh/types)[@​0](https://togithub.com/0).99.3 - [@​graphql-mesh/transport-common](https://togithub.com/graphql-mesh/transport-common)[@​0](https://togithub.com/0).4.3 ### [`v0.5.3`](https://togithub.com/ardatan/graphql-mesh/blob/HEAD/packages/fusion/runtime/CHANGELOG.md#053) [Compare Source](https://togithub.com/ardatan/graphql-mesh/compare/@graphql-mesh/fusion-runtime@0.5.2...@graphql-mesh/fusion-runtime@0.5.3) ##### Patch Changes - [#​7304](https://togithub.com/ardatan/graphql-mesh/pull/7304) [`f47c900`](https://togithub.com/ardatan/graphql-mesh/commit/f47c900d19e8c634d39e9dd90bfb1acc4f892a1f) Thanks [@​dotansimha](https://togithub.com/dotansimha)! - Pass context type from `OnSubgraphExecute` to `ExecutionRequest` ### [`v0.5.2`](https://togithub.com/ardatan/graphql-mesh/blob/HEAD/packages/fusion/runtime/CHANGELOG.md#052) [Compare Source](https://togithub.com/ardatan/graphql-mesh/compare/@graphql-mesh/fusion-runtime@0.5.1...@graphql-mesh/fusion-runtime@0.5.2) ##### Patch Changes - [#​7351](https://togithub.com/ardatan/graphql-mesh/pull/7351) [`9f6624e`](https://togithub.com/ardatan/graphql-mesh/commit/9f6624e327a555b3de201e67ca9f5dabca44e238) Thanks [@​ardatan](https://togithub.com/ardatan)! - dependencies updates: - Updated dependency [`@graphql-tools/federation@^2.2.0` ↗︎](https://www.npmjs.com/package/@​graphql-tools/federation/v/2.2.0) (from `^2.1.2`, in `dependencies`) - Added dependency [`@graphql-mesh/cross-helpers@^0.4.4` ↗︎](https://www.npmjs.com/package/@​graphql-mesh/cross-helpers/v/0.4.4) (to `dependencies`) - [#​7352](https://togithub.com/ardatan/graphql-mesh/pull/7352) [`4bc495c`](https://togithub.com/ardatan/graphql-mesh/commit/4bc495c03493f18c85e11f3f5fb54b3c35d16d8e) Thanks [@​ardatan](https://togithub.com/ardatan)! - dependencies updates: - Updated dependency [`@graphql-tools/delegate@^10.0.16` ↗︎](https://www.npmjs.com/package/@​graphql-tools/delegate/v/10.0.16) (from `^10.0.14`, in `dependencies`) - Updated dependency [`@graphql-tools/executor@^1.3.0` ↗︎](https://www.npmjs.com/package/@​graphql-tools/executor/v/1.3.0) (from `^1.2.8`, in `dependencies`) - Updated dependency [`@graphql-tools/federation@^2.2.1` ↗︎](https://www.npmjs.com/package/@​graphql-tools/federation/v/2.2.1) (from `^2.2.0`, in `dependencies`) - [#​7341](https://togithub.com/ardatan/graphql-mesh/pull/7341) [`29dc043`](https://togithub.com/ardatan/graphql-mesh/commit/29dc043c1fd5d83b3a3f8a1c739957f3d723067a) Thanks [@​dr3](https://togithub.com/dr3)! - Fix the bug when field name is renamed together with the argument - [#​7294](https://togithub.com/ardatan/graphql-mesh/pull/7294) [`345a814`](https://togithub.com/ardatan/graphql-mesh/commit/345a81490f5201f6ee2f378b1b9d83c5881c9730) Thanks [@​ardatan](https://togithub.com/ardatan)! - Ability to manipulate transport entry through `transportEntries`. For example, you can add extra headers to a subgraph ```ts transportEntries: { products: { // This adds extra headers to the subgraph configuration headers: [ // This forwards `authorization` from the upstream to downstream ['authorization', '{context.headers.authorization}'], // Or some static value ['x-extra', process.env.SOME_THING] ] } } ``` - Updated dependencies \[[`4bc495c`](https://togithub.com/ardatan/graphql-mesh/commit/4bc495c03493f18c85e11f3f5fb54b3c35d16d8e), [`4bc495c`](https://togithub.com/ardatan/graphql-mesh/commit/4bc495c03493f18c85e11f3f5fb54b3c35d16d8e), [`4bc495c`](https://togithub.com/ardatan/graphql-mesh/commit/4bc495c03493f18c85e11f3f5fb54b3c35d16d8e), [`4bc495c`](https://togithub.com/ardatan/graphql-mesh/commit/4bc495c03493f18c85e11f3f5fb54b3c35d16d8e), [`345a81

Configuration

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

🚦 Automerge: Enabled.

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

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.



This PR was generated by Mend Renovate. View the repository job log.

changeset-bot[bot] commented 3 months ago

🦋 Changeset detected

Latest commit: 4d1267b520efe8ebd417dcd8cad61cd550c1e766

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 7 packages | Name | Type | | --------------------------------------- | ----- | | @graphprotocol/client-add-source-name | Patch | | @graphprotocol/client-apollo | Patch | | @graphprotocol/client-auto-pagination | Patch | | @graphprotocol/client-auto-type-merging | Patch | | @graphprotocol/client-block-tracking | Patch | | @graphprotocol/client-cli | Patch | | @graphprotocol/client-urql | Patch |

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

renovate[bot] commented 3 months ago

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

theguild-bot commented 3 months ago

🚀 Snapshot Release (alpha)

The latest changes of this PR are available as alpha on npm (based on the declared changesets): Package Version Info
@graphprotocol/client-add-source-name 2.0.4-alpha-20240726162809-4d1267b520efe8ebd417dcd8cad61cd550c1e766 npm ↗︎ unpkg ↗︎
@graphprotocol/client-apollo 2.0.4-alpha-20240726162809-4d1267b520efe8ebd417dcd8cad61cd550c1e766 npm ↗︎ unpkg ↗︎
@graphprotocol/client-auto-pagination 2.0.4-alpha-20240726162809-4d1267b520efe8ebd417dcd8cad61cd550c1e766 npm ↗︎ unpkg ↗︎
@graphprotocol/client-auto-type-merging 2.0.4-alpha-20240726162809-4d1267b520efe8ebd417dcd8cad61cd550c1e766 npm ↗︎ unpkg ↗︎
@graphprotocol/client-block-tracking 2.0.3-alpha-20240726162809-4d1267b520efe8ebd417dcd8cad61cd550c1e766 npm ↗︎ unpkg ↗︎
@graphprotocol/client-cli 3.0.4-alpha-20240726162809-4d1267b520efe8ebd417dcd8cad61cd550c1e766 npm ↗︎ unpkg ↗︎
@graphprotocol/client-urql 2.0.4-alpha-20240726162809-4d1267b520efe8ebd417dcd8cad61cd550c1e766 npm ↗︎ unpkg ↗︎