Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Update version for release (pre) #6828

Merged
merged 1 commit into from
Jul 13, 2023

Conversation

github-actions[bot]
Copy link
Contributor

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to release-next, this PR will be updated.

⚠️⚠️⚠️⚠️⚠️⚠️

release-next is currently in pre mode so this branch has prereleases rather than normal releases. If you want to exit prereleases, run changeset pre exit on release-next.

⚠️⚠️⚠️⚠️⚠️⚠️

Releases

@remix-run/dev@1.19.0-pre.0

Minor Changes

  • improved networking options for v2_dev (#6724)

    deprecate the --scheme and --host options and replace them with the REMIX_DEV_ORIGIN environment variable

  • Output esbuild metafiles for bundle analysis (#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 https://esbuild.github.io/analyze/ for analysis.

  • Add serverNodeBuiltinsPolyfill config option. You can now disable polyfills of Node.js built-in modules for non-Node.js server platforms by setting serverNodeBuiltinsPolyfill: false in remix.config.js. You can also provide a list of server polyfills, e.g. serverNodeBuiltinsPolyfill: ["crypto"]. (#6814)

Patch Changes

  • Exclude unimplemented polyfills from server build for non-Node.js server platforms (#6814)

  • ignore missing react-dom/client for react 17 (#6725)

  • Warn if not using v2_dev (#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)

  • fix sourcemaps for v2_dev (#6762)

  • Do not clear screen when dev server starts (#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-pre.0
    • @remix-run/serve@1.19.0-pre.0

@remix-run/react@1.19.0-pre.0

Minor Changes

  • improved networking options for v2_dev (#6724)

    deprecate the --scheme and --host options and replace them with the REMIX_DEV_ORIGIN environment variable

Patch Changes

  • Narrowed the type of fetcher.formEncType to use FormEncType from react-router-dom instead of string (#6810)
  • Bump react-router-dom@6.14.2-pre.0 (#6812)
  • Deferred promises that return undefined/void now surface a serialization error. (#6793)
  • Properly handle ?_data HTTP/Network errors that don't reach the Remix server and ensure they bubble to the ErrorBoundary (#6783)
  • Support proper hydration of Error subclasses such as ReferenceError/TypeError in development mode (#6675)
  • fix router race condition for hmr (#6767)
  • Avoid re-prefetching stylesheets for active routes during a revalidation (#6679)
  • Add generic type for useRouteLoaderData() (#5157)

@remix-run/server-runtime@1.19.0-pre.0

Minor Changes

  • improved networking options for v2_dev (#6724)

    deprecate the --scheme and --host options and replace them with the REMIX_DEV_ORIGIN environment variable

Patch Changes

  • Bump react-router-dom@6.14.2-pre.0 (#6812)
  • Properly handle ?_data HTTP/Network errors that don't reach the Remix server and ensure they bubble to the ErrorBoundary (#6783)
  • Support proper hydration of Error subclasses such as ReferenceError/TypeError in development mode (#6675)
  • Properly return a 404 for a ?_data request that doesn't match routes (#6820)

create-remix@1.19.0-pre.0

Patch Changes

  • Updated dependencies:
    • @remix-run/dev@1.19.0-pre.0

@remix-run/architect@1.19.0-pre.0

Patch Changes

  • Updated dependencies:
    • @remix-run/node@1.19.0-pre.0

@remix-run/cloudflare@1.19.0-pre.0

Patch Changes

  • Updated dependencies:
    • @remix-run/server-runtime@1.19.0-pre.0

@remix-run/cloudflare-pages@1.19.0-pre.0

Patch Changes

  • Updated dependencies:
    • @remix-run/cloudflare@1.19.0-pre.0

@remix-run/cloudflare-workers@1.19.0-pre.0

Patch Changes

  • Updated dependencies:
    • @remix-run/cloudflare@1.19.0-pre.0

@remix-run/deno@1.19.0-pre.0

Patch Changes

  • Updated dependencies:
    • @remix-run/server-runtime@1.19.0-pre.0

@remix-run/express@1.19.0-pre.0

Patch Changes

  • Updated dependencies:
    • @remix-run/node@1.19.0-pre.0

@remix-run/netlify@1.19.0-pre.0

Patch Changes

  • Updated dependencies:
    • @remix-run/node@1.19.0-pre.0

@remix-run/node@1.19.0-pre.0

Patch Changes

    • Upgrade to @remix-run/web-fetch@4.3.5. Submitted empty file inputs are now correctly parsed out as empty File instances instead of being surfaced as an empty string via request.formData() (#6816)
  • Updated dependencies:
    • @remix-run/server-runtime@1.19.0-pre.0

@remix-run/serve@1.19.0-pre.0

Patch Changes

  • Updated dependencies:
    • @remix-run/node@1.19.0-pre.0
    • @remix-run/express@1.19.0-pre.0

@remix-run/testing@1.19.0-pre.0

Patch Changes

  • Bump react-router-dom@6.14.2-pre.0 (#6812)
  • Updated dependencies:
    • @remix-run/react@1.19.0-pre.0
    • @remix-run/node@1.19.0-pre.0

@remix-run/vercel@1.19.0-pre.0

Patch Changes

  • Updated dependencies:
    • @remix-run/node@1.19.0-pre.0

remix@1.19.0-pre.0

remix

See the CHANGELOG.md in individual Remix packages for all changes.

@remix-run/css-bundle@1.19.0-pre.0

@remix-run/eslint-config@1.19.0-pre.0

@brophdawg11 brophdawg11 merged commit 2494d3d into release-next Jul 13, 2023
@brophdawg11 brophdawg11 deleted the changeset-release/release-next branch July 13, 2023 16:23
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant