From 94d3660d916cebac341b80ee011c897ccc99c933 Mon Sep 17 00:00:00 2001 From: Matt Brophy Date: Tue, 24 Jan 2023 17:34:17 -0500 Subject: [PATCH] Change to minor bump --- .changeset/pre.json | 1 - .changeset/silent-oranges-pay.md | 12 ------------ .changeset/sweet-trains-call.md | 11 +++++++++++ 3 files changed, 11 insertions(+), 13 deletions(-) delete mode 100644 .changeset/silent-oranges-pay.md create mode 100644 .changeset/sweet-trains-call.md diff --git a/.changeset/pre.json b/.changeset/pre.json index bcd93df4a2..d904126ea6 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -13,7 +13,6 @@ "chilly-stingrays-rhyme", "little-taxis-bake", "orange-insects-complain", - "silent-oranges-pay", "silver-snails-destroy", "small-squids-wash", "spotty-cheetahs-live", diff --git a/.changeset/silent-oranges-pay.md b/.changeset/silent-oranges-pay.md deleted file mode 100644 index 6a823800f0..0000000000 --- a/.changeset/silent-oranges-pay.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -"react-router": patch -"react-router-dom": patch ---- - -Allow using `` with absolute URLs - -```tsx - - - -``` diff --git a/.changeset/sweet-trains-call.md b/.changeset/sweet-trains-call.md new file mode 100644 index 0000000000..e15cd9abcb --- /dev/null +++ b/.changeset/sweet-trains-call.md @@ -0,0 +1,11 @@ +--- +"react-router-dom": minor +--- + +Support absolute URLs in ``. If the URL is for the current origin, it will still do a client-side navigation. If the URL is for a different origin then it will do a fresh document request for the new origin. ([#9900](https://github.com/remix-run/react-router/pull/9900)) + +```tsx + + + +```