Skip to content

chore: update dependency react-fetching-library to v1.7.6 - #348

Open
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/react-fetching-library-1.x
Open

chore: update dependency react-fetching-library to v1.7.6#348
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/react-fetching-library-1.x

Conversation

@renovate

@renovate renovate Bot commented Feb 12, 2020

Copy link
Copy Markdown
Contributor

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
react-fetching-library 1.5.14 -> 1.7.6 age adoption passing confidence

Release Notes

marcin-piela/react-fetching-library

v1.7.6

Compare Source

#​112

v1.7.5

Compare Source

  • Reset payload in useQuery when re-rendered with changed query -#​110

v1.7.4

Compare Source

Fixes

  • #​84 - handleReload from useQuery hook fired with old client instance after client update

v1.7.3

Compare Source

Fixes

  • #​84 - queries were fired with old client instance after client update

v1.7.2

Compare Source

v1.7.1

Compare Source

Improvements

  • Allow to easily use axios with all features - example

v1.7.0

Compare Source

Improvements

  • New way of extending base Action in TS - more info here

Breaking changes

  • Old way of extending Action type in TS is not working anymore

v1.6.4

Compare Source

Fix

  • TS types of client context

v1.6.2

Compare Source

Features

v1.6.1

Compare Source

Features

v1.6.0

Compare Source

Improvements

  • package size reduction (replace tsc with rollup and closure compiler)
  • allow to define response TS type directly in action definition
type UsersResponse = {
    data: User[];
    meta: any;
}

export const fetchUsersList: Action<UsersResponse> = {
  method: 'GET',
  endpoint: '/users',
};

and then you can skip type in component ie.

const { payload } = useQuery(fetchUsersList)

instead of

const { payload } = useQuery<UsersResponse>(fetchUsersList)

Breaking changes

  • MutateContext and QueryContext have been removed - it's easier to create own context in application
  • First parameter for Action type is now response type, to extend base Action (ie. to add some new params) you have to create type like that:
import { Action as BaseAction } from 'react-fetching-library';

export type Action<T = any, K = { skipAuth?: boolean; }> = BaseAction<T, K>;

v1.5.15

Compare Source

Fixes

  • remove random background color in documentation
  • add info about responseType property in Action type
  • remove default Content-Type for requests with body of type Blob, ArrayBuffer, FormData

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. View repository job log here.

