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 @pankod/refine-simple-rest to v3.39.0 #2398

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 18, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@pankod/refine-simple-rest (source) 3.22.1 -> 3.39.0 age adoption passing confidence

Release Notes

refinedev/refine (@​pankod/refine-simple-rest)

v3.39.0

Compare Source

Minor Changes

v3.38.0

Compare Source

Minor Changes

v3.37.4

Compare Source

Patch Changes

v3.37.3

Compare Source

Patch Changes

v3.37.2

Compare Source

Patch Changes

v3.37.1

Compare Source

Patch Changes

v3.37.0

Compare Source

Minor Changes
  • #​3062 6c2ed708a9a Thanks @​aliemir! - - Moved helpers to separate files and updated the exports to make it compatible with swizzle feature.
    • Added refine.config.js to configure the swizzle feature.
    • stringify helper is now exported from @pankod/refine-simple-rest package.
    • axios instance is now exported from @pankod/refine-simple-rest package to allow users to configure the data provider without adding axios dependency.

v3.36.0

Compare Source

Minor Changes
  • #​3062 6c2ed708a9a Thanks @​aliemir! - - Moved helpers to separate files and updated the exports to make it compatible with swizzle feature.
    • Added refine.config.js to configure the swizzle feature.
    • stringify helper is now exported from @pankod/refine-simple-rest package.
    • axios instance is now exported from @pankod/refine-simple-rest package to allow users to configure the data provider without adding axios dependency.

v3.35.2

Compare Source

Patch Changes

v3.35.1

Compare Source

Patch Changes

v3.35.0

Compare Source

Minor Changes
  • Only or was supported as a conditional filter. Now and and or can be used together and nested. 🚀

    {
      operator: "or",
      value: [
        {
          operator: "and",
          value: [
            {
              field: "name",
              operator: "eq",
              value: "John Doe",
            },
            {
              field: "age",
              operator: "eq",
              value: 30,
            },
          ],
        },
        {
          operator: "and",
          value: [
            {
              field: "name",
              operator: "eq",
              value: "JR Doe",
            },
            {
              field: "age",
              operator: "eq",
              value: 1,
            },
          ],
        },
      ],
    }
    
Patch Changes
  • Fixed using data in axios' delete function

v3.34.0

Compare Source

Minor Changes
  • #​2751 addff64c77 Thanks @​yildirayunlu! - Only or was supported as a conditional filter. Now and and or can be used together and nested. 🚀

    {
      operator: "or",
      value: [
        {
          operator: "and",
          value: [
            {
              field: "name",
              operator: "eq",
              value: "John Doe",
            },
            {
              field: "age",
              operator: "eq",
              value: 30,
            },
          ],
        },
        {
          operator: "and",
          value: [
            {
              field: "name",
              operator: "eq",
              value: "JR Doe",
            },
            {
              field: "age",
              operator: "eq",
              value: 1,
            },
          ],
        },
      ],
    }
    
Patch Changes

v3.33.0

Compare Source

Minor Changes
  • Updated dataProvider types with Required utility to mark getMany, createMany, updateMany and deleteMany as implemented.

  • Remove unimplemented createMany, updateMany and deleteMany functions.

v3.32.0

Compare Source

Minor Changes

v3.31.0

Compare Source

Minor Changes
  • Fixed payload data in delete on nestjsx data provider custom method.

v3.30.0

Compare Source

Minor Changes

v3.29.0

Compare Source

Minor Changes
  • Update type declaration generation with tsc instead of tsup for better navigation throughout projects source code.

v3.28.0

Compare Source

Minor Changes
  • #​2440 0150dcd070 Thanks @​aliemir! - Update type declaration generation with tsc instead of tsup for better navigation throughout projects source code.

v3.27.0

Compare Source

Minor Changes
  • All of the refine packages have dependencies on the @pankod/refine-core package. So far we have managed these dependencies with peerDependencies + dependencies but this causes issues like #​2183. (having more than one @​pankod/refine-core version in node_modules and creating different instances)

    Managing as peerDependencies + devDependencies seems like the best way for now to avoid such issues.

