18 KiB
@refinedev/devtools-internal
1.1.14
Patch Changes
-
#6165
ccddff6eba23286d4025a7301de3ebfc24b1b633
Thanks @aliemir! - fix(devtools-internal): fix noop return on hooks for production buildsCurrently,
@refinedev/devtools-internal
returns noop function when bundled for production, yet the notation is not correctly interpreted by some bundlers. This PR fixes the issue by moving the empty return and noop functions to a separate definition. -
#6185
603c73eb7d376fc2357a577f5921f844a8f444e4
Thanks @aliemir! - feat(devtools): ability to change the port of the devtools serverNow users can change the port of the devtools server by setting the
REFINE_DEVTOOLS_PORT
environment variable. Previously, the port was hardcoded to "5001" and could not be changed.If you're using
@refinedev/cli
's runner commands to start your development server,REFINE_DEVTOOLS_PORT
will be propagated to your app with appropriate prefix. E.g. if you're using Vite, the environment variable will beVITE_REFINE_DEVTOOLS_PORT
and it will be used by the@refinedev/devtools
's<DevtoolsProvider />
component to connect to the devtools server.- In Next.js apps, it will be prefixed with
NEXT_PUBLIC_
- In Craco and Create React App apps, it will be prefixed with
REACT_APP_
- In Remix apps and other custom setups, the environment variable will be used as is.
In some scenarios where the environment variables are not passed to the browser, you may need to manually set the Refine Devtools URL in the
<DevtoolsProvider />
component via theurl
prop. Remix apps do not automatically pass environment variables to the browser, so you will need to set the URL manually. If not set, the default URL will be used.While the port can be changed, this feature also allows users to host the devtools server on a different machine or domain and provide the
<DevtoolsProvider />
with the custom domain URL. This such case will be useful if you're dockerizing your app and devtools server separately.Enterprise Edition: Refine Devtools running on ports other than "5001" is only available in the Enterprise Edition. If you're using the Community Edition, Refine Devtools will not work if the port is changed.
- In Next.js apps, it will be prefixed with
-
Updated dependencies [
603c73eb7d376fc2357a577f5921f844a8f444e4
]:- @refinedev/devtools-shared@1.1.12
1.1.13
Patch Changes
- Updated dependencies [
8bc2c1c6790d1e098ce0d98e01f608e3310f7b4a
,8bc2c1c6790d1e098ce0d98e01f608e3310f7b4a
]:- @refinedev/devtools-shared@1.1.11
1.1.11
Patch Changes
-
6bd14228760d3e1e205ea9248e427f9afa2ec046
Thanks @BatuhanW! - fix(devtools-internal): broken env conditional in useQuerySubscription hookWhen using Refine with React Native,
process.env.NODE_ENV !== "development" ? () => ({}) : () => {...}
conditional inuseQuerySubscription
hook was causing a syntax error. This PR fixes the issue by explicitly returning an empty object on non-development environments. -
6bd14228760d3e1e205ea9248e427f9afa2ec046
Thanks @BatuhanW! - chore: addedtype
qualifier to imports used as type only.- import { A } from "./example.ts"; + import type { A } from "./example.ts";
-
Updated dependencies [
6bd14228760d3e1e205ea9248e427f9afa2ec046
,6bd14228760d3e1e205ea9248e427f9afa2ec046
,6bd14228760d3e1e205ea9248e427f9afa2ec046
]:- @refinedev/devtools-shared@1.1.9
1.1.10
Patch Changes
-
#5945
a1e36e6e909a91bc6218478f136b49a8e82a7e32
Thanks @aliemir! - fix(devtools-internal): broken env conditional in useQuerySubscription hookWhen using Refine with React Native,
process.env.NODE_ENV !== "development" ? () => ({}) : () => {...}
conditional inuseQuerySubscription
hook was causing a syntax error. This PR fixes the issue by explicitly returning an empty object on non-development environments. -
#5945
90930b381d8d369c63bc59beedf69c391875166d
Thanks @aliemir! - chore: addedtype
qualifier to imports used as type only.- import { A } from "./example.ts"; + import type { A } from "./example.ts";
-
Updated dependencies [
bb89dc34bf6ef061d0bcdcf0cb3173fe7014ae5e
,6c22ece19f44ca2b99ad70543f9ee40b4b139863
,90930b381d8d369c63bc59beedf69c391875166d
]:- @refinedev/devtools-shared@1.1.8
1.1.9
Patch Changes
-
#5928
db9756e7908
Thanks @aliemir! - fix: type errors on typescript <5Due to the changes in #5881, typescript users below version 5 are facing type errors. This PR fixes the type errors by updating the file extensions required by the
d.mts
declaration files to provide a compatible declarations for both typescript 4 and 5 users. -
Updated dependencies [
db9756e7908
]:- @refinedev/devtools-shared@1.1.7
1.1.8
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/devtools-shared@1.1.6
1.1.7
Patch Changes
-
#5765
0c197d82393
Thanks @aliemir! - refactor: package bundles and package.json configuration for exportsPreviously, Refine packages had exported ESM and CJS bundles with same
.js
extension and same types for both with.d.ts
extensions. This was causing issues with bundlers and compilers to pick up the wrong files for the wrong environment. Now we're outputting ESM bundles with.mjs
extension and CJS bundles with.cjs
extension. Also types are now exported with both.d.mts
and.d.cts
extensions.In older versions ESM and CJS outputs of some packages were using wrong imports/requires to dependencies causing errors in some environments. This will be fixed since now we're also enforcing the module type with extensions.
Above mentioned changes also supported with changes in
package.json
files of the packages to support the new extensions and types. All Refine packages now includeexports
fields in their configuration to make sure the correct bundle is picked up by the bundlers and compilers. -
#5754
56ed144a0f5
Thanks @alicanerdurmaz! - chore: TypeScript upgraded to v5.x.x. #5752 -
Updated dependencies [
0c197d82393
,56ed144a0f5
]:- @refinedev/devtools-shared@1.1.5
1.1.6
Patch Changes
-
#5695
79865affa1c
Thanks @BatuhanW! - chore: apply biome format and fix lint errors. -
Updated dependencies [
79865affa1c
]:- @refinedev/devtools-shared@1.1.4
1.1.5
Patch Changes
-
#5573
546df06482
Thanks @alicanerdurmaz! - chore: add "use client" directive to exported files to work with nextjs app router -
Updated dependencies [
546df06482
]:- @refinedev/devtools-shared@1.1.3
1.1.4
Patch Changes
-
#5022
80513a4e42f
Thanks @BatuhanW! - chore: update README.md- fix grammar errors.
- make all README.md files consistent.
- add code example code snippets.
-
Updated dependencies [
80513a4e42f
]:- @refinedev/devtools-shared@1.1.2
1.1.3
Patch Changes
-
#5022
80513a4e42f
Thanks @BatuhanW! - chore: update README.md- fix grammar errors.
- make all README.md files consistent.
- add code example code snippets.
-
Updated dependencies [
80513a4e42f
]:- @refinedev/devtools-shared@1.1.1
1.1.2
Patch Changes
- #5008
c8499114e55
Thanks @aliemir! - Fixing the version of@refinedev/devtools-shared
dependency to avoid breaking projects in mismatching releases.
1.1.1
Patch Changes
- #5008
c8499114e55
Thanks @aliemir! - Fixing the version of@refinedev/devtools-shared
dependency to avoid breaking projects in mismatching releases.
1.1.0
Minor Changes
-
#4960
d8e464fa2c4
Thanks @aliemir! - Initial beta release of refine devtools.🎉We're releasing refine devtools in beta. refine devtools is designed to help you debug and develop your refine apps. It will be a collection of features including monitoring queries and mutations, testing out inferencer generated codes, adding and updating refine packages from the UI and more. 🤯
Usage
Install the dependencies using your package manager.
npm i @refinedev/devtools@latest @refinedev/cli@latest
Add
<DevtoolsProvider />
and<DevtoolsPanel />
components to your app:You'll need to wrap your app with
<DevtoolsProvider />
component and add<DevtoolsPanel />
component to your app to access the devtools UI.import { DevtoolsPanel, DevtoolsProvider } from "@refinedev/devtools"; const App = () => { return ( <DevtoolsProvider> <Refine // ... > {/* ... */} </Refine> <DevtoolsPanel /> </DevtoolsProvider> ); };
Then you're good to go 🙌,
<DevtoolsProvider />
will tell refine to connect to the devtools server and track your queries and mutations.<DevtoolsPanel />
will render the devtools UI in your app.note: Devtools only works in development mode and have no overhead on production builds. You don't need to do anything special to exclude DevTools from your bundle.
Devtools is integrated with
@refinedev/cli
and it will be started automatically in development mode if you have@refinedev/devtools
installed.If you want to start devtools manually or have a custom dev script, you can run
refine devtools
in your project directory or add the following scripts to yourpackage.json
:{ "scripts": { // If you have not customized the start script. "start": "refine dev", // The devtools server runs automatically; you don't need to do anything. // If you have customized the start script. "start": "my-custom-dev-script & refine devtools" // Run the devtools server manually. // other scripts } }
If you don't have
@refinedev/cli
installed already, you can follow the installation guide to add it to your project.These commands will start the devtools server. If you want to access the devtools UI outside of your app without depending on the
<DevtoolsPanel />
component, you can go tohttp://localhost:5001
in your browser. 🚀
Patch Changes
- Updated dependencies [
d8e464fa2c4
]:- @refinedev/devtools-shared@1.1.0
1.0.0
Major Changes
-
#4960
d8e464fa2c4
Thanks @aliemir! - Initial beta release of refine devtools.🎉We're releasing refine devtools in beta. refine devtools is designed to help you debug and develop your refine apps. It will be a collection of features including monitoring queries and mutations, testing out inferencer generated codes, adding and updating refine packages from the UI and more. 🤯
Usage
Install the dependencies using your package manager.
npm i @refinedev/devtools@next @refinedev/cli@next @refinedev/core@next
Add
<DevtoolsProvider />
and<DevtoolsPanel />
components to your app:You'll need to wrap your app with
<DevtoolsProvider />
component and add<DevtoolsPanel />
component to your app to access the devtools UI.import { DevtoolsPanel, DevtoolsProvider } from "@refinedev/devtools"; const App = () => { return ( <DevtoolsProvider> <Refine // ... > {/* ... */} </Refine> <DevtoolsPanel /> </DevtoolsProvider> ); };
Then you're good to go 🙌,
<DevtoolsProvider />
will tell refine to connect to the devtools server and track your queries and mutations.<DevtoolsPanel />
will render the devtools UI in your app.note: Devtools only works in development mode and have no overhead on production builds. You don't need to do anything special to exclude DevTools from your bundle.
Devtools is integrated with
@refinedev/cli
and it will be started automatically in development mode if you have@refinedev/devtools
installed.If you want to start devtools manually or have a custom dev script, you can run
refine devtools
in your project directory or add the following scripts to yourpackage.json
:{ "scripts": { // If you have not customized the start script. "start": "refine dev", // The devtools server runs automatically; you don't need to do anything. // If you have customized the start script. "start": "my-custom-dev-script & refine devtools" // Run the devtools server manually. // other scripts } }
If you don't have
@refinedev/cli
installed already, you can follow the installation guide to add it to your project.These commands will start the devtools server. If you want to access the devtools UI outside of your app without depending on the
<DevtoolsPanel />
component, you can go tohttp://localhost:5001
in your browser. 🚀
Patch Changes
- Updated dependencies [
d8e464fa2c4
]:- @refinedev/devtools-shared@1.0.0