-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(deps): update all dependencies #3639
base: main
Are you sure you want to change the base?
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
|
d2cb181
to
4fba8a5
Compare
4fba8a5
to
b693663
Compare
patches/[email protected]
Outdated
-declare function adapter(userPlugin: Plugin): Plugin$1<any>; | ||
+declare function adapter(userPlugin: Plugin): Plugin$1; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@CarlosCortizasCT Can you check / confirm that this was the actual patch?
7c991ac
to
e1382dc
Compare
e1382dc
to
9233f56
Compare
9233f56
to
9ec594d
Compare
9ec594d
to
1f0768a
Compare
1f0768a
to
b2dca2d
Compare
9a02e6f
to
9a15422
Compare
9a15422
to
fd8d93e
Compare
fd8d93e
to
a9f1886
Compare
a9f1886
to
12d578a
Compare
12d578a
to
2f2eb37
Compare
2f2eb37
to
eed906d
Compare
eed906d
to
928c107
Compare
928c107
to
8a5b2f2
Compare
8a5b2f2
to
9cdea10
Compare
This PR contains the following updates:
3.7.14
->3.13.4
3.7.14
->3.13.4
0.5.0
->0.5.1
2.27.5
->2.28.1
6.2.12
->6.6.1
6.2.12
->6.6.1
2.7.8
->2.11.1
0.21.4
->0.23.0
2.2.1
->2.2.3
1.30.7
->1.30.8
3.1.3
->3.1.4
2.6.2
->2.8.11
1.1.4
->1.1.6
7.119.1
->7.120.3
7.117.0
->7.120.3
7.117.0
->7.120.3
0.11.11
->0.12.0
2.6.11
->2.6.12
2.6.11
->2.6.12
17.0.25
->17.0.26
8.16.0
->8.17.1
8.3.0
->8.4.1
7.5.0
->7.7.0
16.4.5
->16.4.7
8.57.0
->8.57.1
8.57.0
->8.57.1
4.20.0
->4.21.2
4.20.0
->4.21.2
8.4.1
->8.5.1
16.8.2
->16.10.0
5.6.0
->5.6.3
5.6.0
->5.6.3
2.2.0
->2.2.1
0.15.2
->0.16.1
15.0.3
->15.0.4
2.6.0
->2.7.0
2.9.0
->2.9.2
9.15.4
->9.15.9
9.15.4+sha256.9bee59c7313a216722c079c1e22160dea7f88df4e0c3450b1d7b01b882336c6a
->9.15.9
v4.0.0
->v4.1.0
8.4.38
->8.5.3
8.4.38
->8.5.3
0.14.2
->0.16.0
5.8.0
->5.10.1
5.0.7
->5.0.10
7.6.2
->7.7.1
5.0.9
->5.0.10
6.1.5
->6.1.6
0.8.5
->0.9.1
2.0.4
->2.0.10
5.3.10
->5.3.14
5.0.4
->5.8.2
5.0.4
->5.8.2
3.18.0
->3.19.3
~6.1.0
->~6.2.0
~6.1.0
->~6.2.0
0.17.0
->0.17.1
5.94.0
->5.98.0
5.94.0
->5.98.0
3.13.0
->3.17.0
Release Notes
apollographql/apollo-client (@apollo/client)
v3.13.4
Compare Source
Patch Changes
fee9368
Thanks @jorenbroekema! - Use import star fromrehackt
to prevent issues with importing named exports from external CJS modules.v3.13.3
Compare Source
Patch Changes
#12362
f6d387c
Thanks @jerelmiller! - Fixes an issue where callingobservableQuery.getCurrentResult()
when theerrorPolicy
was set toall
would return thenetworkStatus
asNetworkStatus.ready
when there were errors returned in the result. This has been corrected to reportNetworkStatus.error
.This bug also affected the
useQuery
anduseLazyQuery
hooks and may affect you if you check fornetworkStatus
in your component.v3.13.2
Compare Source
Patch Changes
#12409
6aa2f3e
Thanks @phryneas! - To mitigate problems when Apollo Client ends up more than once in the bundle, some unique symbols were converted intoSymbol.for
calls.#12392
644bb26
Thanks @Joja81! - Fixes an issue where the DeepOmit type would turn optional properties into required properties. This should only affect you if you were using the omitDeep or stripTypename utilities exported by Apollo Client.#12404
4332b88
Thanks @jerelmiller! - ShowNaN
rather than converting tonull
in debug messages fromMockLink
for unmatchedvariables
values.v3.13.1
Compare Source
Patch Changes
#12369
bdfc5b2
Thanks @phryneas! -ObervableQuery.refetch
: don't refetch withcache-and-network
, swich tonetwork-only
instead#12375
d3f8f13
Thanks @jerelmiller! - Export theUseSuspenseFragmentOptions
type.v3.13.0
Compare Source
Minor Changes
#12066
c01da5d
Thanks @jerelmiller! - Adds a newuseSuspenseFragment
hook.useSuspenseFragment
suspends untildata
is complete. It is a drop-in replacement foruseFragment
when you prefer to use Suspense to control the loading state of a fragment. See the documentation for more details.#12174
ba5cc33
Thanks @jerelmiller! - Ensure errors thrown in theonCompleted
callback fromuseMutation
don't callonError
.#12340
716d02e
Thanks @phryneas! - Deprecate theonCompleted
andonError
callbacks ofuseQuery
anduseLazyQuery
.For more context, please see the related issue on GitHub.
#12276
670f112
Thanks @Cellule! - Provide a more type-safe option for the previous data value passed toobservableQuery.updateQuery
. Using it could result in crashes at runtime as this callback could be called with partial data even though its type reported the value as a complete result.The
updateQuery
callback function is now called with a new type-safepreviousData
property and a newcomplete
property in the 2nd argument that determines whetherpreviousData
is a complete or partial result.As a result of this change, it is recommended to use the
previousData
property passed to the 2nd argument of the callback rather than using the previous data value from the first argument since that value is not type-safe. The first argument is now deprecated and will be removed in a future version of Apollo Client.#12174
ba5cc33
Thanks @jerelmiller! - Reject the mutation promise if errors are thrown in theonCompleted
callback ofuseMutation
.Patch Changes
#12276
670f112
Thanks @Cellule! - Fix the return type of theupdateQuery
function to allow forundefined
.updateQuery
had the ability to bail out of the update by returning a falsey value, but the return type enforced a query value.#12296
2422df2
Thanks @Cellule! - Deprecate optionignoreResults
inuseMutation
.Once this option is removed, existing code still using it might see increase in re-renders.
If you don't want to synchronize your component state with the mutation, please use
useApolloClient
to get your ApolloClient instance and callclient.mutate
directly.#12338
67c16c9
Thanks @phryneas! - In case of a multipart response (e.g. with@defer
), query deduplication willnow keep going until the final chunk has been received.
[#12276](https://redirec
Configuration
📅 Schedule: Branch creation - "* 0-3 * * 1" (UTC), 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.
👻 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.