Releases: refinedev/refine
@refinedev/[email protected]
Patch Changes
-
#5875
1c9a95f22ab
Thanks @aliemir! - feat: update resource name accessing logicUpdated resource name displaying logic to use
resourceName
from activity records to make sureresource
is correctly displayed with custom query keys. -
#5875
1c9a95f22ab
Thanks @aliemir! - feat: add invalidate query buttonAdded
Invalidate Query
button to settled queries in the devtools panel to allow users to manually invalidate queries for debugging purposes. -
#5875
1c9a95f22ab
Thanks @aliemir! - refactor: replacereact-json-view
withreact-json-view-lite
Replaced outdated
react-json-view
package withreact-json-view-lite
for both performance and dependency resolution reasons. -
#5881
ba719f6ea26
Thanks @aliemir! - fix: declaration files in node10, node16 and nodenext module resolutions -
Updated dependencies [
1c9a95f22ab
,1c9a95f22ab
,ba719f6ea26
]:- @refinedev/[email protected]
@refinedev/[email protected]
Patch Changes
-
#5875
1c9a95f22ab
Thanks @aliemir! - feat: update resource name accessing logicUpdated resource name displaying logic to use
resourceName
from activity records to make sureresource
is correctly displayed with custom query keys. -
#5875
1c9a95f22ab
Thanks @aliemir! - feat: add invalidate query buttonAdded
Invalidate Query
button to settled queries in the devtools panel to allow users to manually invalidate queries for debugging purposes. -
#5881
ba719f6ea26
Thanks @aliemir! - fix: declaration files in node10, node16 and nodenext module resolutions
@refinedev/[email protected]
Patch Changes
-
#5875
1c9a95f22ab
Thanks @aliemir! - chore: move@refinedev/devtools-ui
dependencyMoved
@refinedev/devtools-ui
dependency todevDependencies
since only thevite
output is used in the server. -
#5875
1c9a95f22ab
Thanks @aliemir! - feat: update resource name accessing logicUpdated resource name displaying logic to use
resourceName
from activity records to make sureresource
is correctly displayed with custom query keys. -
#5875
1c9a95f22ab
Thanks @aliemir! - feat: add invalidate query buttonAdded
Invalidate Query
button to settled queries in the devtools panel to allow users to manually invalidate queries for debugging purposes. -
#5865
a9dbd808782
Thanks @aliemir! - fix: devtools authentication not working with safariFixed the authentication flow and cookie handling for Safari. Now devtools users will be able to authenticate and use the devtools server using Safari.
Resolves #5753
-
Updated dependencies [
1c9a95f22ab
,1c9a95f22ab
,ba719f6ea26
]:- @refinedev/[email protected]
@refinedev/[email protected]
Patch Changes
-
#5875
1c9a95f22ab
Thanks @aliemir! - feat: update resource name accessing logicUpdated resource name displaying logic to use
resourceName
from activity records to make sureresource
is correctly displayed with custom query keys. -
#5875
1c9a95f22ab
Thanks @aliemir! - feat: add invalidate query buttonAdded
Invalidate Query
button to settled queries in the devtools panel to allow users to manually invalidate queries for debugging purposes. -
#5881
ba719f6ea26
Thanks @aliemir! - fix: declaration files in node10, node16 and nodenext module resolutions -
Updated dependencies [
1c9a95f22ab
,1c9a95f22ab
,ba719f6ea26
]:- @refinedev/[email protected]
@refinedev/[email protected]
Patch Changes
-
#5875
1c9a95f22ab
Thanks @aliemir! - refactor: add resource name to devtools xray callsAdded the resource name to the devtools xray calls to allow resource names to be displayed in the devtools even with custom query keys.
-
#5883
0a76576da0f
Thanks @aliemir! - fix: development errors being logged whenuseOnError
is called without an auth providerWhen there's no
authProvider
set, theuseOnError
hook will log"no mutationFn found"
to the console in development because of missingonError
property. This PR fixes the issue by providing a dummyonError
function whenauthProvider
is not set. -
#5851
8d2dd4376f6
Thanks @aliemir! - refactor: prevented early accessingsignal
fromuseQuery
of@tanstack/react-query
In query hooks,
signal
was accessed directly by destructuring which was causing issues in development mode with duplicated requests. This change accessesqueryContext
instead of destructuredsignal
properly to prevent@tanstack/react-query
from settingabortSignalConsumed
flag unexpectedly.Resolves #5843
-
#5875
1c9a95f22ab
Thanks @aliemir! - fix: exclude internal button hook calls from devtools traceRemoved internal button hook calls from devtools trace to avoid crowding the trace with unnecessary information.
-
#5881
ba719f6ea26
Thanks @aliemir! - fix: declaration files in node10, node16 and nodenext module resolutions -
#5884
9a0c1c8414a
Thanks @aliemir! - fix(core):useMenu
hideOnMissingParameter
prop default value set totrue
There was an error in the
useMenu
hook'shideOnMissingParameter
prop. Its default value should betrue
but it was missed when props are passed partially. This PR fixes the issue by setting the default value totrue
. -
Updated dependencies [
1c9a95f22ab
,1c9a95f22ab
,ba719f6ea26
]:- @refinedev/[email protected]
@refinedev/[email protected]
Patch Changes
-
#5881
ba719f6ea26
Thanks @aliemir! - fix: declaration files in node10, node16 and nodenext module resolutions -
Updated dependencies [
1c9a95f22ab
,1c9a95f22ab
,1c9a95f22ab
,a9dbd808782
]:- @refinedev/[email protected]
@refinedev/[email protected]
Minor Changes
-
#5868
a82ef6afc15
Thanks @Ac-Srikanth! - feat: add message prop for required auth input fields for the above packages.Now you can provide custom required messages with translate feature for all auth input fields(Login, register, forget password,update password).
Resolves #5855
Patch Changes
-
#5881
ba719f6ea26
Thanks @aliemir! - fix: declaration files in node10, node16 and nodenext module resolutions -
Updated dependencies [
ba719f6ea26
]:- @refinedev/[email protected]
- @refinedev/[email protected]
@refinedev/[email protected]
Minor Changes
-
#5886
f3ddcce0bf5
Thanks @abdelrahman-essawy! - fix: add ability to customize default permission without explicitly passing them on each mutationfixing an issue which didn't allow users to override the default
readPermissions
/writePermissions
valuesRole.any()
, by passingdefaultReadPermissions
/defaultWritePermissions
OR by passingmeta?.readPermissions
/meta?.writePermissions
.
Patch Changes
- #5881
ba719f6ea26
Thanks @aliemir! - fix: declaration files in node10, node16 and nodenext module resolutions
@refinedev/[email protected]
Minor Changes
-
#5868
a82ef6afc15
Thanks @Ac-Srikanth! - feat: add message prop for required auth input fields for the above packages.Now you can provide custom required messages with translate feature for all auth input fields(Login, register, forget password,update password).
Resolves #5855
Patch Changes
-
#5887
113c1337bf0
Thanks @aliemir! - chore: remove version lock from @ant-design/icons 5.0.1 to ^5.0.1 -
#5920
df0dad6ca46
Thanks @aliemir! - fix: lockantd
version to5.16.5
due to broken builds in5.17.0
In the latest release of
antd
package, Next.js apps are failing to build or taking extremely long time to build. Until this issue is fixed in theantd
package, we are locking the version to5.16.5
to prevent any build issues.Related issue antd/#48758
-
#5881
ba719f6ea26
Thanks @aliemir! - fix: declaration files in node10, node16 and nodenext module resolutions -
Updated dependencies [
ba719f6ea26
]:- @refinedev/[email protected]
@refinedev/[email protected]
Patch Changes
- #5881
ba719f6ea26
Thanks @aliemir! - fix: declaration files in node10, node16 and nodenext module resolutions