Skip to content

release: May 2025 #6837

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 22 commits into from
Jun 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
8685734
Added missing dependency dayjs (#6765)
SumitBando May 2, 2025
16d9fa1
fix(chakra-ui): add meta to ShowButton Props (#6740)
arndom May 2, 2025
5dd509f
ci(changesets): refine registry version packages (#6769)
refine-bot May 5, 2025
2936688
fix(mui): add support for unique id to `transformCrudFiltersToFilterM…
arndom May 5, 2025
7253bf8
ci(changesets): refine registry version packages (#6771)
refine-bot May 5, 2025
d630c33
Merge branch 'main' into next
alicanerdurmaz May 6, 2025
2143df6
Merge branch 'main' into next
BatuhanW May 7, 2025
66ea526
fix(hasura): live provider uses hasura-default as default naming conv…
thanaParis May 12, 2025
cce3f5b
fix(hasura): meta.gqlVariables passed to createMany Hasura data provi…
thanaParis May 12, 2025
45e47b1
fix(hasura): meta.gqlVariables passed to updateMany Hasura data provi…
thanaParis May 12, 2025
272ac4f
fix(hasura): meta.gqlVariables passed to custom Hasura data provider …
thanaParis May 12, 2025
82ea315
fix(hasura): meta.gqlVariables passed to create Hasura data provider …
thanaParis May 12, 2025
27f626c
fix(hasura): meta.gqlVariables passed to update Hasura data provider …
thanaParis May 12, 2025
12977e9
fix(hasura): `meta.gqlVariables` passed to `deleteOne` and `deleteMan…
alicanerdurmaz May 12, 2025
163677d
ci(changesets): refine registry version packages (#6794)
refine-bot May 22, 2025
5fa4629
chore: merge `main` to `next` (#6821)
alicanerdurmaz Jun 2, 2025
8a17ea5
fix: get always latest `columns` from `table ref` when `columnFilters…
alicanerdurmaz Jun 2, 2025
a6ff3d3
chore: update react-hook-form to 7.57.0 (#6824)
alicanerdurmaz Jun 2, 2025
1977012
ci(changesets): refine registry version packages (#6825)
refine-bot Jun 4, 2025
36857a0
Merge branch 'main' into next
alicanerdurmaz Jun 4, 2025
9a3645b
Merge branch 'main' into next
aliemir Jun 4, 2025
6181ccb
Merge branch 'main' into next
alicanerdurmaz Jun 11, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions _changeset/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changesets

Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
with multi-package repos, or single-package repos to help you version and publish your code. You can
find the full documentation for it [in our repository](https://github.com/changesets/changesets)

We have a quick list of common questions to get you started engaging with this project in
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)
14 changes: 14 additions & 0 deletions _changeset/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"$schema": "https://unpkg.com/@changesets/config@2.0.0/schema.json",
"changelog": ["./format.js", { "repo": "refinedev/refine" }],
"commit": false,
"fixed": [],
"linked": [],
"access": "public",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": ["!@refinedev/*", "!create-refine-app"],
"___experimentalUnsafeOptions_WILL_CHANGE_IN_PATCH": {
"onlyUpdatePeerDependentsWhenOutOfRange": true
}
}
5 changes: 5 additions & 0 deletions _changeset/curvy-pumpkins-hammer.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@refinedev/hasura": patch
---

meta.gqlVariables now passed to createMany query for Hasura data provider
5 changes: 5 additions & 0 deletions _changeset/five-clouds-stare.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@refinedev/react-table": patch
---

fix: get always latest `columns` from `table ref` when `columnFilters` or `filters` are changed.
40 changes: 40 additions & 0 deletions _changeset/format.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
const clgh = require("@changesets/changelog-github");

const changelogFunctions = {
getDependencyReleaseLine: clgh.default.getDependencyReleaseLine,
getReleaseLine: async (changeset, tag, options) => {
const defaultChangeset = await clgh.default.getReleaseLine(
changeset,
tag,
options,
);

const isValid = ["community", "enterprise"].includes(
process.env.REFINE_RELEASE_TYPE,
);

if (!isValid) {
console.error(
"❌ REFINE_RELEASE_TYPE must be either community or enterprise",
);

process.exit(1);
}

let title = "";

if (process.env.REFINE_RELEASE_TYPE === "community") {
title = "\n\n📢 **Refine Community Release** 📢";
}

if (process.env.REFINE_RELEASE_TYPE === "enterprise") {
title = "\n\n⚡ **Refine Enterprise Release** ⚡";
}

const result = title + defaultChangeset;

return result;
},
};

exports.default = changelogFunctions;
5 changes: 5 additions & 0 deletions _changeset/friendly-feet-marry.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@refinedev/hasura": patch
---

meta.gqlVariables now passed to deleteOne query for Hasura data provider
5 changes: 5 additions & 0 deletions _changeset/neat-tips-provide.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@refinedev/hasura": patch
---

meta.gqlVariables now passed to update query for Hasura data provider
7 changes: 7 additions & 0 deletions _changeset/proud-socks-yawn.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
"@refinedev/chakra-ui": patch
---

- Ensure `meta` prop is passed to the `ShowButton` component of Charka-UI

[Resolves #6707](https://github.com/refinedev/refine/issues/6707)
7 changes: 7 additions & 0 deletions _changeset/rare-teachers-drive.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
"@refinedev/mui": patch
---

Add support for unique id to `transformCrudFiltersToFilterModel` when filters have the same field and operator.

[Resolves #6710](https://github.com/refinedev/refine/issues/6710)
5 changes: 5 additions & 0 deletions _changeset/serious-wolves-rush.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@refinedev/hasura": patch
---

Hasura live provider now uses hasura-default as default naming convention
5 changes: 5 additions & 0 deletions _changeset/six-cooks-check.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@refinedev/hasura": patch
---

meta.gqlVariables now passed to create query for Hasura data provider
5 changes: 5 additions & 0 deletions _changeset/sweet-games-juggle.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@refinedev/hasura": patch
---

meta.gqlVariables now passed to deleteMany query for Hasura data provider
10 changes: 10 additions & 0 deletions _changeset/sweet-oranges-greet.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
"@refinedev/react-hook-form": patch
"@refinedev/devtools-ui": patch
"@refinedev/inferencer": patch
"@refinedev/chakra-ui": patch
"@refinedev/mui": patch
---

chore: update `react-hook-form` to `7.57.0` to support new features like [`subscribe`](https://react-hook-form.com/docs/useform/subscribe).
for more information, see [React Hook Form release notes](https://github.com/react-hook-form/react-hook-form/releases).
5 changes: 5 additions & 0 deletions _changeset/violet-wasps-study.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@refinedev/hasura": patch
---

meta.gqlVariables now passed to updateMany query for Hasura data provider
5 changes: 5 additions & 0 deletions _changeset/witty-mirrors-sparkle.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@refinedev/hasura": patch
---

meta.gqlVariables now passed to custom query for Hasura data provider
2 changes: 1 addition & 1 deletion documentation/blog/authors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ civan:
url: https://www.linkedin.com/in/civan-özseyhan-1ab48814/
image_url: https://media.licdn.com/dms/image/v2/C4D03AQE-_wQd8hyrZQ/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1655223925589?e=1754524800&v=beta&t=0YVbcPUo20AUfRxVD5F_sWw7GkOBH49kIjxaMoyfrmI
github: https://github.com/mlhekincifeat

ege:
name: Ege Aytın
title: Software Developer
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default function ServerSideValidationChakraUi() {
"@chakra-ui/react": "^2.5.1",
"react-dom": "^18.0.0",
"react-router": "^7.0.2",
"react-hook-form": "^7.43.5",
"react-hook-form": "^7.57.0",
}}
startRoute="/products/create"
files={{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export default function ServerSideValidationMui() {
"@mui/utils": "^7.1.0",
"@mui/x-data-grid": "7.23.5",
"react-router": "^7.0.2",
"react-hook-form": "^7.43.5",
"react-hook-form": "^7.57.0",
}}
startRoute="/products/create"
files={{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default function ServerSideValidationReactHookForm() {
"@refinedev/react-hook-form": "^4.8.12",
"react-dom": "^18.0.0",
"react-router": "^7.0.2",
"react-hook-form": "^7.43.5",
"react-hook-form": "^7.57.0",
}}
startRoute="/products/create"
files={{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default function AuthPage() {
"@chakra-ui/react": "^2.5.1",
"react-dom": "^18.0.0",
"react-router": "^7.0.2",
"react-hook-form": "^7.43.5",
"react-hook-form": "^7.57.0",
}}
startRoute="/login"
files={{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default function BasicViews() {
"@chakra-ui/react": "^2.5.1",
"react-dom": "^18.0.0",
"react-router": "^7.0.2",
"react-hook-form": "^7.43.5",
"react-hook-form": "^7.57.0",
}}
startRoute="/products"
files={{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default function Example() {
"@chakra-ui/react": "^2.5.1",
"react-dom": "^18.0.0",
"react-router": "^7.0.2",
"react-hook-form": "^7.43.5",
"react-hook-form": "^7.57.0",
}}
startRoute="/products"
files={{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export default function LayoutReactRouterDom() {
"@chakra-ui/react": "^2.5.1",
"react-dom": "^18.0.0",
"react-router": "^7.0.2",
"react-hook-form": "^7.43.5",
"react-hook-form": "^7.57.0",
}}
startRoute="/products"
files={{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export default function Usage() {
"@chakra-ui/react": "^2.5.1",
"react-dom": "^18.0.0",
"react-router": "^7.0.2",
"react-hook-form": "^7.43.5",
"react-hook-form": "^7.57.0",
}}
startRoute="/products"
files={{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default function AuthPage() {
"@mui/system": "^6.4.11",
"@mui/x-data-grid": "7.23.5",
"react-router": "^7.0.2",
"react-hook-form": "^7.43.5",
"react-hook-form": "^7.57.0",
}}
startRoute="/login"
files={{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export default function BasicViews() {
"@mui/system": "^6.4.11",
"@mui/x-data-grid": "7.23.5",
"react-router": "^7.0.2",
"react-hook-form": "^7.43.5",
"react-hook-form": "^7.57.0",
}}
startRoute="/products"
files={{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export default function Example() {
"@mui/system": "^6.4.11",
"@mui/x-data-grid": "7.23.5",
"react-router": "^7.0.2",
"react-hook-form": "^7.43.5",
"react-hook-form": "^7.57.0",
}}
startRoute="/products"
files={{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default function LayoutReactRouterDom() {
"@mui/system": "^6.4.11",
"@mui/x-data-grid": "^7.23.5",
"react-router": "^7.0.2",
"react-hook-form": "^7.43.5",
"react-hook-form": "^7.57.0",
}}
startRoute="/products"
files={{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default function Usage() {
"@mui/system": "^6.4.11",
"@mui/x-data-grid": "7.23.5",
"react-router": "^7.0.2",
"react-hook-form": "^7.43.5",
"react-hook-form": "^7.57.0",
}}
startRoute="/products"
files={{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default function UsageNextjs() {
"@mui/material": "^6.1.7",
"@mui/system": "^6.4.11",
"@mui/x-data-grid": "7.23.5",
"react-hook-form": "^7.43.5",
"react-hook-form": "^7.57.0",
"@refinedev/nextjs-router": "latest",
}}
// template="nextjs"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default function UsageReactRouterDom() {
"@mui/material": "^6.1.7",
"@mui/system": "^6.4.11",
"@mui/x-data-grid": "7.23.5",
"react-hook-form": "^7.43.5",
"react-hook-form": "^7.57.0",
"react-router": "^7.0.2",
"@refinedev/react-router": "latest",
}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default function UsageRemix() {
"@mui/material": "^6.1.7",
"@mui/system": "^6.4.11",
"@mui/x-data-grid": "7.23.5",
"react-hook-form": "^7.43.5",
"react-hook-form": "^7.57.0",
"@refinedev/remix-router": "latest",
}}
startRoute="/products"
Expand Down
2 changes: 1 addition & 1 deletion examples/audit-log-provider/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"dependencies": {
"@refinedev/cli": "^2.16.46",
"@refinedev/core": "^4.57.9",
"@refinedev/react-hook-form": "^4.9.3",
"@refinedev/react-hook-form": "^4.10.0",
"@refinedev/react-router": "^1.0.1",
"@refinedev/simple-rest": "^5.0.10",
"react": "^18.0.0",
Expand Down
6 changes: 3 additions & 3 deletions examples/auth-chakra-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
},
"dependencies": {
"@chakra-ui/react": "^2.5.1",
"@refinedev/chakra-ui": "^2.36.1",
"@refinedev/chakra-ui": "^2.37.0",
"@refinedev/cli": "^2.16.46",
"@refinedev/core": "^4.57.9",
"@refinedev/react-hook-form": "^4.9.3",
"@refinedev/react-hook-form": "^4.10.0",
"@refinedev/react-router": "^1.0.1",
"@refinedev/react-table": "^5.6.15",
"@refinedev/react-table": "^5.6.16",
"@refinedev/simple-rest": "^5.0.10",
"@tabler/icons-react": "^3.1.0",
"@tanstack/react-table": "^8.2.6",
Expand Down
4 changes: 2 additions & 2 deletions examples/auth-headless/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
"dependencies": {
"@refinedev/cli": "^2.16.46",
"@refinedev/core": "^4.57.9",
"@refinedev/react-hook-form": "^4.9.3",
"@refinedev/react-hook-form": "^4.10.0",
"@refinedev/react-router": "^1.0.1",
"@refinedev/react-table": "^5.6.15",
"@refinedev/react-table": "^5.6.16",
"@refinedev/simple-rest": "^5.0.10",
"@tanstack/react-table": "^8.2.6",
"react": "^18.0.0",
Expand Down
2 changes: 1 addition & 1 deletion examples/auth-mantine/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"@refinedev/core": "^4.57.9",
"@refinedev/mantine": "^2.36.1",
"@refinedev/react-router": "^1.0.1",
"@refinedev/react-table": "^5.6.15",
"@refinedev/react-table": "^5.6.16",
"@refinedev/simple-rest": "^5.0.10",
"@tabler/icons-react": "^3.1.0",
"@tanstack/react-table": "^8.2.6",
Expand Down
4 changes: 2 additions & 2 deletions examples/auth-material-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
"@mui/x-data-grid": "^7.23.5",
"@refinedev/cli": "^2.16.46",
"@refinedev/core": "^4.57.9",
"@refinedev/mui": "^6.1.3",
"@refinedev/react-hook-form": "^4.9.3",
"@refinedev/mui": "^6.2.0",
"@refinedev/react-hook-form": "^4.10.0",
"@refinedev/react-router": "^1.0.1",
"@refinedev/simple-rest": "^5.0.10",
"react": "^18.0.0",
Expand Down
6 changes: 3 additions & 3 deletions examples/base-chakra-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
},
"dependencies": {
"@chakra-ui/react": "^2.5.1",
"@refinedev/chakra-ui": "^2.36.1",
"@refinedev/chakra-ui": "^2.37.0",
"@refinedev/cli": "^2.16.46",
"@refinedev/core": "^4.57.9",
"@refinedev/react-hook-form": "^4.9.3",
"@refinedev/react-hook-form": "^4.10.0",
"@refinedev/react-router": "^1.0.1",
"@refinedev/react-table": "^5.6.15",
"@refinedev/react-table": "^5.6.16",
"@refinedev/simple-rest": "^5.0.10",
"@tabler/icons-react": "^3.1.0",
"@tanstack/react-table": "^8.2.6",
Expand Down
4 changes: 2 additions & 2 deletions examples/base-headless/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
"dependencies": {
"@refinedev/cli": "^2.16.46",
"@refinedev/core": "^4.57.9",
"@refinedev/react-hook-form": "^4.9.3",
"@refinedev/react-hook-form": "^4.10.0",
"@refinedev/react-router": "^1.0.1",
"@refinedev/react-table": "^5.6.15",
"@refinedev/react-table": "^5.6.16",
"@refinedev/simple-rest": "^5.0.10",
"@tanstack/react-table": "^8.2.6",
"react": "^18.0.0",
Expand Down
2 changes: 1 addition & 1 deletion examples/base-mantine/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"@refinedev/core": "^4.57.9",
"@refinedev/mantine": "^2.36.1",
"@refinedev/react-router": "^1.0.1",
"@refinedev/react-table": "^5.6.15",
"@refinedev/react-table": "^5.6.16",
"@refinedev/simple-rest": "^5.0.10",
"@tabler/icons-react": "^3.1.0",
"@tanstack/react-table": "^8.2.6",
Expand Down
Loading
Loading