Skip to content

Releases: refinedev/refine

[email protected]

29 Nov 10:20
a94844e
Compare
Choose a tag to compare

Patch Changes

@refinedev/[email protected]

29 Nov 10:21
a94844e
Compare
Choose a tag to compare

@refinedev/[email protected]

29 Nov 10:21
a94844e
Compare
Choose a tag to compare

Patch Changes

@refinedev/[email protected]

29 Nov 10:21
a94844e
Compare
Choose a tag to compare

Patch Changes

@refinedev/[email protected]

29 Nov 10:20
a94844e
Compare
Choose a tag to compare

Patch Changes

@refinedev/[email protected]

07 Nov 13:28
5a9267f
Compare
Choose a tag to compare

Patch Changes

@refinedev/[email protected]

15 Oct 06:51
3740bf6
Compare
Choose a tag to compare

Patch Changes

@refinedev/[email protected]

15 Oct 06:51
3740bf6
Compare
Choose a tag to compare

Patch Changes

  • #6320 5c0f3d83cb424a82431c2f7ae183a94f3e59c39b Thanks @mehrabmp! - feat: add between filter operator

    Add between operator support to CrudFilters

    import { useTable } from "@refinedev/core";
    
    useTable({
      filters: {
        initial: [
          {
            field: "createdAt",
            operator: "between",
            value: [new Date().toISOString(), new Date().toISOString()],
          },
        ],
      },
    });

    Resolves #6334

@refinedev/[email protected]

15 Oct 06:51
3740bf6
Compare
Choose a tag to compare

Patch Changes

@refinedev/[email protected]

15 Oct 06:51
3740bf6
Compare
Choose a tag to compare

Major Changes

  • #6336 58e90f26248ed3d1bc92ae748f03a2cbe71721c2 Thanks @aliemir! - feat: rewrite GraphQL data provider.

    We've modernized GraphQL dataprovider to make it more flexible and strictly coupled into a specific API schema.
    You can utilize option parameter to change the behaviour of the data provider. You can also do it individually for a single action.
    We've removed gql-query-builder and graphql-request dependencies and now using @urql/core as a GraphQL client.
    This means now it's required to pass either gqlQuery or gqlMutation to the hooks, meta.fields usage is removed.
    graphql-tag package is also removed since @urql/core already has gql export to write queries & mutations.
    We are no more re-exporting other packages, just our data provider, live provider and defaultOptions.

    See the updated documentation for more details: https://refine.dev/docs/data/packages/graphql/

    Resolves #5942
    Resolves #5943