Skip to content

Commit

Permalink
Merge branch 'release-next' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
chaance committed Jan 30, 2023
2 parents 52284ab + f215e47 commit 518009d
Show file tree
Hide file tree
Showing 124 changed files with 951 additions and 418 deletions.
7 changes: 0 additions & 7 deletions .changeset/afraid-hounds-join.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/breezy-dancers-lie.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/flat-cobras-beam.md

This file was deleted.

85 changes: 0 additions & 85 deletions .changeset/mean-clocks-bow.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/mighty-beans-judge.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/old-rice-drive.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/short-bobcats-switch.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/silent-cups-double.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/silver-rockets-remember.md

This file was deleted.

11 changes: 0 additions & 11 deletions .changeset/tender-turtles-wash.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/wild-foxes-wait.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/yellow-ligers-clean.md

This file was deleted.

6 changes: 6 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@ body:
label: What version of Remix are you using?
validations:
required: true
- type: checkboxes
attributes:
label: Are all your remix dependencies & dev-dependencies using the same version?
options:
- label: "Yes"
required: true
- type: textarea
attributes:
label: Steps to Reproduce
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,5 @@ tsconfig.tsbuildinfo
/scripts/playground/template.local
/scripts/playground/template/build
/scripts/playground/template/package-lock.json

/NOTES.md
11 changes: 11 additions & 0 deletions contributors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@
- craigglennie
- crismali
- cysp
- d4vsanchez
- dabdine
- daganomri
- damiensedgwick
Expand All @@ -102,6 +103,7 @@
- Deanmv
- denissb
- derekr
- derenge
- developit
- dgurns
- dhargitai
Expand Down Expand Up @@ -180,6 +182,7 @@
- illright
- imzshh
- ionut-botizan
- irsooti
- isaacrmoreno
- ishan-me
- IshanKBG
Expand All @@ -188,6 +191,7 @@
- jacargentina
- jacob-ebey
- JacobParis
- jakeginnivan
- jakewtaylor
- jamiebuilds
- janhoogeveen
Expand All @@ -204,7 +208,9 @@
- jgarrow
- jiahao-c
- jimniels
- jinglesthula
- jkup
- jly36963
- jmasson
- jmorel88
- JNaftali
Expand Down Expand Up @@ -292,6 +298,7 @@
- mantey-github
- manzano78
- manzoorwanijk
- marceltn
- marcisbee
- marcomafessolli
- markdalgleish
Expand Down Expand Up @@ -361,6 +368,7 @@
- pcattori
- penspinner
- penx
- petetnt
- philandstuff
- phishy
- plastic041
Expand Down Expand Up @@ -466,6 +474,7 @@
- wKovacs64
- wladiston
- wtlin1228
- xHomu
- XiNiHa
- xstevenyung
- yauri-io
Expand All @@ -475,6 +484,8 @@
- youngvform
- zachdtaylor
- zainfathoni
- zayenz
- zhe
- mitchelldirt
- krolebord
- panteliselef
1 change: 1 addition & 0 deletions docs/components/await.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: Await
toc: false
---

# `<Await>`
Expand Down
5 changes: 5 additions & 0 deletions docs/components/form.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ title: Form

# `<Form>`

<docs-info>This component is simply a re-export of [React Router's `Form`][rr-form].</docs-info>

<docs-success>Watch the <a href="https://www.youtube.com/playlist?list=PLXoynULbYuEDG2wBFSZ66b85EIspy3fy6">📼 Remix Singles</a>: <a href="https://www.youtube.com/watch?v=Iv25HAHaFDs&list=PLXoynULbYuEDG2wBFSZ66b85EIspy3fy6">Data Mutations with Form + action</a>, <a href="https://www.youtube.com/watch?v=w2i-9cYxSdc&list=PLXoynULbYuEDG2wBFSZ66b85EIspy3fy6">Multiple Forms and Single Button Mutations</a> and <a href="https://www.youtube.com/watch?v=bMLej7bg5Zo&list=PLXoynULbYuEDG2wBFSZ66b85EIspy3fy6">Clearing Inputs After Form Submissions</a></docs-success>

The `<Form>` component is a declarative way to perform data mutations: creating, updating, and deleting data. While it might be a mind-shift to think about these tasks as "navigation", it's how the web has handled mutations since before JavaScript was created!
Expand Down Expand Up @@ -92,6 +94,8 @@ When the `action` prop is omitted, `<Form>` and `<form>` will sometimes call dif
- `<form>` uses the current URL as the default which can lead to surprising results: forms inside parent routes will post to the child action if you're at the child's URL and the parents action when you're at the parent's URL. This means as the user navigates, the form's behavior changes.
- `<Form>` will always post to the route's action, independent of the URL. A form in a parent route will always post to the parent, even if you're at the child's URL.

<docs-info>For more information and usage, please refer to the [React Router `Form` docs][rr-form].</docs-info>

See also:

- [`useTransition`][usetransition]
Expand All @@ -103,3 +107,4 @@ See also:
[useactiondata]: ../hooks/use-action-data
[usesubmit]: ../hooks/use-submit
[http-verb]: https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods
[rr-form]: https://reactrouter.com/components/form
1 change: 1 addition & 0 deletions docs/components/links.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: Links
toc: false
---

# `<Links />`
Expand Down
1 change: 1 addition & 0 deletions docs/components/live-reload.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: LiveReload
toc: false
---

# `<LiveReload />`
Expand Down
1 change: 1 addition & 0 deletions docs/components/meta.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: Meta
toc: false
---

# `<Meta />`
Expand Down
1 change: 1 addition & 0 deletions docs/components/nav-link.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: NavLink
toc: false
---

# `<NavLink>`
Expand Down
3 changes: 2 additions & 1 deletion docs/components/outlet.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
---
title: Outlet
toc: false
---

# `<Outlet>`

Re-export of [React Router Outlet][rr-outlet].
<docs-info>This component is simply a re-export of [React Router's `Outlet`][rr-outlet].</docs-info>

[rr-outlet]: https://reactrouter.com/components/outlet
1 change: 1 addition & 0 deletions docs/components/prefetch-page-links.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: PrefetchPageLinks
toc: false
---

# `<PrefetchPageLinks />`
Expand Down
1 change: 1 addition & 0 deletions docs/components/scripts.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: Scripts
toc: false
---

# `<Scripts />`
Expand Down
3 changes: 2 additions & 1 deletion docs/file-conventions/entry.client.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: entry.client
toc: false
---

# entry.client
Expand All @@ -19,4 +20,4 @@ hydrate(<RemixBrowser />, document);

This is the first piece of code that runs in the browser. As you can see, you have full control here. You can initialize client side libraries, setup things like `window.history.scrollRestoration`, etc.

[server-entry-module]: ./entry.server.tsx
[server-entry-module]: ./entry.server
1 change: 1 addition & 0 deletions docs/file-conventions/entry.server.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: entry.server
toc: false
---

# entry.server
Expand Down
1 change: 1 addition & 0 deletions docs/file-conventions/root.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: root
toc: false
---

# Root Route
Expand Down
Loading

0 comments on commit 518009d

Please sign in to comment.