-
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
types: fix some mutation type issue #2421
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 b4df51d:
|
[![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.0.3` -> `2.0.4`](https://renovatebot.com/diffs/npm/swr/2.0.3/2.0.4) | [![age](https://badges.renovateapi.com/packages/npm/swr/2.0.4/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/swr/2.0.4/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/swr/2.0.4/compatibility-slim/2.0.3)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/swr/2.0.4/confidence-slim/2.0.3)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>vercel/swr</summary> ### [`v2.0.4`](https://github.com/vercel/swr/releases/tag/v2.0.4) [Compare Source](https://github.com/vercel/swr/compare/v2.0.3...v2.0.4) #### Patches - build: fix release job condition by [@​huozhi](https://github.com/huozhi) in [https://github.com/vercel/swr/pull/2392](https://github.com/vercel/swr/pull/2392) - types: fix some mutation type issue by [@​promer94](https://github.com/promer94) in [https://github.com/vercel/swr/pull/2421](https://github.com/vercel/swr/pull/2421) - fix: Error retry should be handled by global revalidator instead of local revalidation function by [@​promer94](https://github.com/promer94) in [https://github.com/vercel/swr/pull/2415](https://github.com/vercel/swr/pull/2415) - fix: ensure initCache setter function stays within bounds of subscriptions by [@​lfbergee](https://github.com/lfbergee) in [https://github.com/vercel/swr/pull/2411](https://github.com/vercel/swr/pull/2411) #### Misc - test: stream ssr e2e by [@​promer94](https://github.com/promer94) in [https://github.com/vercel/swr/pull/2395](https://github.com/vercel/swr/pull/2395) - test: fix an act warning by [@​koba04](https://github.com/koba04) in [https://github.com/vercel/swr/pull/2403](https://github.com/vercel/swr/pull/2403) #### New Contributors - [@​lfbergee](https://github.com/lfbergee) made their first contribution in [https://github.com/vercel/swr/pull/2411](https://github.com/vercel/swr/pull/2411) **Full Changelog**: vercel/swr@v2.0.3...v2.0.4 </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://app.renovatebot.com/dashboard#github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4xNTkuMCIsInVwZGF0ZWRJblZlciI6IjM0LjE1OS4wIn0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Hi, This PR broke my build: Previously export function useCreateCreditCard(
config?: SWRMutationConfiguration<boolean, any>
) {
const client = useApi();
const fetcher: MutationFetcher<boolean> = async () => {
const response = await client.createCreditCard();
return !!response;
};
return useSWRMutation(['api', 'credit-card'], fetcher, config);
} I can't call Now I have to do this: export function useCreateCreditCard(
config?: SWRMutationConfiguration<boolean, any, never>
) {
const client = useApi();
const fetcher: MutationFetcher<boolean, never> = async () => {
const response = await client.createCreditCard();
return !!response;
};
return useSWRMutation(['api', 'credit-card'], fetcher, config);
} Did I used it wrong before? |
For most time you don't need export function useCreateCreditCard(
config?: SWRMutationConfiguration<boolean, any, never>
) {
const client = useApi();
const fetcher = async () => {
const response = await client.createCreditCard();
return !!response;
};
return useSWRMutation(['api', 'credit-card'], fetcher, config);
} |
[![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.0.3` -> `2.1.0`](https://renovatebot.com/diffs/npm/swr/2.0.3/2.1.0) | [![age](https://badges.renovateapi.com/packages/npm/swr/2.1.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/swr/2.1.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/swr/2.1.0/compatibility-slim/2.0.3)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/swr/2.1.0/confidence-slim/2.0.3)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>vercel/swr</summary> ### [`v2.1.0`](https://github.com/vercel/swr/releases/tag/v2.1.0) [Compare Source](https://github.com/vercel/swr/compare/v2.0.4...v2.1.0) #### Feature - Subscription mode by [@​huozhi](https://github.com/huozhi) in [https://github.com/vercel/swr/pull/1263](https://github.com/vercel/swr/pull/1263) - parallel option for useSWRInfinite by [@​koba04](https://github.com/koba04) in [https://github.com/vercel/swr/pull/2404](https://github.com/vercel/swr/pull/2404) Checkout [subscription docs](https://swr.vercel.app/docs/subscription) and [useSWRInfinite parallel fetching docs](https://swr.vercel.app/docs/pagination#parallel-fetching-mode) for more details #### Patches - fix: use the latest config in useSWRMutation by [@​koba04](https://github.com/koba04) in [https://github.com/vercel/swr/pull/2468](https://github.com/vercel/swr/pull/2468) - Fix: type support for suspense and fallbackData([#​2396](https://github.com/vercel/swr/issues/2396)) by [@​taro-28](https://github.com/taro-28) in [https://github.com/vercel/swr/pull/2452](https://github.com/vercel/swr/pull/2452) - Error should be reset when new data comes by [@​huozhi](https://github.com/huozhi) in [https://github.com/vercel/swr/pull/2472](https://github.com/vercel/swr/pull/2472) - fix: avoid creating new snapshot if cache is not updated at client during streaming by [@​promer94](https://github.com/promer94) in [https://github.com/vercel/swr/pull/2475](https://github.com/vercel/swr/pull/2475) - refactor: initialize the cache only on first access by [@​promer94](https://github.com/promer94) in [https://github.com/vercel/swr/pull/2479](https://github.com/vercel/swr/pull/2479) #### Misc - ci: fix publish workflow by [@​promer94](https://github.com/promer94) in [https://github.com/vercel/swr/pull/2453](https://github.com/vercel/swr/pull/2453) - ci: faster e2e test by [@​promer94](https://github.com/promer94) in [https://github.com/vercel/swr/pull/2428](https://github.com/vercel/swr/pull/2428) - test: add a test for keepPreviousData without changing key by [@​koba04](https://github.com/koba04) in [https://github.com/vercel/swr/pull/2470](https://github.com/vercel/swr/pull/2470) - Always assume subscriptions will return sub count from current key by [@​huozhi](https://github.com/huozhi) in [https://github.com/vercel/swr/pull/2460](https://github.com/vercel/swr/pull/2460) - test: Fix flaky e2e test by [@​promer94](https://github.com/promer94) in [https://github.com/vercel/swr/pull/2476](https://github.com/vercel/swr/pull/2476) - chore: Add subscription example by [@​huozhi](https://github.com/huozhi) in [https://github.com/vercel/swr/pull/2480](https://github.com/vercel/swr/pull/2480) #### New Contributors - [@​taro-28](https://github.com/taro-28) made their first contribution in [https://github.com/vercel/swr/pull/2452](https://github.com/vercel/swr/pull/2452) **Full Changelog**: vercel/swr@v2.0.4...v2.1.0 ### [`v2.0.4`](https://github.com/vercel/swr/releases/tag/v2.0.4) [Compare Source](https://github.com/vercel/swr/compare/v2.0.3...v2.0.4) #### Patches - build: fix release job condition by [@​huozhi](https://github.com/huozhi) in [https://github.com/vercel/swr/pull/2392](https://github.com/vercel/swr/pull/2392) - types: fix some mutation type issue by [@​promer94](https://github.com/promer94) in [https://github.com/vercel/swr/pull/2421](https://github.com/vercel/swr/pull/2421) - fix: Error retry should be handled by global revalidator instead of local revalidation function by [@​promer94](https://github.com/promer94) in [https://github.com/vercel/swr/pull/2415](https://github.com/vercel/swr/pull/2415) - fix: ensure initCache setter function stays within bounds of subscriptions by [@​lfbergee](https://github.com/lfbergee) in [https://github.com/vercel/swr/pull/2411](https://github.com/vercel/swr/pull/2411) #### Misc - test: stream ssr e2e by [@​promer94](https://github.com/promer94) in [https://github.com/vercel/swr/pull/2395](https://github.com/vercel/swr/pull/2395) - test: fix an act warning by [@​koba04](https://github.com/koba04) in [https://github.com/vercel/swr/pull/2403](https://github.com/vercel/swr/pull/2403) #### New Contributors - [@​lfbergee](https://github.com/lfbergee) made their first contribution in [https://github.com/vercel/swr/pull/2411](https://github.com/vercel/swr/pull/2411) **Full Changelog**: vercel/swr@v2.0.3...v2.0.4 </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. --- - [ ] <!-- 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://app.renovatebot.com/dashboard#github/kula-app/OnLaunch). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS44LjMiLCJ1cGRhdGVkSW5WZXIiOiIzNS44LjMifQ==-->
Trigger function should enforce arg type if arg type decleared in fetcher
close #2418
Previously
Now
Swr mutate type should work with trigger
close #2406 #2280
Previously
Now
Shoud be able to configure the type of optimisticData and populateCache
Previous
Now