Skip to content

Commit d6e03d5

Browse files
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) | ![age](https://developer.mend.io/api/mc/badges/age/npm/@react-router%2fdev/7.14.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@react-router%2fdev/7.13.2/7.14.0?slim=true) | | [@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) | ![age](https://developer.mend.io/api/mc/badges/age/npm/@react-router%2fnode/7.14.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@react-router%2fnode/7.13.2/7.14.0?slim=true) | | [@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) | ![age](https://developer.mend.io/api/mc/badges/age/npm/@react-router%2fserve/7.14.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@react-router%2fserve/7.13.2/7.14.0?slim=true) | | [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) | ![age](https://developer.mend.io/api/mc/badges/age/npm/react-router/7.14.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/react-router/7.13.2/7.14.0?slim=true) | | [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) | ![age](https://developer.mend.io/api/mc/badges/age/npm/typescript-eslint/8.58.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/typescript-eslint/8.57.2/8.58.0?slim=true) | --- ### Release Notes <details> <summary>remix-run/react-router (@&#8203;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 ([#&#8203;14876](https://redirect.github.com/remix-run/react-router/pull/14876)) ##### Patch Changes - support for prerendering multiple server bundles with v8\_viteEnvironmentApi ([#&#8203;14921](https://redirect.github.com/remix-run/react-router/pull/14921)) - rsc framework mode prerender / spa mode support ([#&#8203;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. ([#&#8203;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` ([#&#8203;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 (@&#8203;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 (@&#8203;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. ([#&#8203;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 ([#&#8203;14902](https://redirect.github.com/remix-run/react-router/pull/14902)) - Remove recursion from turbo-stream v2 allowing for encoding / decoding of massive payloads. ([#&#8203;14838](https://redirect.github.com/remix-run/react-router/pull/14838)) - encodeViaTurboStream leaked memory via unremoved AbortSignal listener ([#&#8203;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 ([#&#8203;12124](https://redirect.github.com/typescript-eslint/typescript-eslint/pull/12124)) ##### ❤️ Thank You - Evyatar Daud [@&#8203;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/package-lock.json

Lines changed: 107 additions & 107 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/react-router-ts/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
"typecheck": "react-router typegen && tsc"
1212
},
1313
"dependencies": {
14-
"@react-router/node": "7.13.2",
15-
"@react-router/serve": "7.13.2",
14+
"@react-router/node": "7.14.0",
15+
"@react-router/serve": "7.14.0",
1616
"@ui5/webcomponents": "2.20.2",
1717
"@ui5/webcomponents-base": "2.20.2",
1818
"@ui5/webcomponents-fiori": "2.20.2",
@@ -21,10 +21,10 @@
2121
"isbot": "5.1.37",
2222
"react": "19.2.4",
2323
"react-dom": "19.2.4",
24-
"react-router": "7.13.2"
24+
"react-router": "7.14.0"
2525
},
2626
"devDependencies": {
27-
"@react-router/dev": "7.13.2",
27+
"@react-router/dev": "7.14.0",
2828
"@types/react": "19.2.14",
2929
"@types/react-dom": "19.2.3",
3030
"eslint": "9.39.4",
@@ -35,7 +35,7 @@
3535
"eslint-plugin-react-hooks": "7.0.1",
3636
"globals": "17.4.0",
3737
"typescript": "5.9.3",
38-
"typescript-eslint": "8.57.2",
38+
"typescript-eslint": "8.58.0",
3939
"vite": "7.3.2",
4040
"vite-tsconfig-paths": "6.1.1"
4141
},

examples/vite-ts/package-lock.json

Lines changed: 81 additions & 81 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/vite-ts/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"@ui5/webcomponents-react": "2.20.1",
2222
"react": "19.2.4",
2323
"react-dom": "19.2.4",
24-
"react-router": "7.13.2"
24+
"react-router": "7.14.0"
2525
},
2626
"devDependencies": {
2727
"@types/react": "19.2.14",
@@ -33,7 +33,7 @@
3333
"eslint-plugin-react-hooks": "7.0.1",
3434
"eslint-plugin-react-refresh": "0.5.2",
3535
"globals": "17.4.0",
36-
"typescript-eslint": "8.57.2",
36+
"typescript-eslint": "8.58.0",
3737
"vite": "8.0.5"
3838
}
3939
}

0 commit comments

Comments
 (0)