Commit d6e03d5
authored
chore(deps): update all non-major dependencies (examples, templates & patterns) (minor) (#8435)
This PR contains the following updates:
| Package | Change |
[Age](https://docs.renovatebot.com/merge-confidence/) |
[Confidence](https://docs.renovatebot.com/merge-confidence/) |
|---|---|---|---|
| [@react-router/dev](https://reactrouter.com)
([source](https://redirect.github.com/remix-run/react-router/tree/HEAD/packages/react-router-dev))
| [`7.13.2` →
`7.14.0`](https://renovatebot.com/diffs/npm/@react-router%2fdev/7.13.2/7.14.0)
|

|

|
|
[@react-router/node](https://redirect.github.com/remix-run/react-router)
([source](https://redirect.github.com/remix-run/react-router/tree/HEAD/packages/react-router-node))
| [`7.13.2` →
`7.14.0`](https://renovatebot.com/diffs/npm/@react-router%2fnode/7.13.2/7.14.0)
|

|

|
|
[@react-router/serve](https://redirect.github.com/remix-run/react-router)
([source](https://redirect.github.com/remix-run/react-router/tree/HEAD/packages/react-router-serve))
| [`7.13.2` →
`7.14.0`](https://renovatebot.com/diffs/npm/@react-router%2fserve/7.13.2/7.14.0)
|

|

|
| [react-router](https://redirect.github.com/remix-run/react-router)
([source](https://redirect.github.com/remix-run/react-router/tree/HEAD/packages/react-router))
| [`7.13.2` →
`7.14.0`](https://renovatebot.com/diffs/npm/react-router/7.13.2/7.14.0)
|

|

|
|
[typescript-eslint](https://typescript-eslint.io/packages/typescript-eslint)
([source](https://redirect.github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint))
| [`8.57.2` →
`8.58.0`](https://renovatebot.com/diffs/npm/typescript-eslint/8.57.2/8.58.0)
|

|

|
---
### Release Notes
<details>
<summary>remix-run/react-router (@​react-router/dev)</summary>
###
[`v7.14.0`](https://redirect.github.com/remix-run/react-router/blob/HEAD/packages/react-router-dev/CHANGELOG.md#7140)
[Compare
Source](https://redirect.github.com/remix-run/react-router/compare/@react-router/dev@7.13.2...@react-router/dev@7.14.0)
##### Minor Changes
- Add support for Vite 8
([#​14876](https://redirect.github.com/remix-run/react-router/pull/14876))
##### Patch Changes
- support for prerendering multiple server bundles with
v8\_viteEnvironmentApi
([#​14921](https://redirect.github.com/remix-run/react-router/pull/14921))
- rsc framework mode prerender / spa mode support
([#​14907](https://redirect.github.com/remix-run/react-router/pull/14907))
- UNSTABLE RSC FRAMEWORK MODE BREAKING CHANGE - Existing route module
exports remain unchanged from stable v7 non-RSC mode, but new exports
are added for RSC mode. If you want to use RSC features, you will need
to update your route modules to export the new annotations.
([#​14901](https://redirect.github.com/remix-run/react-router/pull/14901))
If you are using RSC framework mode currently, you will need to update
your route modules to the new conventions. The following route module
components have their own mutually exclusive server component
counterparts:
| Server Component Export | Client Component |
| ----------------------- | ----------------- |
| `ServerComponent` | `default` |
| `ServerErrorBoundary` | `ErrorBoundary` |
| `ServerLayout` | `Layout` |
| `ServerHydrateFallback` | `HydrateFallback` |
If you were previously exporting a `ServerComponent`, your
`ErrorBoundary`, `Layout`, and `HydrateFallback` were also server
components. If you want to keep those as server components, you can
rename them and prefix them with `Server`. If you were previously
importing the implementations of those components from a client module,
you can simply inline them.
Example:
Before
```tsx
import { ErrorBoundary as ClientErrorBoundary } from "./client";
export function ServerComponent() {
// ...
}
export function ErrorBoundary() {
return <ClientErrorBoundary />;
}
export function Layout() {
// ...
}
export function HydrateFallback() {
// ...
}
```
After
```tsx
export function ServerComponent() {
// ...
}
export function ErrorBoundary() {
// previous implementation of ClientErrorBoundary, this is now a client
component
}
export function ServerLayout() {
// rename previous Layout export to ServerLayout to make it a server
component
}
export function ServerHydrateFallback() {
// rename previous HydrateFallback export to ServerHydrateFallback to
make it a server component
}
```
- update the reveal command to support rsc for `entry.client`,
`entry.rsc`, `entry.ssr`
([#​14904](https://redirect.github.com/remix-run/react-router/pull/14904))
- Updated dependencies:
- `react-router@7.14.0`
- `@react-router/node@7.14.0`
- `@react-router/serve@7.14.0`
</details>
<details>
<summary>remix-run/react-router (@​react-router/node)</summary>
###
[`v7.14.0`](https://redirect.github.com/remix-run/react-router/blob/HEAD/packages/react-router-node/CHANGELOG.md#7140)
[Compare
Source](https://redirect.github.com/remix-run/react-router/compare/@react-router/node@7.13.2...@react-router/node@7.14.0)
##### Patch Changes
- Updated dependencies:
- `react-router@7.14.0`
</details>
<details>
<summary>remix-run/react-router (@​react-router/serve)</summary>
###
[`v7.14.0`](https://redirect.github.com/remix-run/react-router/blob/HEAD/packages/react-router-serve/CHANGELOG.md#7140)
[Compare
Source](https://redirect.github.com/remix-run/react-router/compare/@react-router/serve@7.13.2...@react-router/serve@7.14.0)
##### Patch Changes
- Updated dependencies:
- `react-router@7.14.0`
- `@react-router/node@7.14.0`
- `@react-router/express@7.14.0`
</details>
<details>
<summary>remix-run/react-router (react-router)</summary>
###
[`v7.14.0`](https://redirect.github.com/remix-run/react-router/blob/HEAD/packages/react-router/CHANGELOG.md#7140)
[Compare
Source](https://redirect.github.com/remix-run/react-router/compare/react-router@7.13.2...react-router@7.14.0)
##### Patch Changes
- UNSTABLE RSC FRAMEWORK MODE BREAKING CHANGE - Existing route module
exports remain unchanged from stable v7 non-RSC mode, but new exports
are added for RSC mode. If you want to use RSC features, you will need
to update your route modules to export the new annotations.
([#​14901](https://redirect.github.com/remix-run/react-router/pull/14901))
If you are using RSC framework mode currently, you will need to update
your route modules to the new conventions. The following route module
components have their own mutually exclusive server component
counterparts:
| Server Component Export | Client Component |
| ----------------------- | ----------------- |
| `ServerComponent` | `default` |
| `ServerErrorBoundary` | `ErrorBoundary` |
| `ServerLayout` | `Layout` |
| `ServerHydrateFallback` | `HydrateFallback` |
If you were previously exporting a `ServerComponent`, your
`ErrorBoundary`, `Layout`, and `HydrateFallback` were also server
components. If you want to keep those as server components, you can
rename them and prefix them with `Server`. If you were previously
importing the implementations of those components from a client module,
you can simply inline them.
Example:
Before
```tsx
import { ErrorBoundary as ClientErrorBoundary } from "./client";
export function ServerComponent() {
// ...
}
export function ErrorBoundary() {
return <ClientErrorBoundary />;
}
export function Layout() {
// ...
}
export function HydrateFallback() {
// ...
}
```
After
```tsx
export function ServerComponent() {
// ...
}
export function ErrorBoundary() {
// previous implementation of ClientErrorBoundary, this is now a client
component
}
export function ServerLayout() {
// rename previous Layout export to ServerLayout to make it a server
component
}
export function ServerHydrateFallback() {
// rename previous HydrateFallback export to ServerHydrateFallback to
make it a server component
}
```
- rsc Link prefetch
([#​14902](https://redirect.github.com/remix-run/react-router/pull/14902))
- Remove recursion from turbo-stream v2 allowing for encoding / decoding
of massive payloads.
([#​14838](https://redirect.github.com/remix-run/react-router/pull/14838))
- encodeViaTurboStream leaked memory via unremoved AbortSignal listener
([#​14900](https://redirect.github.com/remix-run/react-router/pull/14900))
</details>
<details>
<summary>typescript-eslint/typescript-eslint
(typescript-eslint)</summary>
###
[`v8.58.0`](https://redirect.github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/typescript-eslint/CHANGELOG.md#8580-2026-03-30)
[Compare
Source](https://redirect.github.com/typescript-eslint/typescript-eslint/compare/v8.57.2...v8.58.0)
##### 🚀 Features
- support TypeScript 6
([#​12124](https://redirect.github.com/typescript-eslint/typescript-eslint/pull/12124))
##### ❤️ Thank You
- Evyatar Daud
[@​StyleShit](https://redirect.github.com/StyleShit)
See [GitHub
Releases](https://redirect.github.com/typescript-eslint/typescript-eslint/releases/tag/v8.58.0)
for more information.
You can read about our [versioning
strategy](https://typescript-eslint.io/users/versioning) and
[releases](https://typescript-eslint.io/users/releases) on our website.
</details>
---
### Configuration
📅 **Schedule**: Branch creation - Between 12:00 AM and 03:59 AM, only on
Monday ( * 0-3 * * 1 ) (UTC), Automerge - At any time (no schedule
defined).
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.
👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config
help](https://redirect.github.com/renovatebot/renovate/discussions) if
that's undesired.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/UI5/webcomponents-react).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xMDIuMTEiLCJ1cGRhdGVkSW5WZXIiOiI0My4xMDIuMTEiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbImRlcGVuZGVuY2llcyJdfQ==-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>1 parent ebe3d64 commit d6e03d5
8 files changed
Lines changed: 351 additions & 351 deletions
File tree
- examples
- react-router-ts
- vite-ts
- templates/vite-ts
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
11 | 11 | | |
12 | 12 | | |
13 | 13 | | |
14 | | - | |
15 | | - | |
| 14 | + | |
| 15 | + | |
16 | 16 | | |
17 | 17 | | |
18 | 18 | | |
| |||
21 | 21 | | |
22 | 22 | | |
23 | 23 | | |
24 | | - | |
| 24 | + | |
25 | 25 | | |
26 | 26 | | |
27 | | - | |
| 27 | + | |
28 | 28 | | |
29 | 29 | | |
30 | 30 | | |
| |||
35 | 35 | | |
36 | 36 | | |
37 | 37 | | |
38 | | - | |
| 38 | + | |
39 | 39 | | |
40 | 40 | | |
41 | 41 | | |
| |||
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
21 | 21 | | |
22 | 22 | | |
23 | 23 | | |
24 | | - | |
| 24 | + | |
25 | 25 | | |
26 | 26 | | |
27 | 27 | | |
| |||
33 | 33 | | |
34 | 34 | | |
35 | 35 | | |
36 | | - | |
| 36 | + | |
37 | 37 | | |
38 | 38 | | |
39 | 39 | | |
0 commit comments