Skip to content

chore(deps): update dependency @remix-run/react to v1.19.3#45

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/remix-run-react-1.x
Open

chore(deps): update dependency @remix-run/react to v1.19.3#45
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/remix-run-react-1.x

Conversation

@renovate
Copy link
Copy Markdown

@renovate renovate Bot commented Apr 27, 2022

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@remix-run/react (source) 1.4.11.19.3 age adoption passing confidence

Release Notes

remix-run/remix (@​remix-run/react)

v1.19.3

Compare Source

v1.19.2

Compare Source

v1.19.1

Compare Source

v1.19.0

Compare Source

v1.18.1

Compare Source

v1.18.0

Compare Source

v1.17.1

Compare Source

v1.17.0

Compare Source

v1.16.1

Compare Source

v1.16.0

Compare Source

v1.15.0

Compare Source

v1.14.3

Compare Source

v1.14.2

Compare Source

v1.14.1

Compare Source

v1.14.0

Compare Source

v1.13.0

Compare Source

v1.12.0

Compare Source

v1.11.1

Compare Source

v1.11.0

Compare Source

v1.10.1

Compare Source

v1.10.0

Compare Source

v1.9.0

Compare Source

v1.8.2

Compare Source

v1.8.1

Compare Source

v1.8.0

Compare Source

v1.7.6

Compare Source

v1.7.5

Compare Source

v1.7.4

Compare Source

v1.7.3

Compare Source

v1.7.2

Compare Source

v1.7.1

Compare Source

v1.7.0

Compare Source

v1.6.8

Compare Source

v1.6.7

Compare Source

v1.6.6

Compare Source

v1.6.5

Compare Source

v1.6.4

Compare Source

