diff --git a/_changeset/README.md b/_changeset/README.md deleted file mode 100644 index e5b6d8d6a67a..000000000000 --- a/_changeset/README.md +++ /dev/null @@ -1,8 +0,0 @@ -# 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) diff --git a/_changeset/config.json b/_changeset/config.json deleted file mode 100644 index 7bb2d6daff0c..000000000000 --- a/_changeset/config.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "$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 - } -} diff --git a/_changeset/format.js b/_changeset/format.js deleted file mode 100644 index 3ba093ce3097..000000000000 --- a/_changeset/format.js +++ /dev/null @@ -1,40 +0,0 @@ -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; diff --git a/_changeset/fresh-ducks-speak.md b/_changeset/fresh-ducks-speak.md deleted file mode 100644 index 2b8f39f120e9..000000000000 --- a/_changeset/fresh-ducks-speak.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -"@refinedev/inferencer": patch -"@refinedev/mui": patch ---- - -fix: `@refinedev/mui` package gives following error: `Cannot find module '@mui/x-internals/forwardRef' from '/node_modules/@mui/x-data-grid/components/GridPagination.js'` #6615 - -To fix that, `@mui/x-data-grid` version is updated to `7.23.5`. - -[Resolves #6615](https://github.com/refinedev/refine/issues/6615) diff --git a/_changeset/giant-carrots-deny.md b/_changeset/giant-carrots-deny.md deleted file mode 100644 index 27c7b2a6b688..000000000000 --- a/_changeset/giant-carrots-deny.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -"@refinedev/core": patch ---- - -feat(core): add `enabled` prop to `useLoadingOvertime` and `overtimeOptions` - -Added missing `enabled` prop to `useLoadingOvertime` and added ability to globally configure through `options.overtime.enabled`. - -Due to the nature of calculating elapsed time, an interval is set by the `interval` prop. This was causing unwanted updates in the return value and there was no way to disable it properly. diff --git a/_changeset/great-hotels-admire.md b/_changeset/great-hotels-admire.md deleted file mode 100644 index b87d5b4d6cf2..000000000000 --- a/_changeset/great-hotels-admire.md +++ /dev/null @@ -1,18 +0,0 @@ ---- -"@refinedev/core": patch ---- - -fixed: `to` query parameter is not working after login. #6582 -From now on, the `to` query parameter will work after login. If the URL includes a `to` query parameter, the user will be redirected to the specified path after logging in. - -Example: - -After logout, Refine will automatically appends `to` query param to URL. - -``` -http://localhost:3000/login?to=/any-path -``` - -After login, it will redirect to `http://localhost:3000/any-path` - -Resolves [#6582](https://github.com/refinedev/refine/issues/6582) diff --git a/_changeset/perfect-donkeys-cheat.md b/_changeset/perfect-donkeys-cheat.md deleted file mode 100644 index f18a206ad6b5..000000000000 --- a/_changeset/perfect-donkeys-cheat.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -"@refinedev/core": patch ---- - -refactor(core): remove duplicated overtime intervals caused by internally used hooks - -Updated Refine's data hooks and extensions to prevent duplicated overtime intervals from being created. This uses the `enabled` prop to prevent internal hooks from registering the intervals. - -Prior to this change, `useTable` was initializing its own `useLoadingOvertime` hook but also propagated the `elapsedTime` from `useList` hook which is used internally by `useTable`. This caused duplicated intervals and unwanted updates. - -This now ensures a single interval is created and used for the extension hooks. diff --git a/_changeset/unlucky-rules-complain.md b/_changeset/unlucky-rules-complain.md deleted file mode 100644 index 5f3986d0b76c..000000000000 --- a/_changeset/unlucky-rules-complain.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -"@refinedev/core": patch ---- - -fix(core): add missing checks and warnings for `ids` and `resource` props in `useMany` hook - -Added checks for `ids` and `resource` props to check in runtime if they are valid or not. - -`useMany` will warn if `ids` or `resource` props are missing unless the query is manually enabled through `queryOptions.enabled` prop. - -[Resolves #6617](https://github.com/refinedev/refine/issues/6617)