Releases: refinedev/refine
[email protected]
Patch Changes
6f2c1c22112a19ba89a9298469158d4da6096aa8
Thanks @BatuhanW! - chore: update master references to main
@refinedev/[email protected]
Patch Changes
- Updated dependencies [
6f2c1c22112a19ba89a9298469158d4da6096aa8
]:- @refinedev/[email protected]
- @refinedev/[email protected]
@refinedev/[email protected]
Patch Changes
6f2c1c22112a19ba89a9298469158d4da6096aa8
Thanks @BatuhanW! - chore: update master references to main
@refinedev/[email protected]
Patch Changes
6f2c1c22112a19ba89a9298469158d4da6096aa8
Thanks @BatuhanW! - chore: update master references to main
@refinedev/[email protected]
Patch Changes
-
6f2c1c22112a19ba89a9298469158d4da6096aa8
Thanks @BatuhanW! - chore: update master references to main -
Updated dependencies [
6f2c1c22112a19ba89a9298469158d4da6096aa8
]:- @refinedev/[email protected]
@refinedev/[email protected]
Patch Changes
-
#6445
4ff4335274d5689ec62127312695b76d692a125a
Thanks @alicanerdurmaz! - chore: update@ant-design/icons
version to match@refinedev/antd
.This is a patch release to update the
@ant-design/icons
version to match the@refinedev/antd
version. Previously@ant-design/icons
were pinned to5.0.1
version to avoid conflicts withReact@18
and@ant-design/pro-layout
packages. After5.4.0
these issues are resolved and we can safely update the version to latest range. -
Updated dependencies [
4ff4335274d5689ec62127312695b76d692a125a
,4ff4335274d5689ec62127312695b76d692a125a
,4ff4335274d5689ec62127312695b76d692a125a
,4ff4335274d5689ec62127312695b76d692a125a
,4ff4335274d5689ec62127312695b76d692a125a
]:- @refinedev/core@4.56.0
@refinedev/[email protected]
Patch Changes
-
#6398
10b6d7738738d9fe98db0e7107d1c5ae38b274fa
Thanks @alicanerdurmaz! - fix:transformHttpError.ts
andtransformErrorMessages
files are not swizzling.From now on, these files will be copied to the project.
@refinedev/[email protected]
Patch Changes
-
#6320
5c0f3d83cb424a82431c2f7ae183a94f3e59c39b
Thanks @mehrabmp! - feat: addbetween
filter operatorAdd between operator support to
CrudFilters
import { useTable } from "@refinedev/core"; useTable({ filters: { initial: [ { field: "createdAt", operator: "between", value: [new Date().toISOString(), new Date().toISOString()], }, ], }, });
@refinedev/[email protected]
Patch Changes
-
#6379
a3fca84847b523d6ac8e7b30bebdb77010e8f7e5
Thanks @BatuhanW! - fix(hasura): pass meta.gqlVariables to getOne gql request.
@refinedev/[email protected]
Major Changes
-
#6336
58e90f26248ed3d1bc92ae748f03a2cbe71721c2
Thanks @aliemir! - feat: rewrite GraphQL data provider.We've modernized GraphQL dataprovider to make it more flexible and strictly coupled into a specific API schema.
You can utilizeoption
parameter to change the behaviour of the data provider. You can also do it individually for a single action.
We've removedgql-query-builder
andgraphql-request
dependencies and now using@urql/core
as a GraphQL client.
This means now it's required to pass eithergqlQuery
orgqlMutation
to the hooks,meta.fields
usage is removed.
graphql-tag
package is also removed since@urql/core
already hasgql
export to write queries & mutations.
We are no more re-exporting other packages, just our data provider, live provider and defaultOptions.See the updated documentation for more details: https://refine.dev/docs/data/packages/graphql/