Skip to content

Releases: refinedev/refine

@refinedev/ui-tests@1.14.9

05 Jul 19:08
Compare
Choose a tag to compare

Patch Changes

@refinedev/supabase@5.9.2

05 Jul 19:08
Compare
Choose a tag to compare

Patch Changes

@refinedev/nestjs-query@1.3.2

05 Jul 19:08
Compare
Choose a tag to compare

Patch Changes

@refinedev/mui@5.19.0

05 Jul 19:31
Compare
Choose a tag to compare

Minor Changes

Patch Changes

  • #6021 55cd0662b1e3ff8f8410eba812e80130afe75d14 Thanks @JayBhensdadia! - fix: ensure Sider component handles various resource name formats correctly

    Updated Sider component to correctly handle lowercase and camelcased resource names, enhancing usability and functionality.

    Fixes #6004

  • #6064 b516c18b828ba8823561d0fefc4afe02b45ce332 Thanks @aliemir! - fix(auto-save-indicator): replace reserved key prop with translationKey in components

    <AutoSaveIndicator /> components from UI libraries have been using a <Message /> component internally that uses a key prop. Since key is a reserved prop in React, it was causing a warning in the console. This change replaces the key prop with translationKey to avoid the warning.

    Resolves #6067

@refinedev/mantine@2.32.2

05 Jul 19:08
Compare
Choose a tag to compare

Patch Changes

  • #6021 55cd0662b1e3ff8f8410eba812e80130afe75d14 Thanks @JayBhensdadia! - fix: ensure Sider component handles various resource name formats correctly

    Updated Sider component to correctly handle lowercase and camelcased resource names, enhancing usability and functionality.

    Fixes #6004

  • #6064 b516c18b828ba8823561d0fefc4afe02b45ce332 Thanks @aliemir! - fix(auto-save-indicator): replace reserved key prop with translationKey in components

    <AutoSaveIndicator /> components from UI libraries have been using a <Message /> component internally that uses a key prop. Since key is a reserved prop in React, it was causing a warning in the console. This change replaces the key prop with translationKey to avoid the warning.

    Resolves #6067

@refinedev/inferencer@4.6.6

05 Jul 19:08
Compare
Choose a tag to compare

Patch Changes

@refinedev/hasura@6.6.6

05 Jul 19:08
Compare
Choose a tag to compare

Patch Changes

  • #6052 50d21076928ca738ec54cc5bcd17fad2683653dd Thanks @aliemir! - fix(hasura): broken lodash import in bundle

    ESM bundle of @refinedev/hasura was broken due to incorrect lodash import. Import has been replaced with subdirectory import to get handled properly in the bundling process.

    Fixes #6044

@refinedev/devtools@1.2.6

05 Jul 19:29
Compare
Choose a tag to compare

Patch Changes

@refinedev/devtools-ui@1.1.27

05 Jul 19:30
Compare
Choose a tag to compare

Patch Changes

  • #6098 8bc2c1c6790d1e098ce0d98e01f608e3310f7b4a Thanks @aliemir! - refactor(devtools): updated flow for login callbacks

    Previously, when the login flow had an error, the Devtools UI was displaying it in the secondary window, which was not user-friendly and lead to multiple clients to connect unnecessarily. This change updates the flow to display the error message in the main Devtools window.

  • #6098 8bc2c1c6790d1e098ce0d98e01f608e3310f7b4a Thanks @aliemir! - chore(devtools-ui): fix slider image loader

    In the welcome page of the Devtools UI, feature slider was re-mounting every image at transition, causing polluted network tab in the browser even though the images were cached and loaded already. This change fixes the issue by loading the images only once and reusing them on transition.

  • #6098 8bc2c1c6790d1e098ce0d98e01f608e3310f7b4a Thanks @aliemir! - refactor(devtools): updated auth flow

    Previously, a proxy in the Devtools Server was used as an auth server to handle sign-ins in the localhost (Devtools Server). This change updates the flow and moves the authentication flow to https://auth.refine.dev to handle sign-ins and sign-outs. Now the Devtools Server is only responsible for the connection between the auth server and the user interface while also managing the user's session.

  • Updated dependencies [8bc2c1c6790d1e098ce0d98e01f608e3310f7b4a, 8bc2c1c6790d1e098ce0d98e01f608e3310f7b4a]:

    • @refinedev/devtools-shared@1.1.11

@refinedev/devtools-shared@1.1.11

05 Jul 19:30
Compare
Choose a tag to compare

Patch Changes

  • #6098 8bc2c1c6790d1e098ce0d98e01f608e3310f7b4a Thanks @aliemir! - chore(devtools-shared): add login callback events

    Added new events to handle login errors on the main devtools window rather than external windows. This change is accompanied by new event handlers in the @refinedev/devtools-ui and @refinedev/devtools-server packages.

  • #6098 8bc2c1c6790d1e098ce0d98e01f608e3310f7b4a Thanks @aliemir! - chore(devtools): update devtools url fallback values

    Updated fallback values for the Devtools URL and use single fallback value until its provided by the @refinedev/devtools-server when client is connected.