-
Notifications
You must be signed in to change notification settings - Fork 3
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
chore: update npm dependencies #6
base: beta
Are you sure you want to change the base?
Conversation
a1087a0
to
75c8e9c
Compare
60cb682
to
80600c5
Compare
80600c5
to
6632f29
Compare
6ef486b
to
4f0513d
Compare
c4d3b0c
to
974ccba
Compare
88b6c28
to
93e2b63
Compare
6600934
to
16e897a
Compare
16e897a
to
f6aed37
Compare
Important Review skippedBot user detected. To trigger a single review, invoke the You can disable this status message by setting the 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
ad31f35
to
f59fbdc
Compare
f59fbdc
to
1d35dbe
Compare
This PR contains the following updates:
3.8.1
->3.11.8
^1.3.3
->^3.2.0
11.11.0
->11.13.0
8.0.8
->8.3.6
8.0.8
->8.3.6
8.0.8
->8.3.6
8.0.8
->8.3.6
8.0.8
->8.3.6
8.0.8
->8.3.6
8.0.8
->8.3.6
8.0.8
->8.3.6
6.1.4
->6.6.2
14.0.0
->16.0.1
6.5.0
->7.1.0
6.5.0
->7.1.0
20.12.7
->22.8.2
18.2.6
->18.3.12
18.2.6
->18.3.1
9.0.8
->10.0.0
7.2.0
->8.12.1
7.2.0
->8.12.1
4.2.1
->4.3.3
3.2.1
->4.1.3
5.5.2
->5.5.6
8.57.0
->9.13.0
0.3.0
->0.3.6
4.6.0
->5.0.0
0.4.6
->0.4.14
0.8.0
->0.10.1
4.3.2
->4.5.0
11.0.27
->11.11.10
2.1.1
->4.0.2
1.12.1
->2.10.1
0.7.3
->0.8.3
22.1.0
->25.0.1
1.3.8
->1.3.9
7.2.0
->10.1.0
8.0.4
->11.0.1
>=20
->>=20.18.0
3.2.1
->4.0.1
3.2.5
->3.3.3
2.11.0
->2.14.0
1.23.1
->2.0.1
^18.2.0
->^18.3.1
18.2.0
->18.3.1
^18.2.0
->^18.3.1
18.2.0
->18.3.1
4.0.11
->4.1.2
17.5.0
->17.5.1
1.17.4
->1.18.3
8.0.8
->8.3.6
5.2.2
->5.6.3
9.0.1
->11.0.2
5.0.8
->5.4.10
3.8.1
->4.3.0
^4.3.2
->^5.0.1
1.0.4
->2.1.4
3.2.1
->4.0.0
4.38.2
->5.18.2
Release Notes
apollographql/apollo-client (@apollo/client)
v3.11.8
Compare Source
Patch Changes
35cf186
Thanks @phryneas! - Fixed a bug where incorrect object access in some Safari extensions could cause a crash.v3.11.7
Compare Source
Patch Changes
e471cef
Thanks @jerelmiller! - Fixes a regression from where passing an invalid identifier tofrom
inuseFragment
would result in the warningTypeError: Cannot read properties of undefined (reading '__typename')
.v3.11.6
Compare Source
Patch Changes
#12049
9c26892
Thanks @phryneas and @maciesielka! - Fix a bug whereuseFragment
did not re-render as expected#12044
04462a2
Thanks @DoctorJohn! - Cache theuseSubscription
hook'srestart
function definition between re-renders.v3.11.5
Compare Source
Patch Changes
#12027
eb3e21b
Thanks @JavaScriptBach! - TypeMutationResult.reset
as an arrow function#12020
82d8cb4
Thanks @jerelmiller! - Better conform to Rules of React by avoiding write of ref in render foruseFragment
.v3.11.4
Compare Source
Patch Changes
#11994
41b17e5
Thanks @jerelmiller! - Update theModifier
function type to allowcache.modify
to return deeply partial data.#11989
e609156
Thanks @phryneas! - Fix a potential crash when callingclearStore
while a query was running.Previously, calling
client.clearStore()
while a query was running had one of these results:useQuery
would stay in aloading: true
state.useLazyQuery
would stay in aloading: true
state, but also crash with a"Cannot read property 'data' of undefined"
error.Now, in both cases, the hook will enter an error state with a
networkError
, and the promise returned by theuseLazyQuery
execute
function will return a result in an error state.#11994
41b17e5
Thanks @jerelmiller! - Prevent accidental distribution oncache.modify
field modifiers when a field is a union type array.v3.11.3
Compare Source
Patch Changes
#11984
5db1659
Thanks @jerelmiller! - Fix an issue where multiple fetches with results that returned errors would sometimes set thedata
property with anerrorPolicy
ofnone
.#11974
c95848e
Thanks @jerelmiller! - Fix an issue wherefetchMore
would write its result data to the cache when using it with ano-cache
fetch policy.#11974
c95848e
Thanks @jerelmiller! - Fix an issue where executingfetchMore
with ano-cache
fetch policy could sometimes result in multiple network requests.#11974
c95848e
Thanks @jerelmiller! -Potentially disruptive change
When calling
fetchMore
with a query that has ano-cache
fetch policy,fetchMore
will now throw if anupdateQuery
function is not provided. This provides a mechanism to merge the results from thefetchMore
call with the query's previous result.v3.11.2
Compare Source
Patch Changes
38c0a2c
Thanks @jerelmiller! - Fix missinggetServerSnapshot
error when usinguseSubscription
on the server.v3.11.1
Compare Source
Patch Changes
#11969
061cab6
Thanks @jerelmiller! - Remove check forwindow.__APOLLO_CLIENT__
when determining whether to connect to Apollo Client Devtools whenconnectToDevtools
ordevtools.enabled
is not specified. This now simply checks to see if the application is in development mode.#11971
ecf77f6
Thanks @jerelmiller! - Prevent thesetTimeout
for suggesting devtools from running in non-browser environments.v3.11.0
Compare Source
Potentially Breaking Fixes
Configuration
📅 Schedule: Branch creation - "before 3:00 am on the 4th day of the month" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, 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.