Skip to content

Releases: forge42dev/Remix-Dev-Tools

v3.7.4

23 Jan 14:11
Compare
Choose a tag to compare

Remix v2.5.1 support

Fixed an issue where rdt wasn't working with v2.5.X

v3.7.2

14 Jan 12:50
Compare
Choose a tag to compare

Form data info in timeline

Added some code that more accurately parses formData in the timeline tab to show you more accurate info that was sent to the server

What's Changed

Full Changelog: v3.7.1...v3.7.2

v3.7.1

03 Jan 16:05
6e21278
Compare
Choose a tag to compare

Fixed an issue where the plugin breaks if you try to export links as a function

What's Changed

Full Changelog: v3.7.0...v3.7.1

v3.7.0

03 Jan 14:42
Compare
Choose a tag to compare

Hydration mismatch diff tool

The errors tab now has a hydration mismatch diff tool which shows you client and server difference in rendered HTML side by side

What's Changed

  • docs(installation): fix instructions for cjs by @obviyus in #83

New Contributors

Full Changelog: v3.6.2...v3.7.0

v3.6.2

11 Dec 09:11
Compare
Choose a tag to compare

UI Overhaul

The 3.6.x releases are mostly focused on UI overhaul and there has been an upgrade to the:

  • Active page tab
  • general layout
  • readability

Full Changelog: v3.5.1...v3.6.2

v3.5.1

02 Dec 11:16
99f38c4
Compare
Choose a tag to compare

Bug fixes

  • Fixed issue with timeline cutting off latest events incorrectly
  • Changed color of action logs to yellow from red
  • Fixed issue with body cloning by @dong-qian
  • Fixed issue where detached mode was stuck on the same page after navigation

What's Changed

New Contributors

Full Changelog: v3.5.0...v3.5.1

v3.5.0

01 Dec 13:40
4ef13e2
Compare
Choose a tag to compare

Vite support

Remix Development Tools now officially supports Vite!

The library exports a /vite submodule that gives you a Vite plugin to use. You can just do:

import { remixDevTools } from "remix-development-tools/vite";
export default defineConfig({
  plugins: [
    remixDevTools({
      pluginsDir: "./plugins"
  })], 
});

And you will have full RDT working with 0 additional configuration.

RDT shortcut

From this release you can open up RDT using ALT + "A"

Breaking changes

  • CTRL + right-click for open source has been changed to ALT + right-click

Minor changes

  • The go to source feature is now very accurate in the Vite plugin. The old approach can still be a hit and miss with the line number but the new version knows the exact line as well.
  • "Open in browser" button for routes is now a link you can open up in a new tab
  • The information for the loader calls in server data is now reversed so that the newest entries are at the top instead of bottom.
  • The server info tab has been reorganized to show the information in a better order to make it more readable

What's Changed

New Contributors

Full Changelog: v3.4.0...v3.5.0

v3.4.0

26 Oct 12:14
bddb1fa
Compare
Choose a tag to compare

Settings page update

You can now disable connection to the server part of dev tools if you're not using them or want to disable them for a while.
You can now change the port on the client and all the instances that are connecting to the server will use the same port
You can now change the url flag required to show the dev tools
You can now change visiblity based on url flag from the settings page

Breaking

Removed wsPort and requireUrlFlag client side config flags in favor of settings page change

What's Changed

Full Changelog: v3.3.0...v3.4.0

v3.3.0

21 Oct 14:51
Compare
Choose a tag to compare

Errors tab

New errors tab has been added!

  • Detects wrongly nested HTML for you and adds the errors to the tab
  • Lets you click on the file names to open up the locations and fix the issues

HMR improvements

RDT was causing HMR to take a bit longer due to some heavy packages (namely lucide-react), the package has been removed and your apps should HMR faster

What's Changed

  • remove lucide-react dependency by @xHomu in #68

Full Changelog: v3.2.2...v3.3.0

v3.2.2

09 Oct 10:08
Compare
Choose a tag to compare

View source improvement

Improves view-source functionality to try and open up primitive component parents instead of the primitives themselves, eg:

<ParentSelect>
  <SelectPrimitive />  -> clicking the select component primitive will open the ParentSelect file instead of the Select file
</ParentSelect>

What's Changed

Full Changelog: v3.2.1...v3.2.2