Commit cf41864
authored
chore(deps): update all non-major dependencies (examples & templates) (minor) (#6487)
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@remix-run/dev](https://remix.run)
([source](https://redirect.github.com/remix-run/remix/tree/HEAD/packages/remix-dev))
| [`2.12.1` ->
`2.13.1`](https://renovatebot.com/diffs/npm/@remix-run%2fdev/2.12.1/2.13.1)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
| [@remix-run/node](https://redirect.github.com/remix-run/remix)
([source](https://redirect.github.com/remix-run/remix/tree/HEAD/packages/remix-node))
| [`2.12.1` ->
`2.13.1`](https://renovatebot.com/diffs/npm/@remix-run%2fnode/2.12.1/2.13.1)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
| [@remix-run/react](https://redirect.github.com/remix-run/remix)
([source](https://redirect.github.com/remix-run/remix/tree/HEAD/packages/remix-react))
| [`2.12.1` ->
`2.13.1`](https://renovatebot.com/diffs/npm/@remix-run%2freact/2.12.1/2.13.1)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
| [@remix-run/serve](https://redirect.github.com/remix-run/remix)
([source](https://redirect.github.com/remix-run/remix/tree/HEAD/packages/remix-serve))
| [`2.12.1` ->
`2.13.1`](https://renovatebot.com/diffs/npm/@remix-run%2fserve/2.12.1/2.13.1)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
| [globals](https://redirect.github.com/sindresorhus/globals) |
[`15.10.0` ->
`15.11.0`](https://renovatebot.com/diffs/npm/globals/15.10.0/15.11.0) |
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
| [react-router-dom](https://redirect.github.com/remix-run/react-router)
([source](https://redirect.github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom))
| [`6.26.2` ->
`6.27.0`](https://renovatebot.com/diffs/npm/react-router-dom/6.26.2/6.27.0)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
---
### Release Notes
<details>
<summary>remix-run/remix (@​remix-run/dev)</summary>
###
[`v2.13.1`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-dev/CHANGELOG.md#2131)
[Compare
Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/[email protected]...@remix-run/[email protected])
##### Patch Changes
- Revert `future.v3_optimizeDeps` back to `future.unstable_optimizeDeps`
as it was not intended to stabilize in Remix v2
([#​10099](https://redirect.github.com/remix-run/remix/pull/10099))
- Updated dependencies:
- `@remix-run/[email protected]`
- `@remix-run/[email protected]`
###
[`v2.13.0`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-dev/CHANGELOG.md#2130)
[Compare
Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/[email protected]...@remix-run/[email protected])
##### Minor Changes
- Stabilize the `future.unstable_optimizeDeps` flag into
`future.v3_optimizeDeps`
([#​10092](https://redirect.github.com/remix-run/remix/pull/10092))
- Stabilize React Router APIs in Remix
([#​9980](https://redirect.github.com/remix-run/remix/pull/9980))
- Adopt stabilized React Router APIs internally
- Single Fetch: `unstable_dataStrategy` -> `dataStrategy`
- Lazy Route Discovery: `unstable_patchRoutesOnNavigation` ->
`patchRoutesOnNavigation`
- Stabilize public-facing APIs
- Single Fetch: `unstable_data()` -> `data()`
- `unstable_viewTransition` -> `viewTransition` (`Link`, `Form`,
`navigate`, `submit`)
- `unstable_flushSync>` -> `<Link viewTransition>` (`Link`, `Form`,
`navigate`, `submit`, `useFetcher`)
- Stabilize future flags
([#​10072](https://redirect.github.com/remix-run/remix/pull/10072))
- `future.unstable_singleFetch` -> `future.v3_singleFetch`
- `future.unstable_lazyRouteDiscovery` -> `future.v3_lazyRouteDiscovery`
##### Patch Changes
- Stop passing `request.signal` as the `renderToReadableStream` `signal`
to abort server rendering for cloudflare/deno runtimes because by the
time that `request` is aborted, aborting the rendering is useless
because there's no way for React to flush down the unresolved boundaries
([#​10047](https://redirect.github.com/remix-run/remix/pull/10047))
- This has been incorrect for some time, but only recently exposed due
to a bug in how we were aborting requests when running via `remix
vite:dev` because we were incorrectly aborting requests after successful
renders - which was causing us to abort a completed React render, and
try to close an already closed `ReadableStream`.
- This has likely not shown up in any production scenarios because
cloudflare/deno production runtimes are (correctly) not aborting the
`request.signal` on successful renders
- The built-in `entry.server` files no longer pass a `signal` to
`renderToReadableStream` because adding a timeout-based abort signal to
the default behavior would constitute a breaking change
- Users can configure this abort behavior via their own `entry.server`
via `remix reveal entry.server`, and the template entry.server files
have been updated with an example approach for newly created Remix apps
- Fix adapter logic for aborting `request.signal` so we don't
incorrectly abort on the `close` event for successful requests
([#​10046](https://redirect.github.com/remix-run/remix/pull/10046))
- Updated dependencies:
- `@remix-run/[email protected]`
- `@remix-run/[email protected]`
</details>
<details>
<summary>remix-run/remix (@​remix-run/node)</summary>
###
[`v2.13.1`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-node/CHANGELOG.md#2131)
[Compare
Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/[email protected]...@remix-run/[email protected])
##### Patch Changes
- Updated dependencies:
- `@remix-run/[email protected]`
###
[`v2.13.0`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-node/CHANGELOG.md#2130)
[Compare
Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/[email protected]...@remix-run/[email protected])
##### Patch Changes
- Updated dependencies:
- `@remix-run/[email protected]`
</details>
<details>
<summary>remix-run/remix (@​remix-run/react)</summary>
###
[`v2.13.1`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-react/CHANGELOG.md#2131)
[Compare
Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/[email protected]...@remix-run/[email protected])
##### Patch Changes
- Updated dependencies:
- `@remix-run/[email protected]`
###
[`v2.13.0`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-react/CHANGELOG.md#2130)
[Compare
Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/[email protected]...@remix-run/[email protected])
##### Minor Changes
- Stabilize React Router APIs in Remix
([#​9980](https://redirect.github.com/remix-run/remix/pull/9980))
- Adopt stabilized React Router APIs internally
- Single Fetch: `unstable_dataStrategy` -> `dataStrategy`
- Lazy Route Discovery: `unstable_patchRoutesOnNavigation` ->
`patchRoutesOnNavigation`
- Stabilize public-facing APIs
- Single Fetch: `unstable_data()` -> `data()`
- `unstable_viewTransition` -> `viewTransition` (`Link`, `Form`,
`navigate`, `submit`)
- `unstable_flushSync>` -> `<Link viewTransition>` (`Link`, `Form`,
`navigate`, `submit`, `useFetcher`)
- Stabilize future flags
([#​10072](https://redirect.github.com/remix-run/remix/pull/10072))
- `future.unstable_singleFetch` -> `future.v3_singleFetch`
- `future.unstable_lazyRouteDiscovery` -> `future.v3_lazyRouteDiscovery`
##### Patch Changes
- Fix bug with `clientLoader.hydrate` in a layout route when hydrating
with bubbled errors
([#​10063](https://redirect.github.com/remix-run/remix/pull/10063))
- Updated dependencies:
- `@remix-run/[email protected]`
</details>
<details>
<summary>remix-run/remix (@​remix-run/serve)</summary>
###
[`v2.13.1`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-serve/CHANGELOG.md#2131)
[Compare
Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/[email protected]...@remix-run/[email protected])
##### Patch Changes
- Updated dependencies:
- `@remix-run/[email protected]`
- `@remix-run/[email protected]`
###
[`v2.13.0`](https://redirect.github.com/remix-run/remix/blob/HEAD/packages/remix-serve/CHANGELOG.md#2130)
[Compare
Source](https://redirect.github.com/remix-run/remix/compare/@remix-run/[email protected]...@remix-run/[email protected])
##### Patch Changes
- Updated dependencies:
- `@remix-run/[email protected]`
- `@remix-run/[email protected]`
</details>
<details>
<summary>sindresorhus/globals (globals)</summary>
###
[`v15.11.0`](https://redirect.github.com/sindresorhus/globals/compare/v15.10.0...0d906b86787a982313b4d44c43a4abfd83d95e95)
[Compare
Source](https://redirect.github.com/sindresorhus/globals/compare/v15.10.0...v15.11.0)
</details>
<details>
<summary>remix-run/react-router (react-router-dom)</summary>
###
[`v6.27.0`](https://redirect.github.com/remix-run/react-router/compare/[email protected]@6.27.0)
[Compare
Source](https://redirect.github.com/remix-run/react-router/compare/[email protected]@6.27.0)
</details>
---
### Configuration
📅 **Schedule**: Branch creation - "before 4am on Monday" (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/SAP/ui5-webcomponents-react).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4xMTUuMSIsInVwZGF0ZWRJblZlciI6IjM4LjExNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>1 parent 5e293cb commit cf41864
File tree
3 files changed
+66
-66
lines changed- examples
- remix-ts
- vite-ts
- templates/vite-ts
3 files changed
+66
-66
lines changedSome generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
0 commit comments