storyblok / remix-ultimate-tutorial

7 stars 3 forks source link

chore(deps-dev): bump @remix-run/dev from 2.3.1 to 2.7.1 #46

Closed dependabot[bot] closed 9 months ago

dependabot[bot] commented 9 months ago

Bumps @remix-run/dev from 2.3.1 to 2.7.1.

Release notes

Sourced from @​remix-run/dev's releases.

v2.7.1

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v271

v2.7.0

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v270

v2.6.0

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v260

v2.5.1

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v251

v2.5.0

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v250

v2.4.1

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v241

v2.4.0

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v240

Changelog

Sourced from @​remix-run/dev's changelog.

2.7.1

Patch Changes

  • Updated dependencies:
    • @remix-run/node@2.7.1
    • @remix-run/server-runtime@2.7.1

2.7.0

Minor Changes

  • Allow an optional Layout export from the root route (#8709)

  • Vite: Cloudflare Proxy as a Vite plugin (#8749)

    This is a breaking change for projects relying on Cloudflare support from the unstable Vite plugin

    The Cloudflare preset (unstable_cloudflarePreset) as been removed and replaced with a new Vite plugin:

     import {
        unstable_vitePlugin as remix,
    -   unstable_cloudflarePreset as cloudflare,
    +   cloudflareDevProxyVitePlugin as remixCloudflareDevProxy,
      } from "@remix-run/dev";
      import { defineConfig } from "vite";
    

    export default defineConfig({ plugins: [

    • remixCloudflareDevProxy(),
      
    • remix(),
      
    • remix({
      
    •   presets: [cloudflare()],
      
    • }),
      
      ],
    • ssr: {
    • resolve: {
      
    •   externalConditions: ["workerd", "worker"],
      
    • },
      
    • }, });

remixCloudflareDevProxy must come before the remix plugin so that it can override Vite's dev server middleware to be compatible with Cloudflare's proxied environment.

Because it is a Vite plugin, remixCloudflareDevProxy can set ssr.resolve.externalConditions to be workerd-compatible for you.

remixCloudflareDevProxy accepts a getLoadContext function that replaces the old getRemixDevLoadContext. If you were using a nightly version that required getBindingsProxy or getPlatformProxy, that is no longer required.

... (truncated)

Commits
  • 4df9d37 chore: Update version for release (#8820)
  • 149139d chore: Update version for release (#8809)
  • fe1ea8e chore: Update version for release (pre) (#8807)
  • c1a32c2 Always ignore route files starting with . (#8801)
  • 9cb876f chore: fix Windows path normalization in Vite (#8806)
  • 17a3cc2 chore: Update version for release (pre) (#8798)
  • 85d988f Vite: Pass remixUserConfig to preset config hook (#8797)
  • d16dce8 chore: Update version for release (pre) (#8775)
  • ca9c9f2 Vite: Move SSR-only CSS files to client build (#8796)
  • 9c45259 vite: fix server export dead-code elimination for routes outside of app dir (...
  • Additional commits viewable in compare view


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
dependabot[bot] commented 9 months ago

Superseded by #48.