@renovate renovate Bot added dependencies Dependencies update ready for review labels Feb 12, 2020
@renovate
renovate Bot force-pushed the renovate/react-fetching-library-1.x branch from 582ffd4 to ef14f86 Compare February 20, 2020 20:13
@renovate renovate Bot changed the title chore: update dependency react-fetching-library to v1.5.15 chore: update dependency react-fetching-library to v1.6.0 Feb 20, 2020
@renovate
renovate Bot force-pushed the renovate/react-fetching-library-1.x branch from ef14f86 to 5a389a3 Compare February 20, 2020 20:34
@renovate renovate Bot changed the title chore: update dependency react-fetching-library to v1.6.0 chore: update dependency react-fetching-library to v1.6.1 Feb 20, 2020
@renovate
renovate Bot force-pushed the renovate/react-fetching-library-1.x branch from 5a389a3 to 608ddaf Compare February 24, 2020 17:02
@renovate renovate Bot changed the title chore: update dependency react-fetching-library to v1.6.1 chore: update dependency react-fetching-library to v1.6.2 Feb 24, 2020
@renovate
renovate Bot force-pushed the renovate/react-fetching-library-1.x branch from 608ddaf to 92c4e94 Compare February 24, 2020 18:32
@renovate renovate Bot changed the title chore: update dependency react-fetching-library to v1.6.2 chore: update dependency react-fetching-library to v1.6.3 Feb 24, 2020
@renovate
renovate Bot force-pushed the renovate/react-fetching-library-1.x branch from 92c4e94 to 5a6cf28 Compare February 24, 2020 18:38
@renovate renovate Bot changed the title chore: update dependency react-fetching-library to v1.6.3 chore: update dependency react-fetching-library to v1.6.2 Feb 24, 2020
@renovate
renovate Bot force-pushed the renovate/react-fetching-library-1.x branch from 5a6cf28 to 069376b Compare February 24, 2020 18:40
@renovate renovate Bot changed the title chore: update dependency react-fetching-library to v1.6.2 chore: update dependency react-fetching-library to v1.6.4 Feb 24, 2020
@renovate renovate Bot changed the title chore: update dependency react-fetching-library to v1.6.4 chore: update dependency react-fetching-library to v1.7.0 Feb 25, 2020
@renovate
renovate Bot force-pushed the renovate/react-fetching-library-1.x branch from 069376b to 9b94e16 Compare February 25, 2020 17:06
@renovate renovate Bot changed the title chore: update dependency react-fetching-library to v1.7.0 Update dependency react-fetching-library to v1.7.0 Mar 9, 2020
@renovate renovate Bot changed the title Update dependency react-fetching-library to v1.7.0 chore: update dependency react-fetching-library to v1.7.0 Mar 13, 2020
@renovate
renovate Bot force-pushed the renovate/react-fetching-library-1.x branch from 9b94e16 to 220eb04 Compare March 13, 2020 15:37
@renovate
renovate Bot force-pushed the renovate/react-fetching-library-1.x branch from 220eb04 to 52d73cb Compare March 23, 2020 20:02
@renovate renovate Bot changed the title chore: update dependency react-fetching-library to v1.7.0 chore: update dependency react-fetching-library to v1.7.1 Mar 23, 2020
@renovate
renovate Bot force-pushed the renovate/react-fetching-library-1.x branch from 52d73cb to ed86b15 Compare March 24, 2020 12:26
@renovate renovate Bot changed the title chore: update dependency react-fetching-library to v1.7.1 chore: update dependency react-fetching-library to v1.7.2 Mar 24, 2020
@renovate
renovate Bot force-pushed the renovate/react-fetching-library-1.x branch from ed86b15 to 9d84ed4 Compare March 26, 2020 10:45
@renovate renovate Bot changed the title chore: update dependency react-fetching-library to v1.7.2 chore: update dependency react-fetching-library to v1.7.3 Mar 26, 2020
@renovate
renovate Bot force-pushed the renovate/react-fetching-library-1.x branch from 9d84ed4 to 8f935fe Compare March 26, 2020 11:48
@renovate renovate Bot changed the title chore: update dependency react-fetching-library to v1.7.3 chore: update dependency react-fetching-library to v1.7.4 Mar 26, 2020
@oshimayoan

Copy link
Copy Markdown
Contributor

Could you help me with this @ikusa?

@ikusa

ikusa commented Apr 14, 2020

Copy link
Copy Markdown
Contributor

Ok, working on these rn

@oshimayoan
oshimayoan requested a review from ikusa April 16, 2020 03:03
@oshimayoan
oshimayoan removed the request for review from ikusa April 16, 2020 03:03
@renovate
renovate Bot force-pushed the renovate/react-fetching-library-1.x branch from 8f935fe to 8eac5f7 Compare January 8, 2021 12:39
@renovate renovate Bot changed the title chore: update dependency react-fetching-library to v1.7.4 chore: update dependency react-fetching-library to v1.7.5 Jan 8, 2021
@renovate
renovate Bot force-pushed the renovate/react-fetching-library-1.x branch from 8eac5f7 to a6094d0 Compare April 26, 2021 13:49
@renovate renovate Bot changed the title chore: update dependency react-fetching-library to v1.7.5 chore: update dependency react-fetching-library to v1.7.6 Apr 26, 2021
@renovate

renovate Bot commented Mar 24, 2023

Copy link
Copy Markdown
Contributor Author

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants