Use case
Framework
Owner
- Remix/2/React Router/Upgrade- This codemod automates most of the manual steps outlined in the Remix to React Router upgrade guide. 
- React Router/7/Update Imports- In v7 the react-router and react-router-dom packages are combined so this codemod import everything directly from "react-router" except for the RouterProvider exception. 
- React Router/7/Migration Recipe- This codemods designed to facilitate the migration of your project from React Router to version 7. Each codemod targets specific changes and improvements introduced in React Router v7, ensuring a smoother transition. 
- React Router/7/Add V7 SkipActionStatusRevalidation Flag- This transformation adds the necessary configuration to enable v7 features, specifically the v7_skipActionStatusRevalidation flag. 
- React Router/7/Add V7 PartialHydration Flag- This transformation adds the necessary configuration to enable v7 features, specifically the v7_partialHydration_Flag flags 
- React Router/7/Add V7 NormalizeFormMethod- This transformation adds the necessary configuration to enable v7 features, specifically adds the v7_normalizeFormMethod 
- React Router/7/Add V7 FetcherPersist Flag- This transformation adds the necessary configuration to enable v7 features, specifically the v7_fetcherPersist flags 
- React Router/7/Add V7 StartTransition Flag- This transformation adds the necessary configuration to enable v7 features, specifically the v7_startTransition flags. It affects , , and createBrowserRouter configurations. 
- React Router/7/Add V7 RelativeSplatPath Flag- This transformation adds the necessary configuration to enable v7 features, specifically the v7_relativeSplatPath flag. It affects both components and createBrowserRouter configurations. 
- React Router/7/Relative Links- This transformation updates elements within route trees to include an extra relative segment. This ensures that links continue to point to the correct locations after the route structure changes. 
- React Router/7/Route Wildcard To Nested- This transformation updates the routing structure for multi-segment splat paths. It affects both createBrowserRouter configurations and components. 
- React Router/7/Form Methods Post Get To Uppercase- This transformation updates formMethod checks to use uppercase HTTP methods. 
- React Router/7/Errorfirst Mutation Reorder- This transformation restructures action functions to perform error checking before data mutations. This change aligns with the new behavior in v7 where loaders no longer revalidate by default after an action throws or returns a Response with a 4xx/5xx status code. 
- Sentry/V8/Migration Recipe- This recipe is a set of codemods that will help migrate sentry.js v7.x to v8.x. 
- Sentry/V8/Removal Of AddGlobalEventProcessor- This codemod facilitates the migration from Sentry v7.x to v8.x by replacing the deprecated - addGlobalEventProcessorfunction with the new- getGlobalScope().addEventProcessormethod.