-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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 the issue that useSWR revalidation isn't triggered if the useSWR call happens after mutation #2731
Fix the issue that useSWR revalidation isn't triggered if the useSWR call happens after mutation #2731
Conversation
This pull request is automatically built and testable in CodeSandbox. To see build info of the built libraries, click here or the icon next to each commit SHA. Latest deployment of this branch, based on commit f902daa:
|
f54525c
to
4eafd1a
Compare
My current workaround is to mutate again in the onSuccess callback of the first mutation. |
useSWR call happens after mutation. E.g.: req------------->res mutate------->end In this case, the res would be ignored while req would not be triggered a revalidation.
4eafd1a
to
f902daa
Compare
Test case added. |
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.
Thank you!
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [swr](https://swr.vercel.app) ([source](https://github.com/vercel/swr)) | [`^2.2.0` -> `^2.2.2`](https://renovatebot.com/diffs/npm/swr/2.2.0/2.2.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/swr/2.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/swr/2.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/swr/2.2.0/2.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/swr/2.2.0/2.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>vercel/swr (swr)</summary> ### [`v2.2.2`](https://github.com/vercel/swr/releases/tag/v2.2.2) [Compare Source](https://github.com/vercel/swr/compare/v2.2.1...v2.2.2) #### What's Changed - fix: It should use startTransition only when IS_REACT_LEGACY is false by [@​TopGrd](https://github.com/TopGrd) in [https://github.com/vercel/swr/pull/2756](https://github.com/vercel/swr/pull/2756) - fix: simplify `ArgumentsTuple` by [@​Andarist](https://github.com/Andarist) in [https://github.com/vercel/swr/pull/2761](https://github.com/vercel/swr/pull/2761) #### New Contributors - [@​TopGrd](https://github.com/TopGrd) made their first contribution in [https://github.com/vercel/swr/pull/2756](https://github.com/vercel/swr/pull/2756) - [@​Andarist](https://github.com/Andarist) made their first contribution in [https://github.com/vercel/swr/pull/2761](https://github.com/vercel/swr/pull/2761) **Full Changelog**: vercel/swr@v2.2.1...v2.2.2 ### [`v2.2.1`](https://github.com/vercel/swr/releases/tag/v2.2.1) [Compare Source](https://github.com/vercel/swr/compare/v2.2.0...v2.2.1) #### What's Changed - Add use client directive for client components exports by [@​huozhi](https://github.com/huozhi) in [https://github.com/vercel/swr/pull/2696](https://github.com/vercel/swr/pull/2696) - remove the 'use client' directive and add client-only to useSWR entry. by [@​promer94](https://github.com/promer94) in [https://github.com/vercel/swr/pull/2705](https://github.com/vercel/swr/pull/2705) - fix: should serialize subscription fn key by [@​promer94](https://github.com/promer94) in [https://github.com/vercel/swr/pull/2711](https://github.com/vercel/swr/pull/2711) - build(deps-dev): bump word-wrap from 1.2.3 to 1.2.4 by [@​dependabot](https://github.com/dependabot) in [https://github.com/vercel/swr/pull/2720](https://github.com/vercel/swr/pull/2720) - fix: only make data and error update as a non-blocking transition by [@​promer94](https://github.com/promer94) in [https://github.com/vercel/swr/pull/2691](https://github.com/vercel/swr/pull/2691) - build: generate d.mts for for .mjs, so typescript could resolve types correctly by [@​promer94](https://github.com/promer94) in [https://github.com/vercel/swr/pull/2695](https://github.com/vercel/swr/pull/2695) - fix(infinite): Fix the ability to use preload along with useSWRInfinite by [@​agadzik](https://github.com/agadzik) in [https://github.com/vercel/swr/pull/2723](https://github.com/vercel/swr/pull/2723) - fix: Ensure that using preload with useSWRInfinite returns back an array of data by [@​agadzik](https://github.com/agadzik) in [https://github.com/vercel/swr/pull/2726](https://github.com/vercel/swr/pull/2726) - fix: preload request should be consumed within `revalidate` to support `parallel` option by [@​promer94](https://github.com/promer94) in [https://github.com/vercel/swr/pull/2727](https://github.com/vercel/swr/pull/2727) - Fix the issue that useSWR revalidation isn't triggered if the useSWR call happens after mutation by [@​Ponyets](https://github.com/Ponyets) in [https://github.com/vercel/swr/pull/2731](https://github.com/vercel/swr/pull/2731) - fix(mutate): fix types of mutate/trigger; make mutate/trigger always return the result of fetcher by [@​Ponyets](https://github.com/Ponyets) in [https://github.com/vercel/swr/pull/2708](https://github.com/vercel/swr/pull/2708) - build(deps-dev): bump tough-cookie from 4.1.2 to 4.1.3 by [@​dependabot](https://github.com/dependabot) in [https://github.com/vercel/swr/pull/2735](https://github.com/vercel/swr/pull/2735) - build(deps-dev): bump json5 from 2.2.1 to 2.2.3 by [@​dependabot](https://github.com/dependabot) in [https://github.com/vercel/swr/pull/2736](https://github.com/vercel/swr/pull/2736) - docs: use isLoading instead of !data by [@​pawfa](https://github.com/pawfa) in [https://github.com/vercel/swr/pull/2734](https://github.com/vercel/swr/pull/2734) #### New Contributors - [@​agadzik](https://github.com/agadzik) made their first contribution in [https://github.com/vercel/swr/pull/2723](https://github.com/vercel/swr/pull/2723) - [@​Ponyets](https://github.com/Ponyets) made their first contribution in [https://github.com/vercel/swr/pull/2731](https://github.com/vercel/swr/pull/2731) - [@​pawfa](https://github.com/pawfa) made their first contribution in [https://github.com/vercel/swr/pull/2734](https://github.com/vercel/swr/pull/2734) **Full Changelog**: vercel/swr@v2.2.0...v2.2.1 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "before 8am on monday" in timezone America/Los_Angeles, 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. 🔕 **Ignore**: Close this PR and you won't be reminded about this update 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/tailscale-dev/vscode-tailscale). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi40MC4zIiwidXBkYXRlZEluVmVyIjoiMzYuNjQuOCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [swr](https://swr.vercel.app) ([source](https://github.com/vercel/swr)) | [`2.2.0` -> `2.2.2`](https://renovatebot.com/diffs/npm/swr/2.2.0/2.2.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/swr/2.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/swr/2.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/swr/2.2.0/2.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/swr/2.2.0/2.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>vercel/swr (swr)</summary> ### [`v2.2.2`](https://github.com/vercel/swr/releases/tag/v2.2.2) [Compare Source](https://github.com/vercel/swr/compare/e510955d42b472c8d45034c51b8acc12980aa2e7...4d20bff6759d4478380963654a560a1cf9ae7be1) #### What's Changed - fix: It should use startTransition only when IS_REACT_LEGACY is false by [@​TopGrd](https://github.com/TopGrd) in [https://github.com/vercel/swr/pull/2756](https://github.com/vercel/swr/pull/2756) - fix: simplify `ArgumentsTuple` by [@​Andarist](https://github.com/Andarist) in [https://github.com/vercel/swr/pull/2761](https://github.com/vercel/swr/pull/2761) #### New Contributors - [@​TopGrd](https://github.com/TopGrd) made their first contribution in [https://github.com/vercel/swr/pull/2756](https://github.com/vercel/swr/pull/2756) - [@​Andarist](https://github.com/Andarist) made their first contribution in [https://github.com/vercel/swr/pull/2761](https://github.com/vercel/swr/pull/2761) **Full Changelog**: vercel/swr@v2.2.1...v2.2.2 ### [`v2.2.1`](https://github.com/vercel/swr/releases/tag/v2.2.1) [Compare Source](https://github.com/vercel/swr/compare/024cbd106f8f1b0f8ea0006301d1a5fe974c691b...e510955d42b472c8d45034c51b8acc12980aa2e7) #### What's Changed - Add use client directive for client components exports by [@​huozhi](https://github.com/huozhi) in [https://github.com/vercel/swr/pull/2696](https://github.com/vercel/swr/pull/2696) - remove the 'use client' directive and add client-only to useSWR entry. by [@​promer94](https://github.com/promer94) in [https://github.com/vercel/swr/pull/2705](https://github.com/vercel/swr/pull/2705) - fix: should serialize subscription fn key by [@​promer94](https://github.com/promer94) in [https://github.com/vercel/swr/pull/2711](https://github.com/vercel/swr/pull/2711) - build(deps-dev): bump word-wrap from 1.2.3 to 1.2.4 by [@​dependabot](https://github.com/dependabot) in [https://github.com/vercel/swr/pull/2720](https://github.com/vercel/swr/pull/2720) - fix: only make data and error update as a non-blocking transition by [@​promer94](https://github.com/promer94) in [https://github.com/vercel/swr/pull/2691](https://github.com/vercel/swr/pull/2691) - build: generate d.mts for for .mjs, so typescript could resolve types correctly by [@​promer94](https://github.com/promer94) in [https://github.com/vercel/swr/pull/2695](https://github.com/vercel/swr/pull/2695) - fix(infinite): Fix the ability to use preload along with useSWRInfinite by [@​agadzik](https://github.com/agadzik) in [https://github.com/vercel/swr/pull/2723](https://github.com/vercel/swr/pull/2723) - fix: Ensure that using preload with useSWRInfinite returns back an array of data by [@​agadzik](https://github.com/agadzik) in [https://github.com/vercel/swr/pull/2726](https://github.com/vercel/swr/pull/2726) - fix: preload request should be consumed within `revalidate` to support `parallel` option by [@​promer94](https://github.com/promer94) in [https://github.com/vercel/swr/pull/2727](https://github.com/vercel/swr/pull/2727) - Fix the issue that useSWR revalidation isn't triggered if the useSWR call happens after mutation by [@​Ponyets](https://github.com/Ponyets) in [https://github.com/vercel/swr/pull/2731](https://github.com/vercel/swr/pull/2731) - fix(mutate): fix types of mutate/trigger; make mutate/trigger always return the result of fetcher by [@​Ponyets](https://github.com/Ponyets) in [https://github.com/vercel/swr/pull/2708](https://github.com/vercel/swr/pull/2708) - build(deps-dev): bump tough-cookie from 4.1.2 to 4.1.3 by [@​dependabot](https://github.com/dependabot) in [https://github.com/vercel/swr/pull/2735](https://github.com/vercel/swr/pull/2735) - build(deps-dev): bump json5 from 2.2.1 to 2.2.3 by [@​dependabot](https://github.com/dependabot) in [https://github.com/vercel/swr/pull/2736](https://github.com/vercel/swr/pull/2736) - docs: use isLoading instead of !data by [@​pawfa](https://github.com/pawfa) in [https://github.com/vercel/swr/pull/2734](https://github.com/vercel/swr/pull/2734) #### New Contributors - [@​agadzik](https://github.com/agadzik) made their first contribution in [https://github.com/vercel/swr/pull/2723](https://github.com/vercel/swr/pull/2723) - [@​Ponyets](https://github.com/Ponyets) made their first contribution in [https://github.com/vercel/swr/pull/2731](https://github.com/vercel/swr/pull/2731) - [@​pawfa](https://github.com/pawfa) made their first contribution in [https://github.com/vercel/swr/pull/2734](https://github.com/vercel/swr/pull/2734) **Full Changelog**: vercel/swr@v2.2.0...v2.2.1 </details> --- ### 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 this update 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/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi44My4wIiwidXBkYXRlZEluVmVyIjoiMzYuODMuMCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [swr](https://swr.vercel.app) ([source](https://github.com/vercel/swr)) | [`2.2.0` -> `2.2.2`](https://renovatebot.com/diffs/npm/swr/2.2.0/2.2.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/swr/2.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/swr/2.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/swr/2.2.0/2.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/swr/2.2.0/2.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>vercel/swr (swr)</summary> ### [`v2.2.2`](https://github.com/vercel/swr/releases/tag/v2.2.2) [Compare Source](https://github.com/vercel/swr/compare/v2.2.1...v2.2.2) #### What's Changed - fix: It should use startTransition only when IS_REACT_LEGACY is false by [@​TopGrd](https://github.com/TopGrd) in [https://github.com/vercel/swr/pull/2756](https://github.com/vercel/swr/pull/2756) - fix: simplify `ArgumentsTuple` by [@​Andarist](https://github.com/Andarist) in [https://github.com/vercel/swr/pull/2761](https://github.com/vercel/swr/pull/2761) #### New Contributors - [@​TopGrd](https://github.com/TopGrd) made their first contribution in [https://github.com/vercel/swr/pull/2756](https://github.com/vercel/swr/pull/2756) - [@​Andarist](https://github.com/Andarist) made their first contribution in [https://github.com/vercel/swr/pull/2761](https://github.com/vercel/swr/pull/2761) **Full Changelog**: vercel/swr@v2.2.1...v2.2.2 ### [`v2.2.1`](https://github.com/vercel/swr/releases/tag/v2.2.1) [Compare Source](https://github.com/vercel/swr/compare/v2.2.0...v2.2.1) #### What's Changed - Add use client directive for client components exports by [@​huozhi](https://github.com/huozhi) in [https://github.com/vercel/swr/pull/2696](https://github.com/vercel/swr/pull/2696) - remove the 'use client' directive and add client-only to useSWR entry. by [@​promer94](https://github.com/promer94) in [https://github.com/vercel/swr/pull/2705](https://github.com/vercel/swr/pull/2705) - fix: should serialize subscription fn key by [@​promer94](https://github.com/promer94) in [https://github.com/vercel/swr/pull/2711](https://github.com/vercel/swr/pull/2711) - build(deps-dev): bump word-wrap from 1.2.3 to 1.2.4 by [@​dependabot](https://github.com/dependabot) in [https://github.com/vercel/swr/pull/2720](https://github.com/vercel/swr/pull/2720) - fix: only make data and error update as a non-blocking transition by [@​promer94](https://github.com/promer94) in [https://github.com/vercel/swr/pull/2691](https://github.com/vercel/swr/pull/2691) - build: generate d.mts for for .mjs, so typescript could resolve types correctly by [@​promer94](https://github.com/promer94) in [https://github.com/vercel/swr/pull/2695](https://github.com/vercel/swr/pull/2695) - fix(infinite): Fix the ability to use preload along with useSWRInfinite by [@​agadzik](https://github.com/agadzik) in [https://github.com/vercel/swr/pull/2723](https://github.com/vercel/swr/pull/2723) - fix: Ensure that using preload with useSWRInfinite returns back an array of data by [@​agadzik](https://github.com/agadzik) in [https://github.com/vercel/swr/pull/2726](https://github.com/vercel/swr/pull/2726) - fix: preload request should be consumed within `revalidate` to support `parallel` option by [@​promer94](https://github.com/promer94) in [https://github.com/vercel/swr/pull/2727](https://github.com/vercel/swr/pull/2727) - Fix the issue that useSWR revalidation isn't triggered if the useSWR call happens after mutation by [@​Ponyets](https://github.com/Ponyets) in [https://github.com/vercel/swr/pull/2731](https://github.com/vercel/swr/pull/2731) - fix(mutate): fix types of mutate/trigger; make mutate/trigger always return the result of fetcher by [@​Ponyets](https://github.com/Ponyets) in [https://github.com/vercel/swr/pull/2708](https://github.com/vercel/swr/pull/2708) - build(deps-dev): bump tough-cookie from 4.1.2 to 4.1.3 by [@​dependabot](https://github.com/dependabot) in [https://github.com/vercel/swr/pull/2735](https://github.com/vercel/swr/pull/2735) - build(deps-dev): bump json5 from 2.2.1 to 2.2.3 by [@​dependabot](https://github.com/dependabot) in [https://github.com/vercel/swr/pull/2736](https://github.com/vercel/swr/pull/2736) - docs: use isLoading instead of !data by [@​pawfa](https://github.com/pawfa) in [https://github.com/vercel/swr/pull/2734](https://github.com/vercel/swr/pull/2734) #### New Contributors - [@​agadzik](https://github.com/agadzik) made their first contribution in [https://github.com/vercel/swr/pull/2723](https://github.com/vercel/swr/pull/2723) - [@​Ponyets](https://github.com/Ponyets) made their first contribution in [https://github.com/vercel/swr/pull/2731](https://github.com/vercel/swr/pull/2731) - [@​pawfa](https://github.com/pawfa) made their first contribution in [https://github.com/vercel/swr/pull/2734](https://github.com/vercel/swr/pull/2734) **Full Changelog**: vercel/swr@v2.2.0...v2.2.1 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), 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. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] 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/sammyfilly/Vercel-ai).
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [swr](https://swr.vercel.app) ([source](https://github.com/vercel/swr)) | [`^2.2.0` -> `^2.2.2`](https://renovatebot.com/diffs/npm/swr/2.2.0/2.2.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/swr/2.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/swr/2.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/swr/2.2.0/2.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/swr/2.2.0/2.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>vercel/swr (swr)</summary> ### [`v2.2.2`](https://github.com/vercel/swr/releases/tag/v2.2.2) [Compare Source](https://github.com/vercel/swr/compare/v2.2.1...v2.2.2) #### What's Changed - fix: It should use startTransition only when IS_REACT_LEGACY is false by [@​TopGrd](https://github.com/TopGrd) in [https://github.com/vercel/swr/pull/2756](https://github.com/vercel/swr/pull/2756) - fix: simplify `ArgumentsTuple` by [@​Andarist](https://github.com/Andarist) in [https://github.com/vercel/swr/pull/2761](https://github.com/vercel/swr/pull/2761) #### New Contributors - [@​TopGrd](https://github.com/TopGrd) made their first contribution in [https://github.com/vercel/swr/pull/2756](https://github.com/vercel/swr/pull/2756) - [@​Andarist](https://github.com/Andarist) made their first contribution in [https://github.com/vercel/swr/pull/2761](https://github.com/vercel/swr/pull/2761) **Full Changelog**: vercel/swr@v2.2.1...v2.2.2 ### [`v2.2.1`](https://github.com/vercel/swr/releases/tag/v2.2.1) [Compare Source](https://github.com/vercel/swr/compare/v2.2.0...v2.2.1) #### What's Changed - Add use client directive for client components exports by [@​huozhi](https://github.com/huozhi) in [https://github.com/vercel/swr/pull/2696](https://github.com/vercel/swr/pull/2696) - remove the 'use client' directive and add client-only to useSWR entry. by [@​promer94](https://github.com/promer94) in [https://github.com/vercel/swr/pull/2705](https://github.com/vercel/swr/pull/2705) - fix: should serialize subscription fn key by [@​promer94](https://github.com/promer94) in [https://github.com/vercel/swr/pull/2711](https://github.com/vercel/swr/pull/2711) - build(deps-dev): bump word-wrap from 1.2.3 to 1.2.4 by [@​dependabot](https://github.com/dependabot) in [https://github.com/vercel/swr/pull/2720](https://github.com/vercel/swr/pull/2720) - fix: only make data and error update as a non-blocking transition by [@​promer94](https://github.com/promer94) in [https://github.com/vercel/swr/pull/2691](https://github.com/vercel/swr/pull/2691) - build: generate d.mts for for .mjs, so typescript could resolve types correctly by [@​promer94](https://github.com/promer94) in [https://github.com/vercel/swr/pull/2695](https://github.com/vercel/swr/pull/2695) - fix(infinite): Fix the ability to use preload along with useSWRInfinite by [@​agadzik](https://github.com/agadzik) in [https://github.com/vercel/swr/pull/2723](https://github.com/vercel/swr/pull/2723) - fix: Ensure that using preload with useSWRInfinite returns back an array of data by [@​agadzik](https://github.com/agadzik) in [https://github.com/vercel/swr/pull/2726](https://github.com/vercel/swr/pull/2726) - fix: preload request should be consumed within `revalidate` to support `parallel` option by [@​promer94](https://github.com/promer94) in [https://github.com/vercel/swr/pull/2727](https://github.com/vercel/swr/pull/2727) - Fix the issue that useSWR revalidation isn't triggered if the useSWR call happens after mutation by [@​Ponyets](https://github.com/Ponyets) in [https://github.com/vercel/swr/pull/2731](https://github.com/vercel/swr/pull/2731) - fix(mutate): fix types of mutate/trigger; make mutate/trigger always return the result of fetcher by [@​Ponyets](https://github.com/Ponyets) in [https://github.com/vercel/swr/pull/2708](https://github.com/vercel/swr/pull/2708) - build(deps-dev): bump tough-cookie from 4.1.2 to 4.1.3 by [@​dependabot](https://github.com/dependabot) in [https://github.com/vercel/swr/pull/2735](https://github.com/vercel/swr/pull/2735) - build(deps-dev): bump json5 from 2.2.1 to 2.2.3 by [@​dependabot](https://github.com/dependabot) in [https://github.com/vercel/swr/pull/2736](https://github.com/vercel/swr/pull/2736) - docs: use isLoading instead of !data by [@​pawfa](https://github.com/pawfa) in [https://github.com/vercel/swr/pull/2734](https://github.com/vercel/swr/pull/2734) #### New Contributors - [@​agadzik](https://github.com/agadzik) made their first contribution in [https://github.com/vercel/swr/pull/2723](https://github.com/vercel/swr/pull/2723) - [@​Ponyets](https://github.com/Ponyets) made their first contribution in [https://github.com/vercel/swr/pull/2731](https://github.com/vercel/swr/pull/2731) - [@​pawfa](https://github.com/pawfa) made their first contribution in [https://github.com/vercel/swr/pull/2734](https://github.com/vercel/swr/pull/2734) **Full Changelog**: vercel/swr@v2.2.0...v2.2.1 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "before 8am on monday" in timezone America/Los_Angeles, 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. 🔕 **Ignore**: Close this PR and you won't be reminded about this update 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/tailscale-dev/vscode-tailscale). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi40MC4zIiwidXBkYXRlZEluVmVyIjoiMzYuNjQuOCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
E.g.:
In this case, the res would be ignored while req would not be triggered a revalidation.