algolia / doc-code-samples

This repository holds the Algolia documentation big code samples like GeoSearch, Calendar...
93 stars 121 forks source link

chore(deps): update remix monorepo to v1.19.3 #468

Open renovate[bot] opened 1 year ago

renovate[bot] commented 1 year ago

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@remix-run/dev (source) 1.6.5 -> 1.19.3 age adoption passing confidence
@remix-run/eslint-config (source) 1.6.5 -> 1.19.3 age adoption passing confidence
@remix-run/node (source) 1.6.5 -> 1.19.3 age adoption passing confidence
@remix-run/react (source) 1.6.5 -> 1.19.3 age adoption passing confidence
@remix-run/serve (source) 1.6.5 -> 1.19.3 age adoption passing confidence

Release Notes

remix-run/remix (@​remix-run/dev) ### [`v1.19.3`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-dev/CHANGELOG.md#1193) [Compare Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/dev@1.19.2...@remix-run/dev@1.19.3) ##### Patch Changes - Show deprecation warning when using `devServerBroadcastDelay` and `devServerPort` config options ([#​7064](https://redirect.github.com/remix-run/remix/pull/7064)) - Updated dependencies: - `@remix-run/server-runtime@1.19.3` ### [`v1.19.2`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-dev/CHANGELOG.md#1192) [Compare Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/dev@1.19.1...@remix-run/dev@1.19.2) ##### Patch Changes - Update `proxy-agent` to resolve npm audit security vulnerability ([#​7027](https://redirect.github.com/remix-run/remix/pull/7027)) - Updated dependencies: - `@remix-run/server-runtime@1.19.2` ### [`v1.19.1`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-dev/CHANGELOG.md#1191) [Compare Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/dev@1.19.0...@remix-run/dev@1.19.1) ##### Patch Changes - Add a heartbeat ping to prevent the WebSocket connection from being closed due to inactivity when using a proxy like Cloudflare ([#​6904](https://redirect.github.com/remix-run/remix/pull/6904), [#​6927](https://redirect.github.com/remix-run/remix/pull/6927)) - Treeshake out HMR code from production builds ([#​6894](https://redirect.github.com/remix-run/remix/pull/6894)) - Updated dependencies: - `@remix-run/server-runtime@1.19.1` ### [`v1.19.0`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-dev/CHANGELOG.md#1190) [Compare Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/dev@1.18.1...@remix-run/dev@1.19.0) ##### Minor Changes - improved networking options for `v2_dev` ([#​6724](https://redirect.github.com/remix-run/remix/pull/6724)) deprecate the `--scheme` and `--host` options and replace them with the `REMIX_DEV_ORIGIN` environment variable - Output esbuild metafiles for bundle analysis ([#​6772](https://redirect.github.com/remix-run/remix/pull/6772)) Written to server build directory (`build/` by default): - `metafile.css.json` - `metafile.js.json` (browser JS) - `metafile.server.json` (server JS) Metafiles can be uploaded to for analysis. - Add `serverNodeBuiltinsPolyfill` config option. In `remix.config.js` you can now disable polyfills of Node.js built-in modules for non-Node.js server platforms, or opt into a subset of polyfills. ([#​6814](https://redirect.github.com/remix-run/remix/pull/6814), [#​6859](https://redirect.github.com/remix-run/remix/pull/6859), [#​6877](https://redirect.github.com/remix-run/remix/pull/6877)) ```js // Disable all polyfills exports.serverNodeBuiltinsPolyfill = { modules: {} }; // Enable specific polyfills exports.serverNodeBuiltinsPolyfill = { modules: { crypto: true, // Provide a JSPM polyfill fs: "empty", // Provide an empty polyfill }, }; ``` ##### Patch Changes - ignore missing react-dom/client for react 17 ([#​6725](https://redirect.github.com/remix-run/remix/pull/6725)) - Warn if not using `v2_dev` ([#​6818](https://redirect.github.com/remix-run/remix/pull/6818)) Also, rename `--no-restart` to `--manual` to match intention and documentation. `--no-restart` remains an alias for `--manual` in v1 for backwards compatibility. - ignore errors when killing already dead processes ([#​6773](https://redirect.github.com/remix-run/remix/pull/6773)) - Always rewrite css-derived assets during builds ([#​6837](https://redirect.github.com/remix-run/remix/pull/6837)) - fix sourcemaps for `v2_dev` ([#​6762](https://redirect.github.com/remix-run/remix/pull/6762)) - Do not clear screen when dev server starts ([#​6719](https://redirect.github.com/remix-run/remix/pull/6719)) On some terminal emulators, "clearing" only scrolls the next line to the top. on others, it erases the scrollback. Instead, let users call `clear` themselves (`clear && remix dev`) if they want to clear. - Updated dependencies: - `@remix-run/server-runtime@1.19.0` ### [`v1.18.1`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-dev/CHANGELOG.md#1181) [Compare Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/dev@1.18.0...@remix-run/dev@1.18.1) ##### Patch Changes - Ignore missing `react-dom/client` for React 17 ([#​6725](https://redirect.github.com/remix-run/remix/pull/6725)) - Updated dependencies: - `@remix-run/server-runtime@1.18.1` ### [`v1.18.0`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-dev/CHANGELOG.md#1180) [Compare Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/dev@1.17.1...@remix-run/dev@1.18.0) ##### Minor Changes - stabilize v2 dev server ([#​6615](https://redirect.github.com/remix-run/remix/pull/6615)) - improved logging for `remix build` and `remix dev` ([#​6596](https://redirect.github.com/remix-run/remix/pull/6596)) ##### Patch Changes - fix docs links for msw and mkcert ([#​6672](https://redirect.github.com/remix-run/remix/pull/6672)) - fix `remix dev -c`: kill all descendant processes of specified command when restarting ([#​6663](https://redirect.github.com/remix-run/remix/pull/6663)) - Add caching to regular stylesheet compilation ([#​6638](https://redirect.github.com/remix-run/remix/pull/6638)) - Rename `Architect (AWS Lambda)` -> `Architect` in the `create-remix` CLI to avoid confusion for other methods of deploying to AWS (i.e., SST) ([#​6484](https://redirect.github.com/remix-run/remix/pull/6484)) - Improve CSS bundle build performance by skipping unused Node polyfills ([#​6639](https://redirect.github.com/remix-run/remix/pull/6639)) - Improve performance of CSS bundle build by skipping compilation of Remix/React packages that are known not to contain CSS imports ([#​6654](https://redirect.github.com/remix-run/remix/pull/6654)) - Cache CSS side-effect imports transform when using HMR ([#​6622](https://redirect.github.com/remix-run/remix/pull/6622)) - Fix bug with pathless layout routes beneath nested path segments ([#​6649](https://redirect.github.com/remix-run/remix/pull/6649)) - Add caching to PostCSS for CSS Modules ([#​6604](https://redirect.github.com/remix-run/remix/pull/6604)) - Add caching to PostCSS for side-effect imports ([#​6554](https://redirect.github.com/remix-run/remix/pull/6554)) - cache getRouteModuleExports calls to significantly speed up build and HMR rebuild times ([#​6629](https://redirect.github.com/remix-run/remix/pull/6629)) - group rebuild logs with surrounding whitespace ([#​6607](https://redirect.github.com/remix-run/remix/pull/6607)) - instructions for integrating with msw ([#​6669](https://redirect.github.com/remix-run/remix/pull/6669)) - Update minimum version of `esbuild-plugins-node-modules-polyfill` to 1.0.16 to ensure that the plugin is cached ([#​6652](https://redirect.github.com/remix-run/remix/pull/6652)) - Updated dependencies: - `@remix-run/server-runtime@1.18.0` ### [`v1.17.1`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-dev/CHANGELOG.md#1171) [Compare Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/dev@1.17.0...@remix-run/dev@1.17.1) ##### Patch Changes - Replace `esbuild-plugin-polyfill-node` with `esbuild-plugins-node-modules-polyfill` ([#​6562](https://redirect.github.com/remix-run/remix/pull/6562)) - Lazily generate CSS bundle when import of `@remix-run/css-bundle` is detected ([#​6535](https://redirect.github.com/remix-run/remix/pull/6535)) - Updated dependencies: - `@remix-run/server-runtime@1.17.1` ### [`v1.17.0`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-dev/CHANGELOG.md#1170) [Compare Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/dev@1.16.1...@remix-run/dev@1.17.0) ##### Minor Changes - built-in tls support ([#​6483](https://redirect.github.com/remix-run/remix/pull/6483)) New options: - `--tls-key` / `tlsKey`: TLS key - `--tls-cert` / `tlsCert`: TLS Certificate If both TLS options are set, `scheme` defaults to `https` ### [`v1.16.1`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-dev/CHANGELOG.md#1161) [Compare Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/dev@1.16.0...@remix-run/dev@1.16.1) ##### Patch Changes - Cross-module `loader` change detection for HDR ([#​6299](https://redirect.github.com/remix-run/remix/pull/6299)) - Normalize path for dev server `PATH` envvar so that it works cross-platform (e.g. Windows) ([#​6310](https://redirect.github.com/remix-run/remix/pull/6310)) - Fix CSS imports in JS files that use JSX ([#​6309](https://redirect.github.com/remix-run/remix/pull/6309)) - Kill app server when dev server exits ([#​6395](https://redirect.github.com/remix-run/remix/pull/6395)) - Wait until app server is killed before starting a new app server ([#​6289](https://redirect.github.com/remix-run/remix/pull/6289)) - Ensure CSS bundle changes result in a new manifest hash ([#​6374](https://redirect.github.com/remix-run/remix/pull/6374)) - Normalize file paths before testing if a changed file is a route entry ([#​6293](https://redirect.github.com/remix-run/remix/pull/6293)) - Fix race where app server responds with updated manifest version *before* dev server is listening for it ([#​6294](https://redirect.github.com/remix-run/remix/pull/6294)) - dev server now listens for updated versions *before* writing the server changes, guaranteeing that it is listening before the app server gets a chance to send its 'ready' message - Only process `.css.ts`/`.css.js` files with Vanilla Extract if `@vanilla-extract/css` is installed ([#​6345](https://redirect.github.com/remix-run/remix/pull/6345)) - Stop modifying a user's `tsconfig.json` when running using `getConfig` (`remix dev`, `remix routes`, `remix build`, etc) ([#​6156](https://redirect.github.com/remix-run/remix/pull/6156)) - Cancel previous build when rebuild is kicked off to prevent rebuilds from hanging ([#​6295](https://redirect.github.com/remix-run/remix/pull/6295)) - Update minimum version of Babel dependencies to avoid errors parsing decorators ([#​6390](https://redirect.github.com/remix-run/remix/pull/6390)) - Support asset imports when detecting loader changes for HDR ([#​6396](https://redirect.github.com/remix-run/remix/pull/6396)) - Updated dependencies: - `@remix-run/server-runtime@1.16.1` ### [`v1.16.0`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-dev/CHANGELOG.md#1160) [Compare Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/dev@1.15.0...@remix-run/dev@1.16.0) ##### Minor Changes - Enable support for [CSS Modules](https://redirect.github.com/css-modules/css-modules), [Vanilla Extract](http://vanilla-extract.style) and CSS side-effect imports ([#​6046](https://redirect.github.com/remix-run/remix/pull/6046)) These CSS bundling features were previously only available via `future.unstable_cssModules`, `future.unstable_vanillaExtract` and `future.unstable_cssSideEffectImports` options in `remix.config.js`, but they have now been stabilized. In order to use these features, check out our guide to [CSS bundling](https://remix.run/docs/en/1.16.0/guides/styling#css-bundling) in your project. - Stabilize built-in PostCSS support via the new `postcss` option in `remix.config.js`. As a result, the `future.unstable_postcss` option has also been deprecated. ([#​5960](https://redirect.github.com/remix-run/remix/pull/5960)) The `postcss` option is `false` by default, but when set to `true` will enable processing of all CSS files using PostCSS if `postcss.config.js` is present. If you followed the original PostCSS setup guide for Remix, you may have a folder structure that looks like this, separating your source files from its processed output: . ├── app │ └── styles (processed files) │ ├── app.css │ └── routes │ └── index.css └── styles (source files) ├── app.css └── routes └── index.css After you've enabled the new `postcss` option, you can delete the processed files from `app/styles` folder and move your source files from `styles` to `app/styles`: . ├── app │ └── styles (source files) │ ├── app.css │ └── routes │ └── index.css You should then remove `app/styles` from your `.gitignore` file since it now contains source files rather than processed output. You can then update your `package.json` scripts to remove any usage of `postcss` since Remix handles this automatically. For example, if you had followed the original setup guide: ```diff { "scripts": { - "dev:css": "postcss styles --base styles --dir app/styles -w", - "build:css": "postcss styles --base styles --dir app/styles --env production", - "dev": "concurrently \"npm run dev:css\" \"remix dev\"" + "dev": "remix dev" } } ``` - Stabilize built-in Tailwind support via the new `tailwind` option in `remix.config.js`. As a result, the `future.unstable_tailwind` option has also been deprecated. ([#​5960](https://redirect.github.com/remix-run/remix/pull/5960)) The `tailwind` option is `false` by default, but when set to `true` will enable built-in support for Tailwind functions and directives in your CSS files if `tailwindcss` is installed. If you followed the original Tailwind setup guide for Remix and want to make use of this feature, you should first delete the generated `app/tailwind.css`. Then, if you have a `styles/tailwind.css` file, you should move it to `app/tailwind.css`. ```sh rm app/tailwind.css mv styles/tailwind.css app/tailwind.css ``` Otherwise, if you don't already have an `app/tailwind.css` file, you should create one with the following contents: ```css @​tailwind base; @​tailwind components; @​tailwind utilities; ``` You should then remove `/app/tailwind.css` from your `.gitignore` file since it now contains source code rather than processed output. You can then update your `package.json` scripts to remove any usage of `tailwindcss` since Remix handles this automatically. For example, if you had followed the original setup guide: ```diff { // ... "scripts": { - "build": "run-s \"build:*\"", + "build": "remix build", - "build:css": "npm run generate:css -- --minify", - "build:remix": "remix build", - "dev": "run-p \"dev:*\"", + "dev": "remix dev", - "dev:css": "npm run generate:css -- --watch", - "dev:remix": "remix dev", - "generate:css": "npx tailwindcss -o ./app/tailwind.css", "start": "remix-serve build" } // ... } ``` - The Remix dev server spins up your app server as a managed subprocess. ([#​6133](https://redirect.github.com/remix-run/remix/pull/6133)) This keeps your development environment as close to production as possible. It also means that the Remix dev server is compatible with *any* app server. By default, the dev server will use the Remix App Server, but you opt to use your own app server by specifying the command to run it via the `-c`/`--command` flag: ```sh remix dev # uses `remix-serve ` as the app server remix dev -c "node ./server.js" # uses your custom app server at `./server.js` ``` The dev server will: - force `NODE_ENV=development` and warn you if it was previously set to something else - rebuild your app whenever your Remix app code changes - restart your app server whenever rebuilds succeed - handle live reload and HMR + Hot Data Revalidation ##### App server coordination In order to manage your app server, the dev server needs to be told what server build is currently being used by your app server. This works by having the app server send a "I'm ready!" message with the Remix server build hash as the payload. This is handled automatically in Remix App Server and is set up for you via calls to `broadcastDevReady` or `logDevReady` in the official Remix templates. If you are not using Remix App Server and your server doesn't call `broadcastDevReady`, you'll need to call it in your app server *after* it is up and running. For example, in an Express server: ```js // server.js // import { broadcastDevReady } from "@​remix-run/node"; // Path to Remix's server build directory ('build/' by default) const BUILD_DIR = path.join(process.cwd(), "build"); // app.listen(3000, () => { const build = require(BUILD_DIR); console.log("Ready: http://localhost:" + port); // in development, call `broadcastDevReady` _after_ your server is up and running if (process.env.NODE_ENV === "development") { broadcastDevReady(build); } }); ``` ##### Options Options priority order is: 1. flags, 2. config, 3. defaults. | Option | flag | config | default | | -------------- | ------------------ | ---------------- | --------------------------------- | | Command | `-c` / `--command` | `command` | `remix-serve ` | | HTTP(S) scheme | `--http-scheme` | `httpScheme` | `http` | | HTTP(S) host | `--http-host` | `httpHost` | `localhost` | | HTTP(S) port | `--http-port` | `httpPort` | Dynamically chosen open port | | Websocket port | `--websocket-port` | `websocketPort` | Dynamically chosen open port | | No restart | `--no-restart` | `restart: false` | `restart: true` | 🚨 The `--http-*` flags are only used for internal dev server <-> app server communication. Your app will run on your app server's normal URL. To set `unstable_dev` configuration, replace `unstable_dev: true` with `unstable_dev: { }`. For example, to set the HTTP(S) port statically: ```js // remix.config.js module.exports = { future: { unstable_dev: { httpPort: 8001, }, }, }; ``` ##### SSL and custom hosts You should only need to use the `--http-*` flags and `--websocket-port` flag if you need fine-grain control of what scheme/host/port for the dev server. If you are setting up SSL or Docker networking, these are the flags you'll want to use. 🚨 Remix **will not** set up SSL and custom host for you. The `--http-scheme` and `--http-host` flag are for you to tell Remix how you've set things up. It is your task to set up SSL certificates and host files if you want those features. ##### `--no-restart` and `require` cache purging If you want to manage server changes yourself, you can use the `--no-restart` flag to tell the dev server to refrain from restarting your app server when builds succeed: ```sh remix dev -c "node ./server.js" --no-restart ``` For example, you could purge the `require` cache of your app server to keep it running while picking up server changes. If you do so, you should watch the server build path (`build/` by default) for changes and only purge the `require` cache when changes are detected. 🚨 If you use `--no-restart`, it is your responsibility to call `broadcastDevReady` when your app server has picked up server changes. For example, with `chokidar`: ```js // server.dev.js const BUILD_PATH = path.resolve(__dirname, "build"); const watcher = chokidar.watch(BUILD_PATH); watcher.on("change", () => { // 1. purge require cache purgeRequireCache(); // 2. load updated server build const build = require(BUILD_PATH); // 3. tell dev server that this app server is now ready broadcastDevReady(build); }); ``` ##### Patch Changes - Fix absolute paths in CSS `url()` rules when using CSS Modules, Vanilla Extract and CSS side-effect imports ([#​5788](https://redirect.github.com/remix-run/remix/pull/5788)) - look for [@​remix-run/serve](https://redirect.github.com/remix-run/serve) in `devDependencies` when running remix dev ([#​6228](https://redirect.github.com/remix-run/remix/pull/6228)) - add warning for v2 "cjs"->"esm" `serverModuleFormat` default change ([#​6154](https://redirect.github.com/remix-run/remix/pull/6154)) - write mjs server output files ([#​6225](https://redirect.github.com/remix-run/remix/pull/6225)) - fix(react,dev): dev chunking and refresh race condition ([#​6201](https://redirect.github.com/remix-run/remix/pull/6201)) - Use correct require context in `bareImports` plugin. ([#​6181](https://redirect.github.com/remix-run/remix/pull/6181)) - use minimatch for regex instead of glob-to-regexp ([#​6017](https://redirect.github.com/remix-run/remix/pull/6017)) - add `logDevReady` as replacement for platforms that can't initialize async I/O outside of the request response lifecycle. ([#​6204](https://redirect.github.com/remix-run/remix/pull/6204)) - Use the "automatic" JSX runtime when processing MDX files. ([#​6098](https://redirect.github.com/remix-run/remix/pull/6098)) - forcibly kill app server during dev ([#​6197](https://redirect.github.com/remix-run/remix/pull/6197)) - show first compilation error instead of cancelation errors ([#​6202](https://redirect.github.com/remix-run/remix/pull/6202)) - Resolve imports from route modules across the graph back to the virtual module created by the v2 routes plugin. This fixes issues where we would duplicate portions of route modules that were imported. ([#​6098](https://redirect.github.com/remix-run/remix/pull/6098)) - Updated dependencies: - `@remix-run/server-runtime@1.16.0` ### [`v1.15.0`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-dev/CHANGELOG.md#1150) [Compare Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/dev@1.14.3...@remix-run/dev@1.15.0) ##### Minor Changes - Added deprecation warning for `v2_normalizeFormMethod` ([#​5863](https://redirect.github.com/remix-run/remix/pull/5863)) - Added a new `future.v2_normalizeFormMethod` flag to normalize the exposed `useNavigation().formMethod` as an uppercase HTTP method to align with the previous `useTransition` behavior as well as the `fetch()` behavior of normalizing to uppercase HTTP methods. ([#​5815](https://redirect.github.com/remix-run/remix/pull/5815)) - When `future.v2_normalizeFormMethod === false`, - `useNavigation().formMethod` is lowercase - `useFetcher().formMethod` is uppercase - When `future.v2_normalizeFormMethod === true`: - `useNavigation().formMethod` is uppercase - `useFetcher().formMethod` is uppercase - Added deprecation warning for `browserBuildDirectory` in `remix.config` ([#​5702](https://redirect.github.com/remix-run/remix/pull/5702)) - Added deprecation warning for `CatchBoundary` in favor of `future.v2_errorBoundary` ([#​5718](https://redirect.github.com/remix-run/remix/pull/5718)) - Added experimental support for Vanilla Extract caching, which can be enabled by setting `future.unstable_vanillaExtract: { cache: true }` in `remix.config`. This is considered experimental due to the use of a brand new Vanilla Extract compiler under the hood. In order to use this feature, you must be using at least `v1.10.0` of `@vanilla-extract/css`. ([#​5735](https://redirect.github.com/remix-run/remix/pull/5735)) - Added deprecation warning for `serverBuildDirectory` in `remix.config` ([#​5704](https://redirect.github.com/remix-run/remix/pull/5704)) ##### Patch Changes - Fixed issue to ensure changes to CSS inserted via `@remix-run/css-bundle` are picked up during HMR ([#​5823](https://redirect.github.com/remix-run/remix/pull/5823)) - We now use `path.resolve` when re-exporting `entry.client` ([#​5707](https://redirect.github.com/remix-run/remix/pull/5707)) - Added support for `.mjs` and `.cjs` extensions when detecting CSS side-effect imports ([#​5564](https://redirect.github.com/remix-run/remix/pull/5564)) - Fixed resolution issues for pnpm users installing `react-refresh` ([#​5637](https://redirect.github.com/remix-run/remix/pull/5637)) - Added deprecation warning for `future.v2_meta` ([#​5878](https://redirect.github.com/remix-run/remix/pull/5878)) - Added optional entry file support for React 17 ([#​5681](https://redirect.github.com/remix-run/remix/pull/5681)) - Updated dependencies: - `@remix-run/server-runtime@1.15.0` ### [`v1.14.3`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-dev/CHANGELOG.md#1143) [Compare Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/dev@1.14.2...@remix-run/dev@1.14.3) ##### Patch Changes - dev server is resilient to build failures ([#​5795](https://redirect.github.com/remix-run/remix/pull/5795)) - Updated dependencies: - `@remix-run/server-runtime@1.14.3` ### [`v1.14.2`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-dev/CHANGELOG.md#1142) [Compare Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/dev@1.14.1...@remix-run/dev@1.14.2) ##### Patch Changes - remove premature deprecation warnings ([#​5790](https://redirect.github.com/remix-run/remix/pull/5790)) - Updated dependencies: - `@remix-run/server-runtime@1.14.2` ### [`v1.14.1`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-dev/CHANGELOG.md#1141) [Compare Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/dev@1.14.0...@remix-run/dev@1.14.1) ##### Patch Changes - Add types for importing `*.ico` files ([#​5430](https://redirect.github.com/remix-run/remix/pull/5430)) - Allow `moduleResolution: "bundler"` in tsconfig.json ([#​5576](https://redirect.github.com/remix-run/remix/pull/5576)) - Fix issue with x-route imports creating multiple entries in the module graph ([#​5721](https://redirect.github.com/remix-run/remix/pull/5721)) - Add `serverBuildTarget` deprecation warning ([#​5624](https://redirect.github.com/remix-run/remix/pull/5624)) - Updated dependencies: - `@remix-run/server-runtime@1.14.1` ### [`v1.14.0`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-dev/CHANGELOG.md#1140) [Compare Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/dev@1.13.0...@remix-run/dev@1.14.0) ##### Minor Changes - Hot Module Replacement and Hot Data Revalidation ([#​5259](https://redirect.github.com/remix-run/remix/pull/5259)) - Requires `unstable_dev` future flag to be enabled - HMR provided through React Refresh - Features: - HMR for component and style changes - HDR when loaders for current route change - Known limitations for MVP: - Only implemented for React via React Refresh - No `import.meta.hot` API exposed yet - Revalidates *all* loaders on route when loader changes are detected - Loader changes do not account for imported dependencies changing - Make `entry.client` and `entry.server` files optional ([#​4600](https://redirect.github.com/remix-run/remix/pull/4600)) - we'll use a bundled version of each unless you provide your own ##### Patch Changes - Fixes flat route inconsistencies where `route.{ext}` wasn't always being treated like `index.{ext}` when used in a folder ([#​5459](https://redirect.github.com/remix-run/remix/pull/5459)) - Route conflict no longer throw errors and instead display a helpful warning that we're using the first one we found. ```log ⚠️ Route Path Collision: "/dashboard" The following routes all define the same URL, only the first one will be used 🟢️️ routes/dashboard/route.tsx ⭕️️ routes/dashboard.tsx ``` ```log ⚠️ Route Path Collision: "/" The following routes all define the same URL, only the first one will be used 🟢️️ routes/_landing._index.tsx ⭕️️ routes/_dashboard._index.tsx ⭕️ routes/_index.tsx ``` - Log errors thrown during initial build in development. ([#​5441](https://redirect.github.com/remix-run/remix/pull/5441)) - Sync `FutureConfig` interface between packages ([#​5398](https://redirect.github.com/remix-run/remix/pull/5398)) - Add file loader for importing `.csv` files ([#​3920](https://redirect.github.com/remix-run/remix/pull/3920)) - Updated dependencies: - `@remix-run/server-runtime@1.14.0` ### [`v1.13.0`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-dev/CHANGELOG.md#1130) [Compare Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/dev@1.12.0...@remix-run/dev@1.13.0) ##### Minor Changes - We are deprecating `serverBuildTarget` in `remix.config`. See the [release notes for v1.13.0](https://redirect.github.com/remix-run/remix/releases/tag/remix%401.13.0) for more information. ([#​5354](https://redirect.github.com/remix-run/remix/pull/5354)) - Add built-in support for PostCSS via the `future.unstable_postcss` feature flag ([#​5229](https://redirect.github.com/remix-run/remix/pull/5229)) - Add built-in support for Tailwind via the `future.unstable_tailwind` feature flag ([#​5229](https://redirect.github.com/remix-run/remix/pull/5229)) ##### Patch Changes - Mark Vanilla Extract files as side effects to ensure that files only containing global styles aren't tree-shaken ([#​5246](https://redirect.github.com/remix-run/remix/pull/5246)) - Support decorators in files using CSS side-effect imports ([#​5305](https://redirect.github.com/remix-run/remix/pull/5305)) - We made several Flat route fixes and enhancements. See the [release notes for v1.13.0](https://redirect.github.com/remix-run/remix/releases/tag/remix%401.13.0) for more information. ([#​5228](https://redirect.github.com/remix-run/remix/pull/5228)) - Updated dependencies: - `@remix-run/server-runtime@1.13.0` ### [`v1.12.0`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-dev/CHANGELOG.md#1120) [Compare Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/dev@1.11.1...@remix-run/dev@1.12.0) ##### Minor Changes - Added a new development server available in the Remix config under the `unstable_dev` flag. [See the release notes](https://redirect.github.com/remix-run/remix/releases/tag/remix%401.12.0) for a full description. ([#​5133](https://redirect.github.com/remix-run/remix/pull/5133)) ##### Patch Changes - Fixed issues with `v2_routeConvention` on Windows so that new and renamed files are properly included ([#​5266](https://redirect.github.com/remix-run/remix/pull/5266)) - Server build should not be removed in `remix watch` and `remix dev` ([#​5228](https://redirect.github.com/remix-run/remix/pull/5228)) - The dev server will now clean up build directories whenever a rebuild starts ([#​5223](https://redirect.github.com/remix-run/remix/pull/5223)) - Updated dependencies: - `@remix-run/server-runtime@1.12.0` ### [`v1.11.1`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-dev/CHANGELOG.md#1111) [Compare Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/dev@1.11.0...@remix-run/dev@1.11.1) ##### Patch Changes - Fixed a bug with `v2_routeConvention` that prevented `index` modules from being recognized for route paths ([`195291a3d`](https://redirect.github.com/remix-run/remix/commit/195291a3d8c0e098931199bcc26277a45cee0eb9)) - Updated dependencies: - `@remix-run/server-runtime@1.11.1` ### [`v1.11.0`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-dev/CHANGELOG.md#1110) [Compare Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/dev@1.10.1...@remix-run/dev@1.11.0) ##### Minor Changes - Specify file loader for `.fbx`, `.glb`, `.gltf`, `.hdr`, and `.mov` files ([#​5030](https://redirect.github.com/remix-run/remix/pull/5030)) - Added support for [Vanilla Extract](https://vanilla-extract.style) via the `unstable_vanillaExtract` future flag. **IMPORTANT:** Features marked with `unstable` are … unstable. While we're confident in the use cases they solve, the API and implementation may change without a major version bump. ([#​5040](https://redirect.github.com/remix-run/remix/pull/5040)) - Add support for CSS side-effect imports via the `unstable_cssSideEffectImports` future flag. **IMPORTANT:** Features marked with `unstable` are … unstable. While we're confident in the use cases they solve, the API and implementation may change without a major version bump. ([#​4919](https://redirect.github.com/remix-run/remix/pull/4919)) - Add support for CSS Modules via the `unstable_cssModules` future flag. **IMPORTANT:** Features marked with `unstable` are … unstable. While we're confident in the use cases they solve, the API and implementation may change without a major version bump. ([#​4852](https://redirect.github.com/remix-run/remix/pull/4852)) ##### Patch Changes - Add new "flat" routing conventions. This convention will be the default in v2 but is available now under the `v2_routeConvention` future flag. ([#​4880](https://redirect.github.com/remix-run/remix/pull/4880)) - Added support for `handle` in MDX frontmatter ([#​4865](https://redirect.github.com/remix-run/remix/pull/4865)) - Updated dependencies: - `@remix-run/server-runtime@1.11.0` ### [`v1.10.1`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-dev/CHANGELOG.md#1101) [Compare Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/dev@1.10.0...@remix-run/dev@1.10.1) ##### Patch Changes - Update babel config to transpile down to node 14 ([#​5047](https://redirect.github.com/remix-run/remix/pull/5047)) - Updated dependencies: - `@remix-run/server-runtime@1.10.1` ### [`v1.10.0`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-dev/CHANGELOG.md#1100) [Compare Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/dev@1.9.0...@remix-run/dev@1.10.0) ##### Patch Changes - Fixed several issues with TypeScript to JavaScript conversion when running `create-remix` ([#​4891](https://redirect.github.com/remix-run/remix/pull/4891)) - Resolve asset entry full path to support monorepo import of styles ([#​4855](https://redirect.github.com/remix-run/remix/pull/4855)) - Updated dependencies: - `@remix-run/server-runtime@1.10.0` ### [`v1.9.0`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-dev/CHANGELOG.md#190) [Compare Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/dev@1.8.2...@remix-run/dev@1.9.0) ##### Minor Changes - Allow defining multiple routes for the same route module file ([#​3970](https://redirect.github.com/remix-run/remix/pull/3970)) - Added support and conventions for optional route segments ([#​4706](https://redirect.github.com/remix-run/remix/pull/4706)) ##### Patch Changes - The Remix compiler now supports new Typescript 4.9 syntax (like the `satisfies` keyword) ([#​4754](https://redirect.github.com/remix-run/remix/pull/4754)) - Optimize `parentRouteId` lookup in `defineConventionalRoutes`. ([#​4800](https://redirect.github.com/remix-run/remix/pull/4800)) - Fixed a bug in `.ts` -> `.js` conversion on Windows by using a relative unix-style path ([#​4718](https://redirect.github.com/remix-run/remix/pull/4718)) - Updated dependencies: - `@remix-run/server-runtime@1.9.0` ### [`v1.8.2`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-dev/CHANGELOG.md#182) [Compare Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/dev@1.8.1...@remix-run/dev@1.8.2) ##### Patch Changes - Updated dependencies: - `@remix-run/server-runtime@1.8.2` - `@remix-run/serve@1.8.2` ### [`v1.8.1`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-dev/CHANGELOG.md#181) [Compare Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/dev@1.8.0...@remix-run/dev@1.8.1) ##### Patch Changes - Added a missing type definition for the Remix config `future` option to the `@remix-run/dev/server-build` virtual module ([#​4771](https://redirect.github.com/remix-run/remix/pull/4771)) - Updated dependencies: - `@remix-run/serve@1.8.1` - `@remix-run/server-runtime@1.8.1` ### [`v1.8.0`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-dev/CHANGELOG.md#180) [Compare Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/dev@1.7.6...@remix-run/dev@1.8.0) ##### Minor Changes - Added support for a new route `meta` API to handle arrays of tags instead of an object. For details, check out the [RFC](https://redirect.github.com/remix-run/remix/discussions/4462). ([#​4610](https://redirect.github.com/remix-run/remix/pull/4610)) ##### Patch Changes - Importing functions and types from the `remix` package is deprecated, and all exported modules will be removed in the next major release. For more details,[see the release notes for 1.4.0](https://redirect.github.com/remix-run/remix/releases/tag/v1.4.0) where these changes were first announced. ([#​4661](https://redirect.github.com/remix-run/remix/pull/4661)) - Updated dependencies: - `@remix-run/server-runtime@1.8.0` - `@remix-run/serve@1.8.0` ### [`v1.7.6`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-dev/CHANGELOG.md#176) [Compare Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/dev@1.7.5...@remix-run/dev@1.7.6) ##### Patch Changes - Updated dependencies: - `@remix-run/serve@1.7.6` - `@remix-run/server-runtime@1.7.6` ##### Patch Changes - Updated dependencies: - `@remix-run/serve@1.7.6-pre.0` - `@remix-run/server-runtime@1.7.6-pre.0` ### [`v1.7.5`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-dev/CHANGELOG.md#175) [Compare Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/dev@1.7.4...@remix-run/dev@1.7.5) ##### Patch Changes - Updated dependencies: - `@remix-run/serve@1.7.5` - `@remix-run/server-runtime@1.7.5` ### [`v1.7.4`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-dev/CHANGELOG.md#174) [Compare Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/dev@1.7.3...@remix-run/dev@1.7.4) ##### Patch Changes - Updated dependencies: - `@remix-run/server-runtime@1.7.4` - `@remix-run/serve@1.7.4` ### [`v1.7.3`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-dev/CHANGELOG.md#173) [Compare Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/dev@1.7.2...@remix-run/dev@1.7.3) ##### Patch Changes - Update `create-remix` to use the new examples repository when using `--template example/` ([#​4208](https://redirect.github.com/remix-run/remix/pull/4208)) - Add support for setting `moduleResolution` to `node`, `node16` or `nodenext` in `tsconfig.json`. ([#​4034](https://redirect.github.com/remix-run/remix/pull/4034)) - Add resources imported only by resource routes to `assetsBuildDirectory` ([#​3841](https://redirect.github.com/remix-run/remix/pull/3841)) - Ensure that any assets referenced in CSS files are hashed and copied to the `assetsBuildDirectory`. ([#​4130](https://redirect.github.com/remix-run/remix/pull/4130)) - Updated dependencies: - `@remix-run/serve@1.7.3` - `@remix-run/server-runtime@1.7.3` ### [`v1.7.2`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-dev/CHANGELOG.md#172) [Compare Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/dev@1.7.1...@remix-run/dev@1.7.2) ##### Patch Changes - Updated dependencies: - `@remix-run/server-runtime@1.7.2` - `@remix-run/serve@1.7.2` ### [`v1.7.1`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-dev/CHANGELOG.md#171) [Compare Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/dev@1.7.0...@remix-run/dev@1.7.1) ##### Patch Changes - Updated dependencies: - `@remix-run/server-runtime@1.7.1` - `@remix-run/serve@1.7.1` ### [`v1.7.0`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-dev/CHANGELOG.md#170) [Compare Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/dev@1.6.8...@remix-run/dev@1.7.0) ##### Minor Changes - Added support for importing `.gql` and `.graphql` files as plain text ([#​3923](https://redirect.github.com/remix-run/remix/pull/3923)) - Added support for importing `.zip` and `.avif` files as resource URLs ([#​3985](https://redirect.github.com/remix-run/remix/pull/3985)) ##### Patch Changes - Removed our compiler's React shim in favor of esbuild's new automatic JSX transform ([#​3860](https://redirect.github.com/remix-run/remix/pull/3860)) - Updated dependencies: - `@remix-run/server-runtime@1.7.0` - `@remix-run/serve@1.7.0` ### [`v1.6.8`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-dev/CHANGELOG.md#168) [Compare Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/dev@1.6.7...@remix-run/dev@1.6.8) ##### Patch Changes - Added support for `.mjs` and `.cjs` file extensions for `remix.config` ([#​3675](https://redirect.github.com/remix-run/remix/pull/3675)) - Added support for importing `.sql` files as text content ([#​3190](https://redirect.github.com/remix-run/remix/pull/3190)) - Updated the compiler to make MDX builds deterministic (and a little faster!) ([#​3966](https://redirect.github.com/remix-run/remix/pull/3966)) - Updated dependencies: - `@remix-run/server-runtime@1.6.8` - `@remix-run/serve@1.6.8` ### [`v1.6.7`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-dev/CHANGELOG.md#167) [Compare Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/dev@1.6.6...@remix-run/dev@1.6.7) ##### Patch Changes - Remove logical nullish assignment, which is incompatible with Node v14. ([#​3880](https://redirect.github.com/remix-run/remix/pull/3880)) - Don't show ESM warnings when consumed via dynamic import. ([#​3872](https://redirect.github.com/remix-run/remix/pull/3872)) - Updated dependencies: - `@remix-run/serve@1.6.7` - `@remix-run/server-runtime@1.6.7` ### [`v1.6.6`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-dev/CHANGELOG.md#166) [Compare Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/dev@1.6.5...@remix-run/dev@1.6.6) ##### Patch Changes - Write server build output files so that only assets imported from resource routes are written to disk ([#​3817](https://redirect.github.com/remix-run/remix/pull/3817)) - Add support for exporting links in `.mdx` files ([#​3801](https://redirect.github.com/remix-run/remix/pull/3801)) - Ensure that build hashing is deterministic ([#​2027](https://redirect.github.com/remix-run/remix/pull/2027)) - Fix types for `@remix-run/dev/server-build` virtual module ([#​3743](https://redirect.github.com/remix-run/remix/pull/3743)) - Updated dependencies: - `@remix-run/serve@1.6.6` - `@remix-run/server-runtime@1.6.6`
remix-run/remix (@​remix-run/eslint-config) ### [`v1.19.3`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-eslint-config/CHANGELOG.md#1193) [Compare Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/eslint-config@1.19.2...@remix-run/eslint-config@1.19.3) No significant changes to this package were made in this release. [See the releases page on GitHub](https://redirect.github.com/remix-run/remix/releases/tag/remix%401.19.3) for an overview of all changes in v1.19.3. ### [`v1.19.2`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-eslint-config/CHANGELOG.md#1192) [Compare Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/eslint-config@1.19.1...@remix-run/eslint-config@1.19.2) No significant changes to this package were made in this release. [See the releases page on GitHub](https://redirect.github.com/remix-run/remix/releases/tag/remix%401.19.2) for an overview of all changes in v1.19.2. ### [`v1.19.1`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-eslint-config/CHANGELOG.md#1191) [Compare Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/eslint-config@1.19.0...@remix-run/eslint-config@1.19.1) No significant changes to this package were made in this release. [See the releases page on GitHub](https://redirect.github.com/remix-run/remix/releases/tag/remix%401.19.1) for an overview of all changes in v1.19.1. ### [`v1.19.0`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-eslint-config/CHANGELOG.md#1190) [Compare Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/eslint-config@1.18.1...@remix-run/eslint-config@1.19.0) No significant changes to this package were made in this release. [See the releases page on GitHub](https://redirect.github.com/remix-run/remix/releases/tag/remix%401.19.0) for an overview of all changes in v1.19.0. ### [`v1.18.1`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-eslint-config/CHANGELOG.md#1181) [Compare Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/eslint-config@1.18.0...@remix-run/eslint-config@1.18.1) No significant changes to this package were made in this release. [See the releases page on GitHub](https://redirect.github.com/remix-run/remix/releases/tag/remix%401.18.1) for an overview of all changes in v1.18.1. ### [`v1.18.0`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-eslint-config/CHANGELOG.md#1180) [Compare Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/eslint-config@1.17.1...@remix-run/eslint-config@1.18.0) No significant changes to this package were made in this release. [See the releases page on GitHub](https://redirect.github.com/remix-run/remix/releases/tag/remix%401.18.0) for an overview of all changes in v1.18.0. ### [`v1.17.1`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-eslint-config/CHANGELOG.md#1171) [Compare Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/eslint-config@1.17.0...@remix-run/eslint-config@1.17.1) No significant changes to this package were made in this release. [See the releases page on GitHub](https://redirect.github.com/remix-run/remix/releases/tag/remix%401.17.1) for an overview of all changes in v1.17.1. ### [`v1.17.0`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-eslint-config/CHANGELOG.md#1170) [Compare Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/eslint-config@1.16.1...@remix-run/eslint-config@1.17.0) ##### Patch Changes - Add `HeadersArgs` type to be consistent with loaders/actions/meta and allows for using a `function` declaration in addition to an arrow function expression ([#​6247](https://redirect.github.com/remix-run/remix/pull/6247)) ```tsx import type { HeadersArgs } from "@​remix-run/node"; // or cloudflare/deno export function headers({ loaderHeaders }: HeadersArgs) { return { "x-my-custom-thing": loaderHeaders.get("x-my-custom-thing") || "fallback", }; } ``` ### [`v1.16.1`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-eslint-config/CHANGELOG.md#1161) [Compare Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/eslint-config@1.16.0...@remix-run/eslint-config@1.16.1) ##### Patch Changes - Don't require display name in root module ([#​5450](https://redirect.github.com/remix-run/remix/pull/5450)) - Update minimum version of Babel dependencies to avoid errors parsing decorators ([#​6390](https://redirect.github.com/remix-run/remix/pull/6390)) ### [`v1.16.0`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-eslint-config/CHANGELOG.md#1160) [Compare Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/eslint-config@1.15.0...@remix-run/eslint-config@1.16.0) ##### Minor Changes - add deprecation warning to `@remix-run/eslint-config/jest` ESLint config ([#​5697](https://redirect.github.com/remix-run/remix/pull/5697)) ### [`v1.15.0`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-eslint-config/CHANGELOG.md#1150) [Compare Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/eslint-config@1.14.3...@remix-run/eslint-config@1.15.0) ##### Patch Changes - Updated TypeScript `peerDependency` to allow for `^5.0.0` ([`6b6ee66a2`](https://redirect.github.com/remix-run/remix/commit/6b6ee66a2fef1a7b00ce4c95abed144ab80017e3)) ### [`v1.14.3`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-eslint-config/CHANGELOG.md#1143) [Compare Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/eslint-config@1.14.2...@remix-run/eslint-config@1.14.3) No significant changes to this package were made in this release. [See the releases page on GitHub](https://redirect.github.com/remix-run/remix/releases/tag/remix%401.14.2) for an overview of all changes in v1.14.3. ### [`v1.14.2`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-eslint-config/CHANGELOG.md#1142) [Compare Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/eslint-config@1.14.1...@remix-run/eslint-config@1.14.2) No significant changes to this package were made in this release. [See the releases page on GitHub](https://redirect.github.com/remix-run/remix/releases/tag/remix%401.14.2) for an overview of all changes in v1.14.2. ### [`v1.14.1`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-eslint-config/CHANGELOG.md#1141) [Compare Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/eslint-config@1.14.0...@remix-run/eslint-config@1.14.1) No significant changes to this package were made in this release. [See the releases page on GitHub](https://redirect.github.com/remix-run/remix/releases/tag/remix%401.14.1) for an overview of all changes in v1.14.1. ### [`v1.14.0`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-eslint-config/CHANGELOG.md#1140) [Compare Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/eslint-config@1.13.0...@remix-run/eslint-config@1.14.0) No significant changes to this package were made in this release. [See the releases page on GitHub](https://redirect.github.com/remix-run/remix/releases/tag/remix%401.14.0) for an overview of all changes in v1.14.0. ### [`v1.13.0`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-eslint-config/CHANGELOG.md#1130) [Compare Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/eslint-config@1.12.0...@remix-run/eslint-config@1.13.0) No significant changes to this package were made in this release. [See the releases page on GitHub](https://redirect.github.com/remix-run/remix/releases/tag/remix%401.13.0) for an overview of all changes in v1.13.0. ### [`v1.12.0`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-eslint-config/CHANGELOG.md#1120) [Compare Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/eslint-config@1.11.1...@remix-run/eslint-config@1.12.0) No significant changes to this package were made in this release. [See the releases page on GitHub](https://redirect.github.com/remix-run/remix/releases/tag/remix%401.12.0) for an overview of all changes in v1.12.0. ### [`v1.11.1`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-eslint-config/CHANGELOG.md#1111) [Compare Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/eslint-config@1.11.0...@remix-run/eslint-config@1.11.1) No significant changes to this package were made in this release. [See the releases page on GitHub](https://redirect.github.com/remix-run/remix/releases/tag/remix%401.11.1) for an overview of all changes in v1.11.1. ### [`v1.11.0`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-eslint-config/CHANGELOG.md#1110) [Compare Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/eslint-config@1.10.1...@remix-run/eslint-config@1.11.0) No significant changes to this package were made in this release. [See the releases page on GitHub](https://redirect.github.com/remix-run/remix/releases/tag/remix%401.11.0) for an overview of all changes in v1.11.0. ### [`v1.10.1`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-eslint-config/CHANGELOG.md#1101) [Compare Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/eslint-config@1.10.0...@remix-run/eslint-config@1.10.1) No significant changes to this package were made in this release. [See the releases page on GitHub](https://redirect.github.com/remix-run/remix/releases/tag/remix%401.10.1) for an overview of all changes in v1.10.1. ### [`v1.10.0`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-eslint-config/CHANGELOG.md#1100) [Compare Source](https://redirect.github.com/remix-

Configuration

📅 Schedule: Branch creation - "after 4pm on friday,before 9am on monday,every weekend" in timezone Europe/Paris, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • [ ] If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.