What's Changed
🐛 Bug fixes
  • Fixed a regression with Node v18.3 by making the detection of IPv4 addresses more durable in @remix-run/serve and @remix-run/dev (#​3602)
  • Fix Yarn PnP resolution for empty modules (#​3633)
💅 Enhancements
  • Add watchPaths option for remix.config. This allows you to define custom directories to watch while running remix dev (#​3188).
New Contributors

Full Changelog: remix-run/remix@v1.6.3...v1.6.4

v1.6.3

Compare Source

This release fixes issues with some supported deep imports when bundling your server.

v1.6.2

Compare Source

What's Changed
🐛 Bug Fixes
  • Fixed module resolution issues when installing via Yarn 3 (#​1316, #​3579)
  • Fixed revalidation issues when following multiple redirects (#​3460)
  • Fixed private stack validation in the create-remix CLI (#​2804)
💅 Enhancements
  • The Remix compiler should tree-shake a bit more aggressively in dev mode, resulting in less dead code (#​3588)
New Contributors

Full Changelog: remix-run/remix@v1.6.1...v1.6.2-pre.0

v1.6.1

Compare Source

What's Changed

This release includes a few small bug fixes and DX improvements. Check out the full changelog to see what's new! ✨

New Contributors

Full Changelog: remix-run/remix@v1.6.0...v1.6.1

v1.6.0

Compare Source

What Changed?
☠️ Deprecated

Imports from the remix package are now officially deprecated. We added ESLint warnings to help you catch these (#​3285). We also provide a codemod to make the necessary changes to prepare for a future breaking change. Run npx @​remix-run/dev migrate to initiate the codemod.

See the release notes for v1.4.0 for more details on this change.

💅 Enhancements
  • We now export a few more helpful types from @remix-run/react (#​2876)
  • Added a --port flag to the remix dev script (#​3447)
🐛 Bug fixes
  • Fixed cookies to default to sameSite: "lax" to better align with browsers (#​2388)
  • Normalized imageSrcSet / imageSizes props for links depending on the React version used (#​2944)
  • Added some missing dependencies to @remix-run/dev (#​3413)
  • Added a fix to use the correct error/catch boundary on SSR action errors (#​3436)
New Contributors

Full Changelog: remix-run/remix@v1.5.1...v1.6.0

v1.5.1

Compare Source

What's Changed
💅 Enhancements
  • Added Deno to the list of options in the create-remix CLI 🦕 (#​3233)

Full Changelog: remix-run/remix@v1.5.0...v1.5.1

v1.5.0

Compare Source

Welcome to version 1.5 of Remix. Can you believe that we are already 1.5 years versions old? Time flies when you're building fun web frameworks!

We've got a few things that we're excited to share with this one, so let's get started 💿 💿 💿

Official support for Deno

Your scientists were so preoccupied with whether they could that they didn't stop to think if they should.

Dr. Ian Malcolm, Jurassic Park


A short while ago we rolled out a new adapter with experimental support for building on top of Deno. At long last, the mad scientists at Remix are now ready to announce a major breakthrough:

Remix now officially supports Deno. 🦕

Apart from compiler-related changes, Deno support comes in the form of:

  1. a brand new @remix-run/deno package
  2. an updated Deno template (npx create-remix@latest --template deno)

We couldn't be more excited to see what Deno enables for your future Remix projects. Deno takes a very different approach than most other JS runtimes, and we learned some big lessons while implementing our adapter. For those curious, check out a some tricky Deno-related decisions we made along the way.

It was tough going at times, but as Dr. Malcolm would say: life the compiler finds a way 🦖

Moving closer to The Platform™

One of our driving forces with Remix is to use web standards and get to connect developers more closely to them with our APIs.

In the olden days, the only JavaScript runtime was the one implemented by browsers, but Node changed the game for everyone. In those days, many standards and APIs necessary to build a proper JS server runtime didn't exist, so the good folks working on Node had to invent them for us. Or in many cases we'd get "polyfills" for new standards from third-party libraries like node-fetch.

These were innovative times, and moving quickly allowed devs to ship more quickly. But inconsistency between runtimes also created a lot of problems. Thankfully we are getting closer than ever to consensus-driven solutions, and Remix is moving towards this new, more standardized approach.

We have removed our dependency on node-fetch and moved forward with our own implementation that gets closer to the living Fetch Standard. This opens the door to new features in your loaders and actions—you can now return ReadableStream in the body of your response, which allows you to stream data from your server and paves the way for the new streaming APIs in React 18.

This comes at an exciting time for the web, as just a few weeks ago we saw the formation of a new Web-interoperable Runtimes Community Group. We've never been more optimistic about the web, and we see this change as a necessary first step to embrace its future.


What's Changed
✨ Features
  • Replaced node-fetch with @remix-run/web-fetch for a more standards-based fetch implementation (#​2736)
  • Launched official support for Deno (#​3117)
💅 Enhancements
  • Made a few improvements in our experimental Netlify Edge adapter (#​3107)
🐛 Bug fixes
  • Fixed support for JSX in .js route files (#​3059)
  • Fixed issues with package manager detection (#​3109)
  • Fixed the packageExports map (#​3189)
  • Avoid duplicate loader calls when using prefetch-intent (#​2938)
⚠️ Unstable API changes
  • unstable_parseMultipartFormData no longer operates on a Node.js stream, this has been changed to an AsyncIterable<Uint8Array> called data to bring this functionality to all platforms (#​2736)
  • unstable_parseMultipartFormData no longer parses fields automatically for you; instead use unstable_composeUploadHandlers to combine multiple upload handlers (#​2736)
New Contributors

Full Changelog: remix-run/remix@v1.4.3...v1.5.0

v1.4.3

Compare Source

This release reverts #​2875, which cleans build directories before starting a new build. This behavior caused some unintended problems for some folks using external processes. See #​2875 (comment)

v1.4.2

Compare Source

What's Changed
🐛 Bug fixes
  • Reverted a change in <LiveReload /> that prevented it from running without scripts hydration (#​2874)
  • Updated default tsconfig.json settings when creating a new project to fix compiler issues (#​2786)
💅 Enhancements
  • We will now clean build directories before each initial build (#​2875)
New Contributors

Full Changelog: remix-run/remix@v1.4.1...v1.4.2-pre.0


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • 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 this update again.


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

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

@renovate renovate Bot force-pushed the renovate/remix-run-react-1.x branch from a8c18f1 to 0779579 Compare April 28, 2022 00:15
@renovate renovate Bot changed the title chore(deps): update dependency @remix-run/react to v1.4.2 chore(deps): update dependency @remix-run/react to v1.4.3 Apr 28, 2022
@renovate renovate Bot force-pushed the renovate/remix-run-react-1.x branch from 0779579 to 06241ef Compare May 18, 2022 22:43
@renovate renovate Bot changed the title chore(deps): update dependency @remix-run/react to v1.4.3 chore(deps): update dependency @remix-run/react to v1.5.0 May 18, 2022
@renovate renovate Bot changed the title chore(deps): update dependency @remix-run/react to v1.5.0 chore(deps): update dependency @remix-run/react to v1.5.1 May 19, 2022
@renovate renovate Bot force-pushed the renovate/remix-run-react-1.x branch from 06241ef to 16bf05a Compare May 19, 2022 00:42
@renovate renovate Bot force-pushed the renovate/remix-run-react-1.x branch from 16bf05a to f532fa2 Compare June 15, 2022 00:04
@renovate renovate Bot changed the title chore(deps): update dependency @remix-run/react to v1.5.1 chore(deps): update dependency @remix-run/react to v1.6.0 Jun 15, 2022
@renovate renovate Bot force-pushed the renovate/remix-run-react-1.x branch from f532fa2 to 4ad76ee Compare June 22, 2022 15:43
@renovate renovate Bot changed the title chore(deps): update dependency @remix-run/react to v1.6.0 chore(deps): update dependency @remix-run/react to v1.6.1 Jun 22, 2022
@renovate renovate Bot force-pushed the renovate/remix-run-react-1.x branch from 4ad76ee to f8916ee Compare September 25, 2022 13:10
@renovate renovate Bot changed the title chore(deps): update dependency @remix-run/react to v1.6.1 chore(deps): update dependency @remix-run/react to v1.7.2 Sep 25, 2022
@renovate renovate Bot force-pushed the renovate/remix-run-react-1.x branch from f8916ee to f588193 Compare November 20, 2022 10:20
@renovate renovate Bot changed the title chore(deps): update dependency @remix-run/react to v1.7.2 chore(deps): update dependency @remix-run/react to v1.7.6 Nov 20, 2022
@renovate renovate Bot force-pushed the renovate/remix-run-react-1.x branch from f588193 to 84c412a Compare March 24, 2023 19:43
@renovate renovate Bot changed the title chore(deps): update dependency @remix-run/react to v1.7.6 chore(deps): update dependency @remix-run/react to v1.14.3 Mar 24, 2023
@renovate renovate Bot changed the title chore(deps): update dependency @remix-run/react to v1.14.3 chore(deps): update dependency @remix-run/react to v1.15.0 Mar 31, 2023
@renovate renovate Bot force-pushed the renovate/remix-run-react-1.x branch from 84c412a to ade813c Compare March 31, 2023 17:28
@renovate renovate Bot force-pushed the renovate/remix-run-react-1.x branch from ade813c to 5e3b23c Compare May 31, 2023 04:01
@renovate renovate Bot changed the title chore(deps): update dependency @remix-run/react to v1.15.0 chore(deps): update dependency @remix-run/react to v1.16.1 May 31, 2023
@renovate renovate Bot force-pushed the renovate/remix-run-react-1.x branch from 5e3b23c to 243adf9 Compare June 6, 2023 22:16
@renovate renovate Bot changed the title chore(deps): update dependency @remix-run/react to v1.16.1 chore(deps): update dependency @remix-run/react to v1.17.0 Jun 6, 2023
@renovate renovate Bot force-pushed the renovate/remix-run-react-1.x branch from 243adf9 to e3a9107 Compare June 15, 2023 20:15
@renovate renovate Bot changed the title chore(deps): update dependency @remix-run/react to v1.17.0 chore(deps): update dependency @remix-run/react to v1.17.1 Jun 15, 2023
@renovate renovate Bot force-pushed the renovate/remix-run-react-1.x branch from e3a9107 to a4bc9c5 Compare June 26, 2023 18:13
@renovate renovate Bot changed the title chore(deps): update dependency @remix-run/react to v1.17.1 chore(deps): update dependency @remix-run/react to v1.18.0 Jun 26, 2023
@renovate renovate Bot force-pushed the renovate/remix-run-react-1.x branch from a4bc9c5 to e488a6f Compare June 30, 2023 22:46
@renovate renovate Bot changed the title chore(deps): update dependency @remix-run/react to v1.18.0 chore(deps): update dependency @remix-run/react to v1.18.1 Jun 30, 2023
@renovate renovate Bot force-pushed the renovate/remix-run-react-1.x branch from e488a6f to d2923d1 Compare July 19, 2023 19:10
@renovate renovate Bot changed the title chore(deps): update dependency @remix-run/react to v1.18.1 chore(deps): update dependency @remix-run/react to v1.19.0 Jul 19, 2023
@renovate renovate Bot force-pushed the renovate/remix-run-react-1.x branch from d2923d1 to 232b829 Compare July 21, 2023 21:32
@renovate renovate Bot changed the title chore(deps): update dependency @remix-run/react to v1.19.0 chore(deps): update dependency @remix-run/react to v1.19.1 Jul 21, 2023
@renovate renovate Bot changed the title chore(deps): update dependency @remix-run/react to v1.19.1 chore(deps): update dependency @remix-run/react to v1.19.2 Aug 4, 2023
@renovate renovate Bot force-pushed the renovate/remix-run-react-1.x branch from 232b829 to 0f8a47e Compare August 4, 2023 13:07
@renovate renovate Bot changed the title chore(deps): update dependency @remix-run/react to v1.19.2 chore(deps): update dependency @remix-run/react to v1.19.3 Aug 9, 2023
@renovate renovate Bot force-pushed the renovate/remix-run-react-1.x branch from 0f8a47e to ae8d2ac Compare August 9, 2023 17:08
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.

0 participants