v3.26.0

Compare Source

Minor Changes
  • #​2217 b4aae00f77 Thanks @​omeraplak! - All of the refine packages have dependencies on the @pankod/refine-core package. So far we have managed these dependencies with peerDependencies + dependencies but this causes issues like #​2183. (having more than one @​pankod/refine-core version in node_modules and creating different instances)

    Managing as peerDependencies + devDependencies seems like the best way for now to avoid such issues.

v3.25.6

Compare Source

Patch Changes
  • Updated pagination parameters default values and added hasPagination property to getList method of the data providers.

    Implementation

    Updated the getList method accordingly to the changes in the useTable and useList of @pankod/refine-core. hasPagination is used to disable pagination (defaults to true)

    Use Cases

    For some resources, there might be no support for pagination or users might want to see all of the data without any pagination, prior to these changes this was not supported in refine data providers.

  • Updated dependencies []:

v3.25.5

Compare Source

Patch Changes
  • #​2050 635cfe9fdb Thanks @​ozkalai! - Updated pagination parameters default values and added hasPagination property to getList method of the data providers.

    Implementation

    Updated the getList method accordingly to the changes in the useTable and useList of @pankod/refine-core. hasPagination is used to disable pagination (defaults to true)

    Use Cases

    For some resources, there might be no support for pagination or users might want to see all of the data without any pagination, prior to these changes this was not supported in refine data providers.

  • Updated dependencies [ecde34a9b3, 635cfe9fdb]:

v3.25.4

Compare Source

Patch Changes
  • Updated axios version (0.21.4 to 0.26.1). In this version, the way of sending headers has changed as follows.

    // old v0.21.4
    axiosInstance.defaults.headers = { Authorization: `Bearer ${data.jwt}` };
    
    // new v0.26.1
    axiosInstance.defaults.headers.common["Authorization"] = `Bearer ${data.jwt}`;
    
  • Updated dependencies []:

v3.25.1

Compare Source

Patch Changes
  • #​1899 fbfea418a0 Thanks @​yildirayunlu! - Updated axios version (0.21.4 to 0.26.1). In this version, the way of sending headers has changed as follows.

    // old v0.21.4
    axiosInstance.defaults.headers = { Authorization: `Bearer ${data.jwt}` };
    
    // new v0.26.1
    axiosInstance.defaults.headers.common["Authorization"] = `Bearer ${data.jwt}`;
    
  • Updated dependencies [2ba2a96fd2]:

v3.25.0

Compare Source

What's Changed

v3.22.2

Compare Source

Patch Changes

Configuration

📅 Schedule: Branch creation - "every weekend" in timezone US/Eastern, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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 was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/pankod-refine-simple-rest-3.x branch 10 times, most recently from b057d6b to b27dd8c Compare September 23, 2024 20:31
@renovate renovate bot force-pushed the renovate/pankod-refine-simple-rest-3.x branch 6 times, most recently from d57277d to 1520360 Compare October 2, 2024 13:22
@renovate renovate bot force-pushed the renovate/pankod-refine-simple-rest-3.x branch 3 times, most recently from 5f349d4 to 45b214b Compare October 10, 2024 08:51
@renovate renovate bot force-pushed the renovate/pankod-refine-simple-rest-3.x branch 10 times, most recently from 8de94df to 8327150 Compare October 22, 2024 18:21
@renovate renovate bot force-pushed the renovate/pankod-refine-simple-rest-3.x branch 18 times, most recently from c2d1097 to 207a0c7 Compare November 24, 2024 00:49
@renovate renovate bot force-pushed the renovate/pankod-refine-simple-rest-3.x branch 8 times, most recently from 8e50462 to 37ca77c Compare December 9, 2024 13:26
@renovate renovate bot force-pushed the renovate/pankod-refine-simple-rest-3.x branch 2 times, most recently from 4814550 to 8271698 Compare December 10, 2024 15:32
@renovate renovate bot force-pushed the renovate/pankod-refine-simple-rest-3.x branch from 8271698 to 5607d4f Compare December 11, 2024 15:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants