Skip to content

chore(deps): update all non-major dependencies #3456

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

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Setup Tools
uses: tanstack/config/.github/setup@main
- name: Get base and head commits for `nx affected`
uses: nrwl/nx-set-shas@v4.1.2
uses: nrwl/nx-set-shas@v4.3.0
with:
main-branch-name: main
- name: Run Checks
Expand Down
1 change: 0 additions & 1 deletion docs/router/framework/react/guide/code-splitting.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ Code splitting and lazy loading is a powerful technique for improving the bundle
TanStack Router separates code into two categories:

- **Critical Route Configuration** - The code that is required to render the current route and kick off the data loading process as early as possible.

- Path Parsing/Serialization
- Search Param Validation
- Loaders, Before Load
Expand Down
3 changes: 0 additions & 3 deletions docs/start/framework/react/reading-writing-file.md
Original file line number Diff line number Diff line change
Expand Up @@ -452,18 +452,15 @@ With this, our UI should look like this:
Let's break down how the different parts of our application work together:

1. **Server Functions**: These run on the server and handle data operations

- `getJokes`: Reads the jokes from our JSON file
- `addJoke`: Adds a new joke to our JSON file

2. **TanStack Router**: Handles routing and data loading

- The loader function fetches jokes data when the route is accessed
- `useLoaderData` makes this data available in our component
- `router.invalidate()` refreshes the data when we add a new joke

3. **React Components**: Build the UI of our application

- `JokesList`: Displays the list of jokes
- `JokeForm`: Provides a form for adding new jokes

Expand Down
6 changes: 3 additions & 3 deletions e2e/react-router/basic-esbuild-file-based/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@
"react": "^19.0.0",
"react-dom": "^19.0.0",
"redaxios": "^0.5.1",
"zod": "^3.24.2"
"zod": "^3.25.67"
},
"devDependencies": {
"@playwright/test": "^1.50.1",
"@playwright/test": "^1.53.1",
"@tanstack/router-e2e-utils": "workspace:^",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"esbuild": "^0.25.0"
"esbuild": "^0.25.5"
}
}
10 changes: 5 additions & 5 deletions e2e/react-router/basic-file-based-code-splitting/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@
"@tanstack/router-plugin": "workspace:^",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"postcss": "^8.5.1",
"autoprefixer": "^10.4.20",
"postcss": "^8.5.6",
"autoprefixer": "^10.4.21",
"tailwindcss": "^3.4.17",
"zod": "^3.24.2"
"zod": "^3.25.67"
},
"devDependencies": {
"@playwright/test": "^1.50.1",
"@playwright/test": "^1.53.1",
"@tanstack/router-e2e-utils": "workspace:^",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"@vitejs/plugin-react": "^4.5.2",
"vite": "^6.3.5"
}
}
10 changes: 5 additions & 5 deletions e2e/react-router/basic-file-based/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@
"react": "^19.0.0",
"react-dom": "^19.0.0",
"redaxios": "^0.5.1",
"postcss": "^8.5.1",
"autoprefixer": "^10.4.20",
"postcss": "^8.5.6",
"autoprefixer": "^10.4.21",
"tailwindcss": "^3.4.17",
"zod": "^3.24.2"
"zod": "^3.25.67"
},
"devDependencies": {
"@playwright/test": "^1.50.1",
"@playwright/test": "^1.53.1",
"@tanstack/router-e2e-utils": "workspace:^",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"@vitejs/plugin-react": "^4.5.2",
"combinate": "^1.1.11",
"vite": "^6.3.5"
}
Expand Down
14 changes: 7 additions & 7 deletions e2e/react-router/basic-react-query-file-based/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,25 +11,25 @@
"test:e2e": "playwright test --project=chromium"
},
"dependencies": {
"@tanstack/react-query": "^5.66.0",
"@tanstack/react-query-devtools": "^5.66.0",
"@tanstack/react-query": "^5.81.2",
"@tanstack/react-query-devtools": "^5.81.2",
"@tanstack/react-router": "workspace:^",
"@tanstack/react-router-devtools": "workspace:^",
"@tanstack/router-plugin": "workspace:^",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"redaxios": "^0.5.1",
"postcss": "^8.5.1",
"autoprefixer": "^10.4.20",
"postcss": "^8.5.6",
"autoprefixer": "^10.4.21",
"tailwindcss": "^3.4.17",
"zod": "^3.24.2"
"zod": "^3.25.67"
},
"devDependencies": {
"@playwright/test": "^1.50.1",
"@playwright/test": "^1.53.1",
"@tanstack/router-e2e-utils": "workspace:^",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"@vitejs/plugin-react": "^4.5.2",
"vite": "^6.3.5"
}
}
12 changes: 6 additions & 6 deletions e2e/react-router/basic-react-query/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,23 +11,23 @@
"test:e2e": "playwright test --project=chromium"
},
"dependencies": {
"@tanstack/react-query": "^5.66.0",
"@tanstack/react-query-devtools": "^5.66.0",
"@tanstack/react-query": "^5.81.2",
"@tanstack/react-query-devtools": "^5.81.2",
"@tanstack/react-router": "workspace:^",
"@tanstack/router-devtools": "workspace:^",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"redaxios": "^0.5.1",
"postcss": "^8.5.1",
"autoprefixer": "^10.4.20",
"postcss": "^8.5.6",
"autoprefixer": "^10.4.21",
"tailwindcss": "^3.4.17"
},
"devDependencies": {
"@playwright/test": "^1.50.1",
"@playwright/test": "^1.53.1",
"@tanstack/router-e2e-utils": "workspace:^",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"@vitejs/plugin-react": "^4.5.2",
"vite": "^6.3.5"
}
}
10 changes: 5 additions & 5 deletions e2e/react-router/basic-scroll-restoration/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,21 @@
},
"dependencies": {
"@tanstack/react-router": "workspace:^",
"@tanstack/react-virtual": "^3.13.0",
"@tanstack/react-virtual": "^3.13.10",
"@tanstack/react-router-devtools": "workspace:^",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"redaxios": "^0.5.1",
"postcss": "^8.5.1",
"autoprefixer": "^10.4.20",
"postcss": "^8.5.6",
"autoprefixer": "^10.4.21",
"tailwindcss": "^3.4.17"
},
"devDependencies": {
"@playwright/test": "^1.50.1",
"@playwright/test": "^1.53.1",
"@tanstack/router-e2e-utils": "workspace:^",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"@vitejs/plugin-react": "^4.5.2",
"vite": "^6.3.5"
}
}
10 changes: 5 additions & 5 deletions e2e/react-router/basic-virtual-file-based/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@
"react": "^19.0.0",
"react-dom": "^19.0.0",
"redaxios": "^0.5.1",
"postcss": "^8.5.1",
"autoprefixer": "^10.4.20",
"postcss": "^8.5.6",
"autoprefixer": "^10.4.21",
"tailwindcss": "^3.4.17",
"zod": "^3.24.2"
"zod": "^3.25.67"
},
"devDependencies": {
"@playwright/test": "^1.50.1",
"@playwright/test": "^1.53.1",
"@tanstack/router-e2e-utils": "workspace:^",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"@vitejs/plugin-react": "^4.5.2",
"vite": "^6.3.5"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@
"react": "^19.0.0",
"react-dom": "^19.0.0",
"redaxios": "^0.5.1",
"postcss": "^8.5.1",
"autoprefixer": "^10.4.20",
"postcss": "^8.5.6",
"autoprefixer": "^10.4.21",
"tailwindcss": "^3.4.17",
"zod": "^3.24.2"
"zod": "^3.25.67"
},
"devDependencies": {
"@playwright/test": "^1.50.1",
"@playwright/test": "^1.53.1",
"@tanstack/router-e2e-utils": "workspace:^",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"@vitejs/plugin-react": "^4.5.2",
"vite": "^6.3.5"
}
}
8 changes: 4 additions & 4 deletions e2e/react-router/basic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@
"react": "^19.0.0",
"react-dom": "^19.0.0",
"redaxios": "^0.5.1",
"postcss": "^8.5.1",
"autoprefixer": "^10.4.20",
"postcss": "^8.5.6",
"autoprefixer": "^10.4.21",
"tailwindcss": "^3.4.17"
},
"devDependencies": {
"@playwright/test": "^1.50.1",
"@playwright/test": "^1.53.1",
"@tanstack/router-e2e-utils": "workspace:^",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"@vitejs/plugin-react": "^4.5.2",
"vite": "^6.3.5"
}
}
8 changes: 4 additions & 4 deletions e2e/react-router/generator-cli-only/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@
"react": "^19.0.0",
"react-dom": "^19.0.0",
"redaxios": "^0.5.1",
"postcss": "^8.5.1",
"autoprefixer": "^10.4.20",
"postcss": "^8.5.6",
"autoprefixer": "^10.4.21",
"tailwindcss": "^3.4.17"
},
"devDependencies": {
"@playwright/test": "^1.50.1",
"@playwright/test": "^1.53.1",
"@tanstack/router-e2e-utils": "workspace:^",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"@vitejs/plugin-react": "^4.5.2",
"vite": "^6.3.5"
}
}
8 changes: 4 additions & 4 deletions e2e/react-router/js-only-file-based/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@
"react": "^19.0.0",
"react-dom": "^19.0.0",
"redaxios": "^0.5.1",
"postcss": "^8.5.1",
"autoprefixer": "^10.4.20",
"postcss": "^8.5.6",
"autoprefixer": "^10.4.21",
"tailwindcss": "^3.4.17"
},
"devDependencies": {
"@playwright/test": "^1.50.1",
"@playwright/test": "^1.53.1",
"@tanstack/router-plugin": "workspace:^",
"@tanstack/router-e2e-utils": "workspace:^",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"@vitejs/plugin-react": "^4.5.2",
"vite": "^6.3.5"
}
}
10 changes: 5 additions & 5 deletions e2e/react-router/rspack-basic-file-based/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@
"redaxios": "^0.5.1"
},
"devDependencies": {
"@playwright/test": "^1.50.1",
"@playwright/test": "^1.53.1",
"@tanstack/router-e2e-utils": "workspace:^",
"@rsbuild/core": "^1.2.4",
"@rsbuild/plugin-react": "^1.1.0",
"@rsbuild/core": "^1.3.22",
"@rsbuild/plugin-react": "^1.3.2",
"@tanstack/router-plugin": "workspace:^",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"postcss": "^8.5.1",
"autoprefixer": "^10.4.20",
"postcss": "^8.5.6",
"autoprefixer": "^10.4.21",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@
"redaxios": "^0.5.1"
},
"devDependencies": {
"@playwright/test": "^1.50.1",
"@playwright/test": "^1.53.1",
"@tanstack/router-e2e-utils": "workspace:^",
"@rsbuild/core": "^1.2.4",
"@rsbuild/plugin-react": "^1.1.0",
"@rsbuild/core": "^1.3.22",
"@rsbuild/plugin-react": "^1.3.2",
"@tanstack/router-plugin": "workspace:^",
"@tanstack/virtual-file-routes": "workspace:^",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"postcss": "^8.5.1",
"autoprefixer": "^10.4.20",
"postcss": "^8.5.6",
"autoprefixer": "^10.4.21",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2"
}
Expand Down
10 changes: 5 additions & 5 deletions e2e/react-router/scroll-restoration-sandbox-vite/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,17 @@
"react": "^19.0.0",
"react-dom": "^19.0.0",
"redaxios": "^0.5.1",
"postcss": "^8.5.1",
"autoprefixer": "^10.4.20",
"postcss": "^8.5.6",
"autoprefixer": "^10.4.21",
"tailwindcss": "^3.4.17",
"zod": "^3.24.2"
"zod": "^3.25.67"
},
"devDependencies": {
"@playwright/test": "^1.50.1",
"@playwright/test": "^1.53.1",
"@tanstack/router-e2e-utils": "workspace:^",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"@vitejs/plugin-react": "^4.5.2",
"vite": "^6.3.5"
}
}
12 changes: 6 additions & 6 deletions e2e/react-router/sentry-integration/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,24 +11,24 @@
"test:e2e": "playwright test --project=chromium"
},
"dependencies": {
"@sentry/react": "^8.54.0",
"@sentry/react": "^8.55.0",
"@sentry/tracing": "^7.120.3",
"@sentry/vite-plugin": "^3.1.2",
"@sentry/vite-plugin": "^3.5.0",
"@tanstack/react-router": "workspace:^",
"@tanstack/react-router-devtools": "workspace:^",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"redaxios": "^0.5.1",
"postcss": "^8.5.1",
"autoprefixer": "^10.4.20",
"postcss": "^8.5.6",
"autoprefixer": "^10.4.21",
"tailwindcss": "^3.4.17"
},
"devDependencies": {
"@playwright/test": "^1.50.1",
"@playwright/test": "^1.53.1",
"@tanstack/router-e2e-utils": "workspace:^",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"@vitejs/plugin-react": "^4.5.2",
"vite": "^6.3.5"
}
}
Loading
Loading