github refinedev/refine @refinedev/supabase@5.3.0

Minor Changes

  • #4183 0c1d4944397 Thanks @yildirayunlu! - fix: update custom id column name on meta params

    BREAKING CHANGE: meta.idColumnName is used instead of meta.id when the primary key column name of your data table is different from id.

    useMany({
        resource: "posts",
        ids: [1, 2],
        meta: {
    -        id: "post_id",
    +        idColumnName: "post_id",
        },
    });
  • #4182 a58e9a0f1b0 Thanks @alicanerdurmaz! - feat: added refine.config.js to support swizzling. Now with swizzle support, you can easily customize supabase data provider for your needs.

    feat: tests added for utility functions.

    chore: utility functions have been moved to their own files.

Don't miss a new refine release

NewReleases is sending notifications on new releases.