Skip to content
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 dependency @apollo/client to v3.8.3 #9123

Merged
merged 2 commits into from
Sep 8, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 2, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@apollo/client (source) 3.8.1 -> 3.8.3 age adoption passing confidence

Release Notes

apollographql/apollo-client (@​apollo/client)

v3.8.3

Compare Source

Patch Changes

v3.8.2

Compare Source

Patch Changes
  • #​10072 51045c336 Thanks @​Huulivoide! - Fixes race conditions in useReactiveVar that may prevent updates to the reactive variable from propagating through the hook.

  • #​11162 d9685f53c Thanks @​jerelmiller! - Ensures GraphQL errors returned in subscription payloads adhere to the errorPolicy set in client.subscribe(...) calls.

  • #​11134 96492e142 Thanks @​alessbell! - Use separate type imports in useSuspenseQuery and useBackgroundQuery to workaround SWC compiler issue.

  • #​11117 6b8198109 Thanks @​phryneas! - Adds a new devtools registration mechanism and tweaks the mechanism behind the
    "devtools not found" mechanic.

  • #​11186 f1d429f32 Thanks @​jerelmiller! - Fix an issue where race conditions when rapidly switching between variables would sometimes result in the wrong data returned from the query. Specifically this occurs when a query is triggered with an initial set of variables (VariablesA), then triggers the same query with another set of variables (VariablesB) but switches back to the VariablesA before the response for VariablesB is returned. Previously this would result in the data for VariablesB to be displayed while VariablesA was active. The data is for VariablesA is now properly returned.

  • #​11163 a8a9e11e9 Thanks @​bignimbus! - Fix typo in error message: "occured" -> "occurred"

  • #​11180 7d9c481e5 Thanks @​jerelmiller! - Fixes an issue where refetching from useBackgroundQuery via refetch with an error after an error was already fetched would get stuck in a loading state.


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.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot enabled auto-merge (squash) September 2, 2023 05:20
@renovate renovate bot changed the title fix(deps): update dependency @apollo/client to v3.8.2 fix(deps): update dependency @apollo/client to v3.8.3 Sep 5, 2023
@renovate renovate bot force-pushed the renovate/apollo-graphql-packages branch from 9db25e6 to d25c62b Compare September 5, 2023 20:43
@thedavidprice thedavidprice added the release:chore This PR is a chore (means nothing for users) label Sep 8, 2023
@thedavidprice thedavidprice added this to the next-release milestone Sep 8, 2023
@thedavidprice thedavidprice merged commit 7dcdf19 into main Sep 8, 2023
8 of 9 checks passed
@thedavidprice thedavidprice deleted the renovate/apollo-graphql-packages branch September 8, 2023 19:38
jtoar pushed a commit that referenced this pull request Sep 13, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@apollo/client](https://www.apollographql.com/docs/react/)
([source](https://togithub.com/apollographql/apollo-client)) | [`3.8.1`
->
`3.8.3`](https://renovatebot.com/diffs/npm/@apollo%2fclient/3.8.1/3.8.3)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@apollo%2fclient/3.8.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@apollo%2fclient/3.8.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@apollo%2fclient/3.8.1/3.8.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@apollo%2fclient/3.8.1/3.8.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

<details>
<summary>apollographql/apollo-client (@&#8203;apollo/client)</summary>

[`v3.8.3`](https://togithub.com/apollographql/apollo-client/blob/HEAD/CHANGELOG.md#383)

[Compare
Source](https://togithub.com/apollographql/apollo-client/compare/v3.8.2...v3.8.3)

-
[#&#8203;11193](https://togithub.com/apollographql/apollo-client/pull/11193)
[`fd2a4cf0c`](https://togithub.com/apollographql/apollo-client/commit/fd2a4cf0c3ada968df3f9814d87dedaaa8eddb5e)
Thanks [@&#8203;phryneas](https://togithub.com/phryneas)! - Call
devtools registration after ApolloClient is fully set up.

[`v3.8.2`](https://togithub.com/apollographql/apollo-client/blob/HEAD/CHANGELOG.md#382)

[Compare
Source](https://togithub.com/apollographql/apollo-client/compare/v3.8.1...v3.8.2)

-
[#&#8203;10072](https://togithub.com/apollographql/apollo-client/pull/10072)
[`51045c336`](https://togithub.com/apollographql/apollo-client/commit/51045c336ff86befbdd598af6e7104ffe0d419d0)
Thanks [@&#8203;Huulivoide](https://togithub.com/Huulivoide)! - Fixes
race conditions in useReactiveVar that may prevent updates to the
reactive variable from propagating through the hook.

-
[#&#8203;11162](https://togithub.com/apollographql/apollo-client/pull/11162)
[`d9685f53c`](https://togithub.com/apollographql/apollo-client/commit/d9685f53c34483245e6ea21e91b669ef1180ae97)
Thanks [@&#8203;jerelmiller](https://togithub.com/jerelmiller)! -
Ensures GraphQL errors returned in subscription payloads adhere to the
`errorPolicy` set in `client.subscribe(...)` calls.

-
[#&#8203;11134](https://togithub.com/apollographql/apollo-client/pull/11134)
[`96492e142`](https://togithub.com/apollographql/apollo-client/commit/96492e14279d78e2613c1381d31f88cdf5816f45)
Thanks [@&#8203;alessbell](https://togithub.com/alessbell)! - Use
separate type imports in useSuspenseQuery and useBackgroundQuery to
workaround SWC compiler issue.

-
[#&#8203;11117](https://togithub.com/apollographql/apollo-client/pull/11117)
[`6b8198109`](https://togithub.com/apollographql/apollo-client/commit/6b8198109bd9fe5eedf352421a0a773ac0acfb18)
Thanks [@&#8203;phryneas](https://togithub.com/phryneas)! - Adds a new
devtools registration mechanism and tweaks the mechanism behind the
    "devtools not found" mechanic.

-
[#&#8203;11186](https://togithub.com/apollographql/apollo-client/pull/11186)
[`f1d429f32`](https://togithub.com/apollographql/apollo-client/commit/f1d429f32ae8e896155b50f1fc7c51dfeb06c3ba)
Thanks [@&#8203;jerelmiller](https://togithub.com/jerelmiller)! - Fix an
issue where race conditions when rapidly switching between variables
would sometimes result in the wrong `data` returned from the query.
Specifically this occurs when a query is triggered with an initial set
of variables (`VariablesA`), then triggers the same query with another
set of variables (`VariablesB`) but switches back to the `VariablesA`
before the response for `VariablesB` is returned. Previously this would
result in the data for `VariablesB` to be displayed while `VariablesA`
was active. The data is for `VariablesA` is now properly returned.

-
[#&#8203;11163](https://togithub.com/apollographql/apollo-client/pull/11163)
[`a8a9e11e9`](https://togithub.com/apollographql/apollo-client/commit/a8a9e11e917716538206eb7d5de21dbfd09630bd)
Thanks [@&#8203;bignimbus](https://togithub.com/bignimbus)! - Fix typo
in error message: "occured" -> "occurred"

-
[#&#8203;11180](https://togithub.com/apollographql/apollo-client/pull/11180)
[`7d9c481e5`](https://togithub.com/apollographql/apollo-client/commit/7d9c481e53f3c9577ec6ed6231c9e3db8c8b374b)
Thanks [@&#8203;jerelmiller](https://togithub.com/jerelmiller)! - Fixes
an issue where refetching from `useBackgroundQuery` via `refetch` with
an error after an error was already fetched would get stuck in a loading
state.

</details>

---

📅 **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.

🔕 **Ignore**: Close this PR and you won't be reminded about these
updates again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/redwoodjs/redwood).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi42OC4xIiwidXBkYXRlZEluVmVyIjoiMzYuNzkuMSIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: David Price <thedavid@thedavidprice.com>
@jtoar jtoar modified the milestones: next-release, v6.3.0 Sep 16, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
release:chore This PR is a chore (means nothing for users)
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants