fix(deps): update all non-major dependencies#744
Merged
Conversation
🦋 Changeset detectedLatest commit: 4d1267b The changes in this PR will be included in the next version bump. This PR includes changesets to release 7 packages
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 |
Contributor
Author
Edited/Blocked NotificationRenovate 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. |
Collaborator
🚀 Snapshot Release (
|
| 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 ↗︎ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
3.10.6->3.11.17.24.7->7.24.97.24.7->7.24.8^0.99.0->^0.100.0^0.91.0->^0.92.0^0.3.0->^0.5.0^0.98.0->^0.99.0^0.98.0->^0.99.0^0.98.0->^0.99.0^0.98.0->^0.99.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.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^0.99.0->^0.100.010.2.2->10.3.25.48.0->5.51.154.17.5->4.17.720.14.8->20.14.129.5.0->9.7.09.0.11->9.1.23.3.2->3.3.35.0.7->5.0.929.1.5->29.2.32.6.2->2.6.35.3.1->5.3.5Release Notes
apollographql/apollo-client (@apollo/client)
v3.11.1Compare Source
Patch Changes
#11969
061cab6Thanks @jerelmiller! - Remove check forwindow.__APOLLO_CLIENT__when determining whether to connect to Apollo Client Devtools whenconnectToDevtoolsordevtools.enabledis not specified. This now simply checks to see if the application is in development mode.#11971
ecf77f6Thanks @jerelmiller! - Prevent thesetTimeoutfor suggesting devtools from running in non-browser environments.v3.11.0Compare Source
Potentially Breaking Fixes
#11789
5793301Thanks @phryneas! - Changes usages of theGraphQLErrortype toGraphQLFormattedError.This was a type bug - these errors were never
GraphQLErrorinstancesto begin with, and the
GraphQLErrorclass has additional properties that cannever be correctly rehydrated from a GraphQL result.
The correct type to use here is
GraphQLFormattedError.Similarly, please ensure to use the type
FormattedExecutionResultinstead of
ExecutionResult- the non-"Formatted" versions of these typesare for use on the server only, but don't get transported over the network.
#11626
228429aThanks @phryneas! - CallnextFetchPolicywith "variables-changed" even if there is afetchPolicyspecified.Previously this would only be called when the current
fetchPolicywas equal to thefetchPolicyoption or the option was not specified. If you usenextFetchPolicyas a function, expect to see this function called more often.Due to this bug, this also meant that the
fetchPolicymight be reset to the initialfetchPolicy, even when you specified anextFetchPolicyfunction. If you previously relied on this behavior, you will need to update yournextFetchPolicycallback function to implement this resetting behavior.As an example, if your code looked like the following:
Update your function to the following to reimplement the resetting behavior:
Minor Changes
#11923
d88c7f8Thanks @jerelmiller! - Add support forsubscribeToMorefunction touseQueryRefHandlers.#11854
3812800Thanks @jcostello-atlassian! - Support extensions in useSubscription#11923
d88c7f8Thanks @jerelmiller! - Add support forsubscribeToMorefunction touseLoadableQuery.#11863
98e44f7Thanks @phryneas! - ReimplementuseSubscriptionto fix rules of React violations.#11869
a69327cThanks @phryneas! - Rewrite big parts ofuseQueryanduseLazyQueryto be more compliant with the Rules of React and React Compiler#11936
1b23337Thanks @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 theconnectToDevtoolsoption in favor of a newdevtoolsconfiguration.This option is backwards-compatible with
connectToDevtoolsand will be used in the absense of adevtoolsoption.#11923
d88c7f8Thanks @jerelmiller! - Add support forsubscribeToMorefunction touseBackgroundQuery.#11930
a768575Thanks @jerelmiller! - Deprecates experimental schema testing utilities introduced in 3.10 in favor of recommending@apollo/graphql-testing-library.Patch Changes
#11951
0de03afThanks @phryneas! - add React 19 RC topeerDependencies#11927
2941824Thanks @phryneas! - Addrestartfunction touseSubscription.#11949
4528918Thanks @alessbell! - Remove deprecatedwatchFragmentoption,canonizeResults#11937
78332beThanks @phryneas! -createSchemaFetch: simulate serialized errors instead of anApolloErrorinstance#11902
96422ceThanks @phryneas! - Addcausefield toApolloError.#11806
8df6013Thanks @phryneas! - MockLink: add query default variables if not specified in mock request#11926
3dd6432Thanks @phryneas! -watchFragment: forward additional options todiffOptions#11946
7d833b8Thanks @jerelmiller! - Fix issue where mutations were not accessible by Apollo Client Devtools in 3.11.0-rc.0.#11944
8f3d7ebThanks @sneyderdev! - AllowIgnoreModifierto be returned from aoptimisticResponsefunction when inferring from aTypedDocumentNodewhen used with a generic argument.#11954
4a6e86aThanks @phryneas! - Document (and deprecate) the previously undocumentederrorsproperty on theuseQueryQueryResulttype.#11719
09a6677Thanks @phryneas! - Allow wrappingcreateQueryPreloader#11921
70406bfThanks @phryneas! - addignoreResultsoption touseSubscriptionv3.10.8Compare Source
Patch Changes
1f0460aThanks @jerelmiller! - Allowundefinedto be returned from acache.modifymodifier function when a generic type argument is used.v3.10.7Compare Source
Patch Changes
#11901
10a8c0aThanks @phryneas! - updatecanUseLayoutEffectcheck to also allow for layout effects in React Native#11861
1aed0e8Thanks @henryqdineen! - Defend against non-serializable params ininvariantWrappers#11905
29755daThanks @phryneas! - Add.d.ctsfiles for cjs bundles#11906
d104759Thanks @phryneas! - chore: update TypeScript to 5.5babel/babel (@babel/core)
v7.24.9Compare Source
🐛 Bug Fix
babel-core,babel-standalonerequire()call in@babel/standalonebundle (@nicolo-ribaudo)babel-types💅 Polish
babel-generator,babel-plugin-transform-optional-chainingas/satisfies(@nicolo-ribaudo)🏠 Internal
babel-helper-module-transformsv7.24.8Compare Source
👓 Spec Compliance
babel-parserdeclare(@liuxingbaoyu)🐛 Bug Fix
babel-generatorininforheads (@nicolo-ribaudo)await using(@nicolo-ribaudo)babel-parserusingdeclarations (@H0onnn).value: undefinedto regexp literals (@liuxingbaoyu)babel-typesObjectTypeInternalSlotvisitor keys (@nicolo-ribaudo)babel-plugin-transform-typescriptexport import x =(@liuxingbaoyu)💅 Polish
babel-generatorasyncinfor await(@nicolo-ribaudo)babel-traverseScope.globalsmultiple times (@liuxingbaoyu)ardatan/graphql-mesh (@graphql-mesh/apollo-link)
v0.100.4Compare Source
Patch Changes
v0.100.3Compare Source
Patch Changes
v0.100.2Compare Source
Patch Changes
[
4bc495c]:v0.100.1Compare Source
Patch Changes
[
7800514]:v0.100.0Compare Source
Patch Changes
v0.99.12Compare Source
Patch Changes
0d916a4Thanks @ardatan! - dependencies updates:
@graphql-tools/utils@^10.2.3↗︎(from
^10.2.1, inpeerDependencies)[
0d916a4]:v0.99.11Compare Source
Patch Changes
[
7544594]:ardatan/graphql-mesh (@graphql-mesh/cli)
v0.92.4Compare Source
Patch Changes
[
597e790,597e790]:v0.92.3Compare Source
Patch Changes
#7360
5e5dec5Thanks @enisdenjo! - dependencies updates:
jiti@^1.21.6↗︎ (todependencies)#7360
5e5dec5Thanks @enisdenjo! - Use jiti as default JS importer
Updated dependencies
[
5e5dec5,5e5dec5]:v0.92.2Compare Source
Patch Changes
[
4bc495c,4bc495c,4bc495c]:v0.92.1Compare Source
Patch Changes
[
7800514,7800514,7800514]:v0.92.0Compare Source
Minor Changes
a8e3f00Thanks @enisdenjo! - Use jiti import from @graphql-mesh/utils
instead of tsx
Patch Changes
#7218
ededa2cThanks @EmrysMyrddin! - dependencies updates:
rimraf@^6.0.0↗︎ (from^5.0.0, independencies)#7244
522788eThanks @renovate! - dependencies updates:
rimraf@^6.0.0↗︎ (from^5.0.0, independencies)#7261
a8e3f00Thanks @enisdenjo! - dependencies updates:
tsx@^4.7.1↗︎ (fromdependencies)Updated dependencies
[
a8e3f00,a8e3f00]:v0.91.2Compare Source
Patch Changes
0d916a4Thanks @ardatan! - dependencies updates:
@graphql-tools/utils@^10.2.3↗︎(from
^10.2.1, independencies)[
0d916a4,0d916a4,8a04cf7,0d916a4,0d916a4,0d916a4,0d916a4,0d916a4,8a04cf7]:v0.91.1Compare Source
Patch Changes
[
f985978,7544594]:ardatan/graphql-mesh (@graphql-mesh/fusion-runtime)
v0.5.5Compare Source
Patch Changes
#7343
597e790Thanks @ardatan! - More verbose debug logs for HTTP fetch calls and
subgraph requests
Updated dependencies
[
597e790,597e790]:v0.5.4Compare Source
Patch Changes
[
5e5dec5,5e5dec5]:v0.5.3Compare Source
Patch Changes
f47c900Thanks @dotansimha! - Pass context type from
OnSubgraphExecuteto
ExecutionRequestv0.5.2Compare Source
Patch Changes
#7351
9f6624eThanks @ardatan! - dependencies updates:
@graphql-tools/federation@^2.2.0↗︎(from
^2.1.2, independencies)@graphql-mesh/cross-helpers@^0.4.4↗︎(to
dependencies)#7352
4bc495cThanks @ardatan! - dependencies updates:
@graphql-tools/delegate@^10.0.16↗︎(from
^10.0.14, independencies)@graphql-tools/executor@^1.3.0↗︎(from
^1.2.8, independencies)@graphql-tools/federation@^2.2.1↗︎(from
^2.2.0, independencies)#7341
29dc043Thanks @dr3! - Fix the bug when field name is renamed together with the
argument
#7294
345a814Thanks @ardatan! - Ability to manipulate transport entry through
transportEntries.For example, you can add extra headers to a subgraph
Updated dependencies
[
4bc495c,4bc495c,4bc495c,4bc495c,[`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.