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

build(deps): bump the remix-updates group with 6 updates #614

Merged
merged 1 commit into from
Apr 29, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 29, 2024

Bumps the remix-updates group with 6 updates:

Package From To
@remix-run/node 2.8.1 2.9.1
@remix-run/react 2.8.1 2.9.1
@remix-run/serve 2.8.1 2.9.1
@remix-run/server-runtime 2.8.1 2.9.1
@remix-run/dev 2.8.1 2.9.1
@remix-run/eslint-config 2.8.1 2.9.1

Updates @remix-run/node from 2.8.1 to 2.9.1

Release notes

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

v2.9.1

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

v2.9.0

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

Changelog

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

2.9.1

Patch Changes

2.9.0

Minor Changes

  • Use undici as our fetch polyfill going forward (#9106, #9111)
  • Put undici fetch polyfill behind a new installGlobals({ nativeFetch: true }) parameter (#9198)
    • remix-serve will default to using undici for the fetch polyfill if future._unstable_singleFetch is enabled because the single fetch implementation relies on the undici polyfill
      • Any users opting into Single Fetch and managing their own polfill will need to pass the flag to installGlobals on their own to avoid runtime errors with Single Fetch

Patch Changes

Commits

Updates @remix-run/react from 2.8.1 to 2.9.1

Release notes

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

v2.9.1

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

v2.9.0

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

Changelog

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

2.9.1

Patch Changes

2.9.0

Minor Changes

  • New future.unstable_singleFetch flag (#8773)

    • Naked objects returned from loaders/actions are no longer automatically converted to JSON responses. They'll be streamed as-is via turbo-stream so Date's will become Date through useLoaderData()
    • You can return naked objects with Promise's without needing to use defer() - including nested Promise's
      • If you need to return a custom status code or custom response headers, you can still use the defer utility
    • <RemixServer abortDelay> is no longer used. Instead, you should export const streamTimeout from entry.server.tsx and the remix server runtime will use that as the delay to abort the streamed response
      • If you export your own streamTimeout, you should decouple that from aborting the react renderToPipeableStream. You should always ensure that react is aborted afer the stream is aborted so that abort rejections can be flushed down
    • Actions no longer automatically revalidate on 4xx/5xx responses (via RR future.unstable_skipActionErrorRevalidation flag) - you can return a 2xx to opt-into revalidation or use shouldRevalidate
  • Opt-in types for single-fetch (#9272)

    • To opt-in to type inference for single-fetch, add ./node_modules/@remix-run/react/future/single-fetch.d.ts to include in your tsconfig.json

Patch Changes

Commits

Updates @remix-run/serve from 2.8.1 to 2.9.1

Release notes

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

v2.9.1

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

v2.9.0

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

Changelog

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

2.9.1

Patch Changes

2.9.0

Minor Changes

  • Put undici fetch polyfill behind a new installGlobals({ nativeFetch: true }) parameter (#9198)
    • remix-serve will default to using undici for the fetch polyfill if future.unstable_singleFetch is enabled because the single fetch implementation relies on the undici polyfill
    • Any users opting into Single Fetch and managing their own polyfill will need to pass the flag to installGlobals on their own to avoid runtime errors with Single Fetch

Patch Changes

Commits

Updates @remix-run/server-runtime from 2.8.1 to 2.9.1

Release notes

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

v2.9.1

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

v2.9.0

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

Changelog

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

2.9.1

No significant changes to this package were made in this release. See the repo CHANGELOG.md for an overview of all changes in v2.9.1.

2.9.0

Minor Changes

  • New future.unstable_singleFetch flag (#8773)
    • Naked objects returned from loaders/actions are no longer automatically converted to JSON responses. They'll be streamed as-is via turbo-stream so Date's will become Date through useLoaderData()
    • You can return naked objects with Promise's without needing to use defer() - including nested Promise's
      • If you need to return a custom status code or custom response headers, you can still use the defer utility
    • <RemixServer abortDelay> is no longer used. Instead, you should export const streamTimeout from entry.server.tsx and the remix server runtime will use that as the delay to abort the streamed response
      • If you export your own streamTimeout, you should decouple that from aborting the react renderToPipeableStream. You should always ensure that react is aborted afer the stream is aborted so that abort rejections can be flushed down
    • Actions no longer automatically revalidate on 4xx/5xx responses (via RR future.unstable_skipActionErrorRevalidation flag) - you can return a 2xx to opt-into revalidation or use shouldRevalidate
  • Add ResponseStub header interface for single fetch and deprecate the headers export (#9142)
    • The headers export is no longer used when single fetch is enabled
    • loader/action functions now receive a mutable response parameter
      • type ResponseStub = { status: numbers | undefined, headers: Headers }
    • To alter the status of a response, set the status field directly
      • response.status = 201
    • To set headers on the Response, you may use:
      • response.headers.set
      • response.headers.append
      • response.headers.delete
    • Each loader/actionreceives it's own unique response instance so you cannot see what other loader/action functions have set (which would be subject to race conditions)
    • If all status codes are unset or have values <200, the deepest status code will be used for the HTTP response
    • If any status codes are set to a value >=300, the highest >=300 value will be used for the HTTP Response
    • Remix tracks header operations and will replay them in order (action if present, then loaders top-down) after all handlers have completed on a fresh Headers instance that will be applied to the HTTP Response
      • headers.set on any child handler will overwrite values from parent handlers
      • headers.append can be used to set the same header from both a parent and child handler
      • headers.delete can be used to delete a value set by a parent handler, but not a value set from a child handler
    • Because single fetch supports naked object returns, and you no longer need to return a Response instance to set status/headers, the json/redirect/redirectDocument/defer utilities are considered deprecated when using Single Fetch
    • You may still continue returning normal Response instances and they'll apply status codes in the same way, and will apply all headers via headers.set - overwriting any same-named header values from parents
      • If you need to append, you will need to switch from returning a Response instance to using the new response parameter

Patch Changes

  • Handle net new redirects created by handleDataRequest (#9104)
Commits

Updates @remix-run/dev from 2.8.1 to 2.9.1

Release notes

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

v2.9.1

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

v2.9.0

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

Changelog

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

2.9.1

Patch Changes

  • Fix issue where consumers who had added Remix packages to Vite's ssr.noExternal option were being overridden by the Remix Vite plugin adding Remix packages to Vite's ssr.external option (#9301)
  • Updated dependencies:

2.9.0

Minor Changes

  • New future.unstable_singleFetch flag (#8773)

    • Naked objects returned from loaders/actions are no longer automatically converted to JSON responses. They'll be streamed as-is via turbo-stream so Date's will become Date through useLoaderData()
    • You can return naked objects with Promise's without needing to use defer() - including nested Promise's
      • If you need to return a custom status code or custom response headers, you can still use the defer utility
    • <RemixServer abortDelay> is no longer used. Instead, you should export const streamTimeout from entry.server.tsx and the remix server runtime will use that as the delay to abort the streamed response
      • If you export your own streamTimeout, you should decouple that from aborting the react renderToPipeableStream. You should always ensure that react is aborted afer the stream is aborted so that abort rejections can be flushed down
    • Actions no longer automatically revalidate on 4xx/5xx responses (via RR future.unstable_skipActionErrorRevalidation flag) - you can return a 2xx to opt-into revalidation or use shouldRevalidate

Patch Changes

  • Improve getDependenciesToBundle resolution in monorepos (#8848)
  • Fix SPA mode when single fetch is enabled by using streaming entry.server (#9063)
  • Vite: added sourcemap support for transformed routes (#8970)
  • Update links printed to the console by the Remix CLI/Dev Server to point to updated docs locations (#9176)
  • Updated dependencies:
Commits

Updates @remix-run/eslint-config from 2.8.1 to 2.9.1

Release notes

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

v2.9.1

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

v2.9.0

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

Changelog

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

2.9.1

No significant changes to this package were made in this release. See the repo CHANGELOG.md for an overview of all changes in v2.9.1.

2.9.0

No significant changes to this package were made in this release. See the repo CHANGELOG.md for an overview of all changes in v2.9.0.

Commits

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 <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the remix-updates group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [@remix-run/node](https://github.com/remix-run/remix/tree/HEAD/packages/remix-node) | `2.8.1` | `2.9.1` |
| [@remix-run/react](https://github.com/remix-run/remix/tree/HEAD/packages/remix-react) | `2.8.1` | `2.9.1` |
| [@remix-run/serve](https://github.com/remix-run/remix/tree/HEAD/packages/remix-serve) | `2.8.1` | `2.9.1` |
| [@remix-run/server-runtime](https://github.com/remix-run/remix/tree/HEAD/packages/remix-server-runtime) | `2.8.1` | `2.9.1` |
| [@remix-run/dev](https://github.com/remix-run/remix/tree/HEAD/packages/remix-dev) | `2.8.1` | `2.9.1` |
| [@remix-run/eslint-config](https://github.com/remix-run/remix/tree/HEAD/packages/remix-eslint-config) | `2.8.1` | `2.9.1` |


Updates `@remix-run/node` from 2.8.1 to 2.9.1
- [Release notes](https://github.com/remix-run/remix/releases)
- [Changelog](https://github.com/remix-run/remix/blob/main/packages/remix-node/CHANGELOG.md)
- [Commits](https://github.com/remix-run/remix/commits/@remix-run/[email protected]/packages/remix-node)

Updates `@remix-run/react` from 2.8.1 to 2.9.1
- [Release notes](https://github.com/remix-run/remix/releases)
- [Changelog](https://github.com/remix-run/remix/blob/main/packages/remix-react/CHANGELOG.md)
- [Commits](https://github.com/remix-run/remix/commits/@remix-run/[email protected]/packages/remix-react)

Updates `@remix-run/serve` from 2.8.1 to 2.9.1
- [Release notes](https://github.com/remix-run/remix/releases)
- [Changelog](https://github.com/remix-run/remix/blob/main/packages/remix-serve/CHANGELOG.md)
- [Commits](https://github.com/remix-run/remix/commits/@remix-run/[email protected]/packages/remix-serve)

Updates `@remix-run/server-runtime` from 2.8.1 to 2.9.1
- [Release notes](https://github.com/remix-run/remix/releases)
- [Changelog](https://github.com/remix-run/remix/blob/main/packages/remix-server-runtime/CHANGELOG.md)
- [Commits](https://github.com/remix-run/remix/commits/@remix-run/[email protected]/packages/remix-server-runtime)

Updates `@remix-run/dev` from 2.8.1 to 2.9.1
- [Release notes](https://github.com/remix-run/remix/releases)
- [Changelog](https://github.com/remix-run/remix/blob/main/packages/remix-dev/CHANGELOG.md)
- [Commits](https://github.com/remix-run/remix/commits/@remix-run/[email protected]/packages/remix-dev)

Updates `@remix-run/eslint-config` from 2.8.1 to 2.9.1
- [Release notes](https://github.com/remix-run/remix/releases)
- [Changelog](https://github.com/remix-run/remix/blob/main/packages/remix-eslint-config/CHANGELOG.md)
- [Commits](https://github.com/remix-run/remix/commits/@remix-run/[email protected]/packages/remix-eslint-config)

---
updated-dependencies:
- dependency-name: "@remix-run/node"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: remix-updates
- dependency-name: "@remix-run/react"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: remix-updates
- dependency-name: "@remix-run/serve"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: remix-updates
- dependency-name: "@remix-run/server-runtime"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: remix-updates
- dependency-name: "@remix-run/dev"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: remix-updates
- dependency-name: "@remix-run/eslint-config"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: remix-updates
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Apr 29, 2024
Copy link

vercel bot commented Apr 29, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
seth-bertalotto-net ✅ Ready (Inspect) Visit Preview 💬 Add feedback Apr 29, 2024 1:09pm

@redonkulus redonkulus merged commit bc08157 into main Apr 29, 2024
3 checks passed
@redonkulus redonkulus deleted the dependabot/npm_and_yarn/remix-updates-e59df4a174 branch April 29, 2024 16:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant