Skip to content

Commit

Permalink
Merge branch 'releases/august' into feat/devtools-port-change-ability
Browse files Browse the repository at this point in the history
  • Loading branch information
aliemir authored Jul 30, 2024
2 parents dd75fb1 + d4809d6 commit d143f0e
Show file tree
Hide file tree
Showing 186 changed files with 4,706 additions and 1,581 deletions.
11 changes: 11 additions & 0 deletions .changeset/cold-olives-allow.md
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)
5 changes: 5 additions & 0 deletions .changeset/famous-donuts-bake.md
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
5 changes: 5 additions & 0 deletions .changeset/flat-boats-knock.md
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
7 changes: 7 additions & 0 deletions .changeset/hot-cougars-dream.md
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)
9 changes: 9 additions & 0 deletions .changeset/itchy-houses-provide.md
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)
13 changes: 13 additions & 0 deletions .changeset/metal-eagles-notice.md
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)
9 changes: 9 additions & 0 deletions .changeset/odd-rats-travel.md
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.
23 changes: 23 additions & 0 deletions .changeset/popular-bees-smash.md
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)
11 changes: 11 additions & 0 deletions .changeset/quick-rats-eat.md
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)
16 changes: 16 additions & 0 deletions .changeset/silver-crabs-relax.md
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)
9 changes: 9 additions & 0 deletions .changeset/thin-adults-complain.md
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)
7 changes: 7 additions & 0 deletions .changeset/warm-pots-relax.md
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".
6 changes: 6 additions & 0 deletions .syncpackrc
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@
"dependencyTypes": ["peer"],
"packages": ["**"],
"isIgnored": true
},
{
"dependencies": ["nock"],
"dependencyTypes": ["dev"],
"packages": ["@refinedev/appwrite"],
"isIgnored": true
}
]
}
2 changes: 1 addition & 1 deletion documentation/blog/2023-02-16-refine-pixels-3.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ The `auth.users` table is concerned with authentication in our app. It is create

<br />

So, in order to create the `pubic.users` table, go ahead and run this SQL script in the SQL Editor of your **Supabase** project dashboard:
So, in order to create the `public.users` table, go ahead and run this SQL script in the SQL Editor of your **Supabase** project dashboard:

```sql
-- Create a table for public users
Expand Down
1 change: 0 additions & 1 deletion documentation/blog/2023-10-02-refine-crm-overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ description: We'll explore the key features of our CRM app, the technologies we
slug: react-crm-with-refine
authors: necati
tags: [Refine, react]
is_featured: true
image: https://refine.ams3.cdn.digitaloceanspaces.com/blog/2023-10-02-refine-crm-overview/social.jpg
hide_table_of_contents: false
---
Expand Down
Loading

0 comments on commit d143f0e

Please sign in to comment.