Skip to content

Commit 189ae25

Browse files
authored
Merge branch 'dev' into fix/useSearchParams
2 parents 518c2df + 1c03f31 commit 189ae25

File tree

432 files changed

+65188
-9326
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

432 files changed

+65188
-9326
lines changed

.eslintignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,12 @@ node_modules/
33
pnpm-lock.yaml
44
/docs/api
55
examples/**/dist/
6+
/integration/helpers/vite-plugin-cloudflare-template/worker-configuration.d.ts
67
/playground/
78
/playground-local/
89
packages/**/dist/
910
packages/react-router-dom/server.d.ts
1011
packages/react-router-dom/server.js
1112
packages/react-router-dom/server.mjs
1213
tutorial/dist/
14+
public/

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ body:
2020
2121
If you'd rather open a GitHub issue, here are other ways to share a reproduction (ordered from most helpful to least):
2222
23-
- 🥇 Link to a [StackBlitz](https://remix.new) environment
23+
- 🥇 Link to a [StackBlitz](https://reactrouter.com/new) environment
2424
- 🥈 Link to a GitHub repository
2525
- 🥉 Description of project including template, config files, `package.json` scripts, etc.
2626

.github/workflows/integration-full.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
11
name: Branch
22

3-
# main/dev/release-* branches will get the full run across
3+
# main/dev branches will get the full run across
44
# all OS/browsers for multiple node versions
55

66
on:
77
push:
88
branches:
99
- main
1010
- dev
11-
- release-*
12-
tags:
13-
- "v0.0.0-nightly-*"
1411
paths-ignore:
1512
- ".changeset/**"
1613
- "decisions/**"

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
name: 🦋 Find Package
6767
needs: [release]
6868
runs-on: ubuntu-latest
69-
if: github.repository == 'remix-run/react-router' && needs.release.outputs.published == 'true'
69+
if: github.repository == 'remix-run/react-router' && github.ref_name != 'release-v6' && needs.release.outputs.published == 'true'
7070
outputs:
7171
package_version: ${{ steps.find_package_version.outputs.package_version }}
7272
steps:
@@ -92,6 +92,6 @@ jobs:
9292

9393
comment:
9494
name: 📝 Comment on related issues and pull requests
95-
if: github.repository == 'remix-run/react-router' && needs.find_package_version.outputs.package_version != ''
95+
if: github.repository == 'remix-run/react-router' && github.ref_name != 'release-v6' && needs.find_package_version.outputs.package_version != ''
9696
needs: [release, find_package_version]
9797
uses: ./.github/workflows/release-comments.yml

.github/workflows/shared-build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ jobs:
2222
node-version-file: ".nvmrc"
2323
cache: "pnpm"
2424

25-
- uses: google/wireit@setup-github-actions-caching/v2
25+
# TODO: Track and renable once this has been fixed: https://github.com/google/wireit/issues/1297
26+
# - uses: google/wireit@setup-github-actions-caching/v2
2627

2728
- name: Disable GitHub Actions Annotations
2829
run: |

.github/workflows/shared-integration.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@ jobs:
4545
node-version: ${{ matrix.node }}
4646
cache: "pnpm"
4747

48-
- uses: google/wireit@setup-github-actions-caching/v2
48+
# TODO: Track and renable once this has been fixed: https://github.com/google/wireit/issues/1297
49+
# - uses: google/wireit@setup-github-actions-caching/v2
4950

5051
- name: Disable GitHub Actions Annotations
5152
run: |

.github/workflows/test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@ jobs:
4545
cache: pnpm
4646
check-latest: true
4747

48-
- uses: google/wireit@setup-github-actions-caching/v2
48+
# TODO: Track and renable once this has been fixed: https://github.com/google/wireit/issues/1297
49+
# - uses: google/wireit@setup-github-actions-caching/v2
4950

5051
- name: Disable GitHub Actions Annotations
5152
run: |

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
.DS_Store
22
npm-debug.log
33

4-
/docs/api/
54
/website/build/
65
node_modules/
76

@@ -30,6 +29,7 @@ node_modules/
3029
.eslintcache
3130
.tmp
3231
tsup.config.bundled_*.mjs
32+
build.utils.d.ts
3333
/.env
3434
/NOTES.md
3535

.vscode/settings.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"typescript.tsdk": "node_modules/typescript/lib",
3+
"typescript.enablePromptUseWorkspaceTsdk": true
4+
}

0 commit comments

Comments
 (0)