-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'releases/august' into feat/devtools-port-change-ability
- Loading branch information
Showing
186 changed files
with
4,706 additions
and
1,581 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
"@refinedev/mui": patch | ||
--- | ||
|
||
fix(mui): <DataGrid /> horizontal scroll is broken in <ThemedLayoutV2 /> | ||
|
||
Due to the changes in CSS rendering in latest Google Chrome updates, `<DataGrid />` components are not properly sized when used inside `<ThemedLayoutV2 />` component. The `overflow: clip` property in the layout content is causing either miscalculations on the data grid width or causing an overflow on the container and overlapping with the sidebar. | ||
|
||
This change replaces the `overflow: clip` property with `min-height` and `min-width` properties to ensure the layout content is properly rendered and responsive to the content inside it. | ||
|
||
[Resolves #6077](https://github.com/refinedev/refine/issues/6077) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@refinedev/core": patch | ||
--- | ||
|
||
AuthPage in Next.js generates code with i18n but the folder hooks is not created. imported useTranslate from @hooks to fix the issue |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@refinedev/cli": patch | ||
--- | ||
|
||
fix: `yarn refine update` removes semver range specifiers(`^`, `~`) from `package.json`. #6134 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
"@refinedev/supabase": patch | ||
--- | ||
|
||
feat: added support for between filter in supabase dataProvider. Maps values to gte & lte. | ||
|
||
[Feat #6119](https://github.com/refinedev/refine/issues/6119) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
"@refinedev/nestjsx-crud": patch | ||
--- | ||
|
||
fix: update empty filter checks | ||
|
||
Updated the conditions to properly check empty filters | ||
|
||
[Fixes #6146](https://github.com/refinedev/refine/issues/6146) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
"@refinedev/react-hook-form": minor | ||
"@refinedev/inferencer": minor | ||
"@refinedev/chakra-ui": minor | ||
"@refinedev/codemod": minor | ||
"@refinedev/mui": minor | ||
--- | ||
|
||
feat(react-hook-form): update version constraint from `^7.30.0` to `^7.43.5` | ||
|
||
Update react-hook-form version to address runtime subscribe error | ||
|
||
[Fixes #6139](https://github.com/refinedev/refine/issues/6139) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
"@refinedev/devtools-ui": patch | ||
--- | ||
|
||
feat: Onboarding page of the DevTools improved. | ||
|
||
- Loading animation added. | ||
- Client-side form validation added. | ||
- Error handling improved. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
"@refinedev/chakra-ui": patch | ||
"@refinedev/mantine": patch | ||
"@refinedev/antd": patch | ||
"@refinedev/mui": patch | ||
--- | ||
|
||
fix(auth-page): fix wrong translation keys in `type="register"` and `type="forgotPassword"` | ||
|
||
In `type="forgotPassword"`: | ||
|
||
- `"pages.register.buttons.haveAccount"` is replaced with `"pages.forgotPassword.buttons.haveAccount"` | ||
- `"pages.login.signin"` is replaced with `"pages.forgotPassword.signin"` | ||
|
||
In `type="register"`: | ||
|
||
- `"pages.login.divider"` is replaced with `"pages.register.divider"` | ||
- `"pages.login.buttons.haveAccount"` is replaced with `"pages.register.buttons.haveAccount"` | ||
- `"pages.login.signin"` is replaced with `"pages.register.signin"` | ||
|
||
Wrong keys are kept as fallbacks in case the new keys are not found in the translation file. If you are using those keys in your project, make sure to update them accordingly. Fallback keys will be removed in future releases. | ||
|
||
[Resolves #5816](https://github.com/refinedev/refine/issues/5816) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
"@refinedev/cli": patch | ||
--- | ||
|
||
feat(cli): create base translation files for i18n provider in add provider command | ||
|
||
Currently `refine add provider i18n` command is only creating a demo i18n provider implementation but misses the translation files. This PR adds the base translation files for the i18n provider which is used by Refine internally in hooks, notifications and components. | ||
|
||
Now `locale/en.json` will be added with primarily used translation keys and values for the i18n provider. | ||
|
||
[Resolves #5918](https://github.com/refinedev/refine/issues/5918) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
"@refinedev/appwrite": major | ||
--- | ||
|
||
feat(package/appwrite): update `Appwrite` SDK to `v15` | ||
|
||
Updated `appwrite` SDK version to `v15` to match latest server version. Depending on your server version upgrading to this version should be safe but may require some changes in your codebase if you are using `appwrite` SDK directly. | ||
|
||
If you're using the `data-provider-appwrite` example as base or created your app using the `create-refine-app` CLI, your auth provider implementation may require a small change in the `login` method: | ||
|
||
```diff | ||
- await account.createEmailSession(email, password); | ||
+ await account.createEmailPasswordSession(email, password); | ||
``` | ||
|
||
[Resolves #6090](https://github.com/refinedev/refine/issues/6090) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
"@refinedev/core": minor | ||
--- | ||
|
||
fix: update debounce behavior on `onSearch` in `useSelect` | ||
|
||
Now debounce behavior is working correctly on `onSearch` in `useSelect` when using inside `Controller` of react-hook-form. | ||
|
||
Resolves [#6096](https://github.com/refinedev/refine/issues/6096) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
"@refinedev/chakra-ui": patch | ||
--- | ||
|
||
fix(auth-page): fix wrong translation key in `type="register"` | ||
|
||
Previously, sign in link in Register page was using wrong translation key "pages.register.buttons.noAccount". Now it is replaced with "pages.register.buttons.haveAccount". |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.