Commit 70a1a81
authored
chore(deps-dev): bump the dev-dependencies-minor-patch group across 1 directory with 13 updates (#1475)
Bumps the dev-dependencies-minor-patch group with 13 updates in the /
directory:
| Package | From | To |
| --- | --- | --- |
|
[@cloudflare/vitest-pool-workers](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/vitest-pool-workers)
| `0.12.21` | `0.13.0` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.8.3` |
`5.9.3` |
|
[@tanstack/solid-query](https://github.com/TanStack/query/tree/HEAD/packages/solid-query)
| `5.90.23` | `5.90.26` |
| [svelte](https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte)
| `5.53.10` | `5.53.11` |
| [@cloudflare/workers-types](https://github.com/cloudflare/workerd) |
`4.20260310.1` | `4.20260313.1` |
| [@upstash/redis](https://github.com/upstash/redis-js) | `1.36.4` |
`1.37.0` |
|
[@angular/core](https://github.com/angular/angular/tree/HEAD/packages/core)
| `21.2.2` | `21.2.4` |
|
[@cloudflare/vite-plugin](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/vite-plugin-cloudflare)
| `1.27.0` | `1.28.0` |
|
[@scalar/api-reference-react](https://github.com/scalar/scalar/tree/HEAD/packages/api-reference-react)
| `0.9.5` | `0.9.8` |
|
[wrangler](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler)
| `4.72.0` | `4.73.0` |
| [nuxt](https://github.com/nuxt/nuxt/tree/HEAD/packages/nuxt) | `4.3.1`
| `4.4.2` |
|
[@sveltejs/kit](https://github.com/sveltejs/kit/tree/HEAD/packages/kit)
| `2.53.4` | `2.55.0` |
|
[@tanstack/react-start](https://github.com/TanStack/router/tree/HEAD/packages/react-start)
| `1.166.7` | `1.166.8` |
Updates `@cloudflare/vitest-pool-workers` from 0.12.21 to 0.13.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/cloudflare/workers-sdk/releases"><code>@cloudflare/vitest-pool-workers</code>'s
releases</a>.</em></p>
<blockquote>
<h2><code>@cloudflare/vitest-pool-workers</code><a
href="https://github.com/0"><code>@0</code></a>.13.0</h2>
<h3>Minor Changes</h3>
<ul>
<li>
<p><a
href="https://redirect.github.com/cloudflare/workers-sdk/pull/11632">#11632</a>
<a
href="https://github.com/cloudflare/workers-sdk/commit/a6ddbdb2b67978377dda1acda289fe21eb0892bd"><code>a6ddbdb</code></a>
Thanks <a
href="https://github.com/penalosa"><code>@penalosa</code></a>! -
Support Vitest 4 in <code>@cloudflare/vitest-pool-workers</code>.</p>
<p>This a breaking change to the
<code>@cloudflare/vitest-pool-workers</code> integration in order to
support Vitest v4. Along with supporting Vitest v4 (and dropping support
for Vitest v2 and v3), we've made a number of changes that may require
changes to your tests. Our aim has been to improve stability & the
foundations of <code>@cloudflare/vitest-pool-workers</code> as we move
towards a v1 release of the package.</p>
<p>We've made a codemod to make the migration easier, which will make
the required changes to your config file:</p>
<pre lang="sh"><code>npx jscodeshift -t
node_modules/@cloudflare/vitest-pool-workers/dist/codemods/vitest-v3-to-v4.mjs
vitest.config.ts
</code></pre>
<p>Or, without installing the package first:</p>
<pre lang="sh"><code>npx jscodeshift -t
https://unpkg.com/@cloudflare/vitest-pool-workers/dist/codemods/vitest-v3-to-v4.mjs
--parser=ts vitest.config.ts
</code></pre>
<ul>
<li>
<p><strong>Config API:</strong> <code>defineWorkersProject</code> and
<code>defineWorkersConfig</code> from
<code>@cloudflare/vitest-pool-workers/config</code> have been replaced
with a <code>cloudflareTest()</code> Vite plugin exported from
<code>@cloudflare/vitest-pool-workers</code>. The
<code>test.poolOptions.workers</code> options are now passed directly to
<code>cloudflareTest()</code>:</p>
<p>Before:</p>
<pre lang="ts"><code>import { defineWorkersProject } from
"@cloudflare/vitest-pool-workers/config";
<p>export default defineWorkersProject({
test: {
poolOptions: {
workers: {
wrangler: { configPath: "./wrangler.jsonc" },
},
},
},
});
</code></pre></p>
<p>After:</p>
<pre lang="ts"><code>import { cloudflareTest } from
"@cloudflare/vitest-pool-workers";
import { defineConfig } from "vitest/config";
<p>export default defineConfig({
plugins: [
cloudflareTest({
wrangler: { configPath: "./wrangler.jsonc" },
}),
],
});
</code></pre></p>
</li>
</ul>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/cloudflare/workers-sdk/blob/main/packages/vitest-pool-workers/CHANGELOG.md"><code>@cloudflare/vitest-pool-workers</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>0.13.0</h2>
<h3>Minor Changes</h3>
<ul>
<li>
<p><a
href="https://redirect.github.com/cloudflare/workers-sdk/pull/11632">#11632</a>
<a
href="https://github.com/cloudflare/workers-sdk/commit/a6ddbdb2b67978377dda1acda289fe21eb0892bd"><code>a6ddbdb</code></a>
Thanks <a
href="https://github.com/penalosa"><code>@penalosa</code></a>! -
Support Vitest 4 in <code>@cloudflare/vitest-pool-workers</code>.</p>
<p>This a breaking change to the
<code>@cloudflare/vitest-pool-workers</code> integration in order to
support Vitest v4. Along with supporting Vitest v4 (and dropping support
for Vitest v2 and v3), we've made a number of changes that may require
changes to your tests. Our aim has been to improve stability & the
foundations of <code>@cloudflare/vitest-pool-workers</code> as we move
towards a v1 release of the package.</p>
<p>We've made a codemod to make the migration easier, which will make
the required changes to your config file:</p>
<pre lang="sh"><code>npx jscodeshift -t
node_modules/@cloudflare/vitest-pool-workers/dist/codemods/vitest-v3-to-v4.mjs
vitest.config.ts
</code></pre>
<p>Or, without installing the package first:</p>
<pre lang="sh"><code>npx jscodeshift -t
https://unpkg.com/@cloudflare/vitest-pool-workers/dist/codemods/vitest-v3-to-v4.mjs
--parser=ts vitest.config.ts
</code></pre>
<ul>
<li>
<p><strong>Config API:</strong> <code>defineWorkersProject</code> and
<code>defineWorkersConfig</code> from
<code>@cloudflare/vitest-pool-workers/config</code> have been replaced
with a <code>cloudflareTest()</code> Vite plugin exported from
<code>@cloudflare/vitest-pool-workers</code>. The
<code>test.poolOptions.workers</code> options are now passed directly to
<code>cloudflareTest()</code>:</p>
<p>Before:</p>
<pre lang="ts"><code>import { defineWorkersProject } from
"@cloudflare/vitest-pool-workers/config";
<p>export default defineWorkersProject({
test: {
poolOptions: {
workers: {
wrangler: { configPath: "./wrangler.jsonc" },
},
},
},
});
</code></pre></p>
<p>After:</p>
<pre lang="ts"><code>import { cloudflareTest } from
"@cloudflare/vitest-pool-workers";
import { defineConfig } from "vitest/config";
<p>export default defineConfig({
plugins: [
cloudflareTest({
wrangler: { configPath: "./wrangler.jsonc" },
}),
],
</code></pre></p>
</li>
</ul>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/cloudflare/workers-sdk/commit/25b090a30162f85c0b5b289cd2ee30410928d027"><code>25b090a</code></a>
Version Packages (<a
href="https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/vitest-pool-workers/issues/12840">#12840</a>)</li>
<li><a
href="https://github.com/cloudflare/workers-sdk/commit/22b51cd10db4cf37291a77e6e10356bdc039dc64"><code>22b51cd</code></a>
Revert "[Workflows] Implement Workflows instance methods" (<a
href="https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/vitest-pool-workers/issues/12872">#12872</a>)</li>
<li><a
href="https://github.com/cloudflare/workers-sdk/commit/de6e6b132217135be03bae766f24e221e328dbc8"><code>de6e6b1</code></a>
fix(vitest-pool-workers): update peer dependency for vitest to 4.1 (<a
href="https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/vitest-pool-workers/issues/12867">#12867</a>)</li>
<li><a
href="https://github.com/cloudflare/workers-sdk/commit/8d4ef788efb10376ec1f91d6c846e65bb478e5d8"><code>8d4ef78</code></a>
[Workflows] Implement Workflows instance methods (<a
href="https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/vitest-pool-workers/issues/12814">#12814</a>)</li>
<li><a
href="https://github.com/cloudflare/workers-sdk/commit/a31ee0b0c793532382f0473afd04d3c241d04724"><code>a31ee0b</code></a>
[workers-playground] Migrate from Cloudflare Pages to Cloudflare Workers
(<a
href="https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/vitest-pool-workers/issues/12">#12</a>...</li>
<li><a
href="https://github.com/cloudflare/workers-sdk/commit/a6ddbdb2b67978377dda1acda289fe21eb0892bd"><code>a6ddbdb</code></a>
Support Vitest 4 in <code>@cloudflare/vitest-pool-workers</code> (<a
href="https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/vitest-pool-workers/issues/11632">#11632</a>)</li>
<li>See full diff in <a
href="https://github.com/cloudflare/workers-sdk/commits/@cloudflare/vitest-pool-workers@0.13.0/packages/vitest-pool-workers">compare
view</a></li>
</ul>
</details>
<br />
Updates `typescript` from 5.8.3 to 5.9.3
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/microsoft/TypeScript/releases">typescript's
releases</a>.</em></p>
<blockquote>
<h2>TypeScript 5.9.3</h2>
<p>Note: this tag was recreated to point at the correct commit. The npm
package contained the correct content.</p>
<p>For release notes, check out the <a
href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-9/">release
announcement</a></p>
<ul>
<li><a
href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&q=milestone%3A%22TypeScript+5.9.0%22+is%3Aclosed+">fixed
issues query for Typescript 5.9.0 (Beta)</a>.</li>
<li><a
href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&q=milestone%3A%22TypeScript+5.9.1%22+is%3Aclosed+">fixed
issues query for Typescript 5.9.1 (RC)</a>.</li>
<li><em>No specific changes for TypeScript 5.9.2 (Stable)</em></li>
<li><a
href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&q=milestone%3A%22TypeScript+5.9.3%22+is%3Aclosed+">fixed
issues query for Typescript 5.9.3 (Stable)</a>.</li>
</ul>
<p>Downloads are available on:</p>
<ul>
<li><a href="https://www.npmjs.com/package/typescript">npm</a></li>
</ul>
<h2>TypeScript 5.9</h2>
<p>Note: this tag was recreated to point at the correct commit. The npm
package contained the correct content.</p>
<p>For release notes, check out the <a
href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-9/">release
announcement</a></p>
<ul>
<li><a
href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&q=milestone%3A%22TypeScript+5.9.0%22+is%3Aclosed+">fixed
issues query for Typescript 5.9.0 (Beta)</a>.</li>
<li><a
href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&q=milestone%3A%22TypeScript+5.9.1%22+is%3Aclosed+">fixed
issues query for Typescript 5.9.1 (RC)</a>.</li>
<li><em>No specific changes for TypeScript 5.9.2 (Stable)</em></li>
</ul>
<p>Downloads are available on:</p>
<ul>
<li><a href="https://www.npmjs.com/package/typescript">npm</a></li>
</ul>
<h2>TypeScript 5.9 RC</h2>
<p>Note: this tag was recreated to point at the correct commit. The npm
package contained the correct content.</p>
<p>For release notes, check out the <a
href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-9-rc/">release
announcement</a></p>
<ul>
<li><a
href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&q=milestone%3A%22TypeScript+5.9.0%22+is%3Aclosed+">fixed
issues query for Typescript 5.9.0 (Beta)</a>.</li>
<li><a
href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&q=milestone%3A%22TypeScript+5.9.1%22+is%3Aclosed+">fixed
issues query for Typescript 5.9.1 (RC)</a>.</li>
</ul>
<p>Downloads are available on:</p>
<ul>
<li><a href="https://www.npmjs.com/package/typescript">npm</a></li>
</ul>
<h2>TypeScript 5.9 Beta</h2>
<p>Note: this tag was recreated to point at the correct commit. The npm
package contained the correct content.</p>
<p>For release notes, check out the <a
href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-9-beta/">release
announcement</a>.</p>
<ul>
<li><a
href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&q=milestone%3A%22TypeScript+5.9.0%22+is%3Aclosed+">fixed
issues query for Typescript 5.9.0 (Beta)</a>.</li>
</ul>
<p>Downloads are available on:</p>
<ul>
<li><a href="https://www.npmjs.com/package/typescript">npm</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/microsoft/TypeScript/commit/c63de15a992d37f0d6cec03ac7631872838602cb"><code>c63de15</code></a>
Bump version to 5.9.3 and LKG</li>
<li><a
href="https://github.com/microsoft/TypeScript/commit/8428ca4cc8a7ecc9ac18dd0258016228814f5eaf"><code>8428ca4</code></a>
🤖 Pick PR <a
href="https://redirect.github.com/microsoft/TypeScript/issues/62438">#62438</a>
(Fix incorrectly ignored dts file fr...) into release-5.9 (#...</li>
<li><a
href="https://github.com/microsoft/TypeScript/commit/a131cac6831aa6532ea963d0cb3131b957cad980"><code>a131cac</code></a>
🤖 Pick PR <a
href="https://redirect.github.com/microsoft/TypeScript/issues/62351">#62351</a>
(Add missing Float16Array constructo...) into release-5.9 (#...</li>
<li><a
href="https://github.com/microsoft/TypeScript/commit/04243333584a5bfaeb3434c0982c6280fe87b8d5"><code>0424333</code></a>
🤖 Pick PR <a
href="https://redirect.github.com/microsoft/TypeScript/issues/62423">#62423</a>
(Revert PR 61928) into release-5.9 (<a
href="https://redirect.github.com/microsoft/TypeScript/issues/62425">#62425</a>)</li>
<li><a
href="https://github.com/microsoft/TypeScript/commit/bdb641a4347af822916fb8cdb9894c9c2d2421dd"><code>bdb641a</code></a>
🤖 Pick PR <a
href="https://redirect.github.com/microsoft/TypeScript/issues/62311">#62311</a>
(Fix parenthesizer rules for manuall...) into release-5.9 (#...</li>
<li><a
href="https://github.com/microsoft/TypeScript/commit/0d9b9b92e2aca2f75c979a801abbc21bff473748"><code>0d9b9b9</code></a>
🤖 Pick PR <a
href="https://redirect.github.com/microsoft/TypeScript/issues/61978">#61978</a>
(Restructure CI to prepare for requi...) into release-5.9 (#...</li>
<li><a
href="https://github.com/microsoft/TypeScript/commit/2dce0c58af51cf9a9068365dc2f756c61b82b597"><code>2dce0c5</code></a>
Intentionally regress one buggy declaration output to an older version
(<a
href="https://redirect.github.com/microsoft/TypeScript/issues/62163">#62163</a>)</li>
<li><a
href="https://github.com/microsoft/TypeScript/commit/5be33469d551655d878876faa9e30aa3b49f8ee9"><code>5be3346</code></a>
Bump version to 5.9.2 and LKG</li>
<li><a
href="https://github.com/microsoft/TypeScript/commit/ad825f2bee3362886d642c48cb97c82df82b3ddb"><code>ad825f2</code></a>
Bump version to 5.9.1-rc and LKG</li>
<li><a
href="https://github.com/microsoft/TypeScript/commit/463a5bf92c3597dc14f252517c10a1bef7ac2f4c"><code>463a5bf</code></a>
Update LKG</li>
<li>Additional commits viewable in <a
href="https://github.com/microsoft/TypeScript/compare/v5.8.3...v5.9.3">compare
view</a></li>
</ul>
</details>
<br />
Updates `@tanstack/solid-query` from 5.90.23 to 5.90.26
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/TanStack/query/releases"><code>@tanstack/solid-query</code>'s
releases</a>.</em></p>
<blockquote>
<h2><code>@tanstack/solid-query</code><a
href="https://github.com/5"><code>@5</code></a>.90.26</h2>
<h3>Patch Changes</h3>
<ul>
<li>fix(solid-router): should only have useQueryClient/useIsRestoring
due to context read (<a
href="https://redirect.github.com/TanStack/query/pull/10262">#10262</a>)</li>
</ul>
<h2><code>@tanstack/solid-query</code><a
href="https://github.com/5"><code>@5</code></a>.90.25</h2>
<h3>Patch Changes</h3>
<ul>
<li>fix: allow both create/use for solid (<a
href="https://redirect.github.com/TanStack/query/pull/10260">#10260</a>)</li>
</ul>
<h2><code>@tanstack/solid-query-persist-client</code><a
href="https://github.com/5"><code>@5</code></a>.90.24</h2>
<h3>Patch Changes</h3>
<ul>
<li>Updated dependencies [<a
href="https://github.com/TanStack/query/commit/978fc52728a8b9eb33f0a82f4ddf42a95815bd7f"><code>978fc52</code></a>]:
<ul>
<li><code>@tanstack/query-persist-client-core</code><a
href="https://github.com/5"><code>@5</code></a>.92.0</li>
</ul>
</li>
</ul>
<h2><code>@tanstack/solid-query</code><a
href="https://github.com/5"><code>@5</code></a>.90.24</h2>
<h3>Patch Changes</h3>
<ul>
<li>fix: forward generic parameters in deprecated type aliases (<a
href="https://redirect.github.com/TanStack/query/pull/10093">#10093</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/TanStack/query/blob/main/packages/solid-query/CHANGELOG.md"><code>@tanstack/solid-query</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>5.90.26</h2>
<h3>Patch Changes</h3>
<ul>
<li>fix(solid-router): should only have useQueryClient/useIsRestoring
due to context read (<a
href="https://redirect.github.com/TanStack/query/pull/10262">#10262</a>)</li>
</ul>
<h2>5.90.25</h2>
<h3>Patch Changes</h3>
<ul>
<li>fix: allow both create/use for solid (<a
href="https://redirect.github.com/TanStack/query/pull/10260">#10260</a>)</li>
</ul>
<h2>5.90.24</h2>
<h3>Patch Changes</h3>
<ul>
<li>fix: forward generic parameters in deprecated type aliases (<a
href="https://redirect.github.com/TanStack/query/pull/10093">#10093</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/TanStack/query/commit/489359a569fd865f3afd7aac8fa43dfc429309e3"><code>489359a</code></a>
ci: Version Packages (<a
href="https://github.com/TanStack/query/tree/HEAD/packages/solid-query/issues/10263">#10263</a>)</li>
<li><a
href="https://github.com/TanStack/query/commit/c3f5d6a5470592530e575a41b77cce5c64bdefbc"><code>c3f5d6a</code></a>
fix(solid-router): useIsRestoring and useQueryClient (<a
href="https://github.com/TanStack/query/tree/HEAD/packages/solid-query/issues/10262">#10262</a>)</li>
<li><a
href="https://github.com/TanStack/query/commit/89a889da5f209e9908a5c63e1176beb148b27762"><code>89a889d</code></a>
ci: Version Packages (<a
href="https://github.com/TanStack/query/tree/HEAD/packages/solid-query/issues/10261">#10261</a>)</li>
<li><a
href="https://github.com/TanStack/query/commit/5303191e66395f438dcf5147efb55cd5c90a2ec5"><code>5303191</code></a>
fix(solid-query): allow both create/use syntax (<a
href="https://github.com/TanStack/query/tree/HEAD/packages/solid-query/issues/10260">#10260</a>)</li>
<li><a
href="https://github.com/TanStack/query/commit/0635a4ae9dd1351ef9c2b91c50684286df03c18e"><code>0635a4a</code></a>
ci: Version Packages (<a
href="https://github.com/TanStack/query/tree/HEAD/packages/solid-query/issues/10259">#10259</a>)</li>
<li><a
href="https://github.com/TanStack/query/commit/8b936b3896fcea1fccec8dfe6384cf1f8cff75a1"><code>8b936b3</code></a>
fix(solid-query): forward generic parameters in deprecated type aliases
(<a
href="https://github.com/TanStack/query/tree/HEAD/packages/solid-query/issues/10093">#10093</a>)</li>
<li><a
href="https://github.com/TanStack/query/commit/67cf8b60d923ad158fdf89c80f86decea073f472"><code>67cf8b6</code></a>
ref: ts cutoff (<a
href="https://github.com/TanStack/query/tree/HEAD/packages/solid-query/issues/10253">#10253</a>)</li>
<li><a
href="https://github.com/TanStack/query/commit/e730c767e9c800ab63fb6336d642bedac28dcbd9"><code>e730c76</code></a>
test(solid-query/useQuery): add test for string 'reconcile' option
maintainin...</li>
<li><a
href="https://github.com/TanStack/query/commit/aa0e242bd92e12770365818d13b758d1fcbea8e8"><code>aa0e242</code></a>
test(solid-query/useQuery): add test for 'isRestoring' transition from
true t...</li>
<li><a
href="https://github.com/TanStack/query/commit/377aaa265cf6dcb565cc94296009a8cd1e17ce11"><code>377aaa2</code></a>
test(solid-query/useQuery): add test for refetching query when
'queryClient' ...</li>
<li>Additional commits viewable in <a
href="https://github.com/TanStack/query/commits/@tanstack/solid-query@5.90.26/packages/solid-query">compare
view</a></li>
</ul>
</details>
<br />
Updates `svelte` from 5.53.10 to 5.53.11
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/sveltejs/svelte/releases">svelte's
releases</a>.</em></p>
<blockquote>
<h2>svelte@5.53.11</h2>
<h3>Patch Changes</h3>
<ul>
<li>
<p>fix: remove <code>untrack</code> circular dependency (<a
href="https://redirect.github.com/sveltejs/svelte/pull/17910">#17910</a>)</p>
</li>
<li>
<p>fix: recover from errors that leave a corrupted effect tree (<a
href="https://redirect.github.com/sveltejs/svelte/pull/17888">#17888</a>)</p>
</li>
<li>
<p>fix: properly lazily evaluate RHS when checking for
<code>assignment_value_stale</code> (<a
href="https://redirect.github.com/sveltejs/svelte/pull/17906">#17906</a>)</p>
</li>
<li>
<p>fix: resolve boundary in correct batch when hydrating (<a
href="https://redirect.github.com/sveltejs/svelte/pull/17914">#17914</a>)</p>
</li>
<li>
<p>chore: rebase batches after process, not during (<a
href="https://redirect.github.com/sveltejs/svelte/pull/17900">#17900</a>)</p>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/sveltejs/svelte/blob/main/packages/svelte/CHANGELOG.md">svelte's
changelog</a>.</em></p>
<blockquote>
<h2>5.53.11</h2>
<h3>Patch Changes</h3>
<ul>
<li>
<p>fix: remove <code>untrack</code> circular dependency (<a
href="https://redirect.github.com/sveltejs/svelte/pull/17910">#17910</a>)</p>
</li>
<li>
<p>fix: recover from errors that leave a corrupted effect tree (<a
href="https://redirect.github.com/sveltejs/svelte/pull/17888">#17888</a>)</p>
</li>
<li>
<p>fix: properly lazily evaluate RHS when checking for
<code>assignment_value_stale</code> (<a
href="https://redirect.github.com/sveltejs/svelte/pull/17906">#17906</a>)</p>
</li>
<li>
<p>fix: resolve boundary in correct batch when hydrating (<a
href="https://redirect.github.com/sveltejs/svelte/pull/17914">#17914</a>)</p>
</li>
<li>
<p>chore: rebase batches after process, not during (<a
href="https://redirect.github.com/sveltejs/svelte/pull/17900">#17900</a>)</p>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/sveltejs/svelte/commit/bd433c5ceb74e4b966ff901432078ab366142bb2"><code>bd433c5</code></a>
Version Packages (<a
href="https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte/issues/17901">#17901</a>)</li>
<li><a
href="https://github.com/sveltejs/svelte/commit/7c9ff8fc697a0723129d781e5bf116cf38e016f6"><code>7c9ff8f</code></a>
fix: resolve boundary in correct batch when hydrating (<a
href="https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte/issues/17914">#17914</a>)</li>
<li><a
href="https://github.com/sveltejs/svelte/commit/667896a753031b5d58157feb4b4eb7df49222ac0"><code>667896a</code></a>
fix: recover from errors that leave a corrupted effect tree (<a
href="https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte/issues/17888">#17888</a>)</li>
<li><a
href="https://github.com/sveltejs/svelte/commit/e4e089310d0fdf2b7dece779b58048e71c6ac02c"><code>e4e0893</code></a>
fix: remove <code>untrack</code> circular dependency (<a
href="https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte/issues/17910">#17910</a>)</li>
<li><a
href="https://github.com/sveltejs/svelte/commit/58f161dee2e59c79412e3906b17c1f05a119f193"><code>58f161d</code></a>
fix: properly lazily evaluate RHS when checking for
assignment_value_stale (#...</li>
<li><a
href="https://github.com/sveltejs/svelte/commit/0e8f49b25fbb11bf0bf9378b9423feeb0176f316"><code>0e8f49b</code></a>
chore: rebase batches after process, not during (<a
href="https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte/issues/17900">#17900</a>)</li>
<li>See full diff in <a
href="https://github.com/sveltejs/svelte/commits/svelte@5.53.11/packages/svelte">compare
view</a></li>
</ul>
</details>
<br />
Updates `@cloudflare/workers-types` from 4.20260310.1 to 4.20260313.1
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/cloudflare/workerd/commits">compare
view</a></li>
</ul>
</details>
<br />
Updates `@upstash/redis` from 1.36.4 to 1.37.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/upstash/redis-js/releases"><code>@upstash/redis</code>'s
releases</a>.</em></p>
<blockquote>
<h2><code>@upstash/redis</code><a
href="https://github.com/1"><code>@1</code></a>.37.0</h2>
<h3>Minor Changes</h3>
<ul>
<li>6f2a831: Release redis search</li>
</ul>
<h3>Patch Changes</h3>
<ul>
<li>3980b45: Add monorepo structure</li>
</ul>
<h2>@upstash/<a
href="mailto:redis@1.37.0-canary-20260312092231-7405c30f6a505815bbeb69b713a22978f104ec1f">redis@1.37.0-canary-20260312092231-7405c30f6a505815bbeb69b713a22978f104ec1f</a></h2>
<h2>What's Changed</h2>
<ul>
<li>DX-2445: redis package version and changeset for search release by
<a href="https://github.com/CahidArda"><code>@CahidArda</code></a> in
<a
href="https://redirect.github.com/upstash/redis-js/pull/1423">upstash/redis-js#1423</a></li>
<li>DX-2445: fix redis version, add repository.url to search packages by
<a href="https://github.com/CahidArda"><code>@CahidArda</code></a> in
<a
href="https://redirect.github.com/upstash/redis-js/pull/1424">upstash/redis-js#1424</a></li>
<li>DX-2445: use pnpm publish for search packages to resolve workspace:*
deps by <a
href="https://github.com/CahidArda"><code>@CahidArda</code></a> in <a
href="https://redirect.github.com/upstash/redis-js/pull/1425">upstash/redis-js#1425</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/upstash/redis-js/compare/@upstash/redis@1.30.3-canary-20260312082754-96a99a4e83fc560b77c36808627213e528c2f110...@upstash/redis@1.37.0-canary-20260312092231-7405c30f6a505815bbeb69b713a22978f104ec1f">https://github.com/upstash/redis-js/compare/<code>@upstash/redis</code><code>@1.30.3-canary-20260312082754-96a99a4e83fc560b77c36808627213e528c2f110...</code><code>@upstash/redis</code><code>@1.37.0-canary-20260312092231-7405c30f6a505815bbeb69b713a22978f104ec1f</code></a></p>
<h2><code>@upstash/redis</code><a
href="https://github.com/1"><code>@1</code></a>.37.0-canary-20260312084440-fba95e89e54d8ba63f020400247a1ef0dbdd2c84</h2>
<h2>What's Changed</h2>
<ul>
<li>DX-2445: redis package version and changeset for search release by
<a href="https://github.com/CahidArda"><code>@CahidArda</code></a> in
<a
href="https://redirect.github.com/upstash/redis-js/pull/1423">upstash/redis-js#1423</a></li>
<li>DX-2445: fix redis version, add repository.url to search packages by
<a href="https://github.com/CahidArda"><code>@CahidArda</code></a> in
<a
href="https://redirect.github.com/upstash/redis-js/pull/1424">upstash/redis-js#1424</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/upstash/redis-js/compare/@upstash/redis@1.30.3-canary-20260312082754-96a99a4e83fc560b77c36808627213e528c2f110...@upstash/redis@1.37.0-canary-20260312084440-fba95e89e54d8ba63f020400247a1ef0dbdd2c84">https://github.com/upstash/redis-js/compare/<code>@upstash/redis</code><code>@1.30.3-canary-20260312082754-96a99a4e83fc560b77c36808627213e528c2f110...</code><code>@upstash/redis</code><code>@1.37.0-canary-20260312084440-fba95e89e54d8ba63f020400247a1ef0dbdd2c84</code></a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/upstash/redis-js/commit/7e8fbedbfc4f38e96166ad450dd660ff80cd9ff8"><code>7e8fbed</code></a>
chore: version packages (<a
href="https://redirect.github.com/upstash/redis-js/issues/1420">#1420</a>)</li>
<li><a
href="https://github.com/upstash/redis-js/commit/703f6d49620b7edd59ec5557731b7f125d311da4"><code>703f6d4</code></a>
fix: handle FROM field option in SEARCH.DESCRIBE deserialization (<a
href="https://redirect.github.com/upstash/redis-js/issues/1426">#1426</a>)</li>
<li><a
href="https://github.com/upstash/redis-js/commit/15b4fc91de6fe24f6dfc8ab837e40d3077119c79"><code>15b4fc9</code></a>
fix: use pnpm publish for search packages to resolve workspace:* deps
(<a
href="https://redirect.github.com/upstash/redis-js/issues/1425">#1425</a>)</li>
<li><a
href="https://github.com/upstash/redis-js/commit/fba95e89e54d8ba63f020400247a1ef0dbdd2c84"><code>fba95e8</code></a>
DX-2445: fix redis version, add repository.url to search packages (<a
href="https://redirect.github.com/upstash/redis-js/issues/1424">#1424</a>)</li>
<li><a
href="https://github.com/upstash/redis-js/commit/6f2a831d6d44af023b454ca11bddd431c9d7749e"><code>6f2a831</code></a>
fix: redis package version and changeset for search release (<a
href="https://redirect.github.com/upstash/redis-js/issues/1423">#1423</a>)</li>
<li><a
href="https://github.com/upstash/redis-js/commit/96a99a4e83fc560b77c36808627213e528c2f110"><code>96a99a4</code></a>
DX-2445: Add new search client packages (<a
href="https://redirect.github.com/upstash/redis-js/issues/1422">#1422</a>)</li>
<li><a
href="https://github.com/upstash/redis-js/commit/efd3bc66789b1c2cc2234c81ff19e8cd9e1f9c7c"><code>efd3bc6</code></a>
DX-2445: use workflow_run instead of release event for npm publish (<a
href="https://redirect.github.com/upstash/redis-js/issues/1421">#1421</a>)</li>
<li><a
href="https://github.com/upstash/redis-js/commit/2dc421253843f5e05ce4fca48040ab3ae0413bf2"><code>2dc4212</code></a>
fix: add commit message (<a
href="https://redirect.github.com/upstash/redis-js/issues/1419">#1419</a>)</li>
<li><a
href="https://github.com/upstash/redis-js/commit/3980b457ae8bfd4126148cb4ef3963a66efb06a7"><code>3980b45</code></a>
DX-2445: Add monorepo structure (<a
href="https://redirect.github.com/upstash/redis-js/issues/1418">#1418</a>)</li>
<li><a
href="https://github.com/upstash/redis-js/commit/89cc2209e885e682d17bc06a58762f0a756dfef4"><code>89cc220</code></a>
DX-2381: Redis Search (<a
href="https://redirect.github.com/upstash/redis-js/issues/1409">#1409</a>)</li>
<li>See full diff in <a
href="https://github.com/upstash/redis-js/compare/v1.36.4...@upstash/redis@1.37.0">compare
view</a></li>
</ul>
</details>
<br />
Updates `@angular/core` from 21.2.2 to 21.2.4
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/angular/angular/releases"><code>@angular/core</code>'s
releases</a>.</em></p>
<blockquote>
<h2>21.2.4</h2>
<h3>compiler</h3>
<table>
<thead>
<tr>
<th>Commit</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a
href="https://github.com/angular/angular/commit/ed2d324f9cc12aab6cfa0569ef10b73243a62c65"><img
src="https://img.shields.io/badge/ed2d324f9c-fix-green" alt="fix -
ed2d324f9c" /></a></td>
<td>disallow translations of iframe src</td>
</tr>
</tbody>
</table>
<h3>core</h3>
<table>
<thead>
<tr>
<th>Commit</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a
href="https://github.com/angular/angular/commit/abbd8797bbd3ae53a10033c39bd895b5b85a4fae"><img
src="https://img.shields.io/badge/abbd8797bb-fix-green" alt="fix -
abbd8797bb" /></a></td>
<td>reverts "feat(core): add support for nested
animations"</td>
</tr>
<tr>
<td><a
href="https://github.com/angular/angular/commit/d1dcd16c5b40291aa3fa2dc84d22842cd657b201"><img
src="https://img.shields.io/badge/d1dcd16c5b-fix-green" alt="fix -
d1dcd16c5b" /></a></td>
<td>sanitize translated form attributes</td>
</tr>
</tbody>
</table>
<h2>VSCode Extension: 21.2.3</h2>
<p>This release contains internal refactorings only.</p>
<h2>21.2.3</h2>
<h3>core</h3>
<table>
<thead>
<tr>
<th>Commit</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a
href="https://github.com/angular/angular/commit/62a97f7e4b896b4b03a1ef25764db387ffecebe1"><img
src="https://img.shields.io/badge/62a97f7e4b-fix-green" alt="fix -
62a97f7e4b" /></a></td>
<td>ensure definitions compile</td>
</tr>
<tr>
<td><a
href="https://github.com/angular/angular/commit/21b1c3b2ee2c8423782b111b93bd60eb6b453259"><img
src="https://img.shields.io/badge/21b1c3b2ee-fix-green" alt="fix -
21b1c3b2ee" /></a></td>
<td>include signal debug names in their <code>toString()</code>
representation</td>
</tr>
<tr>
<td><a
href="https://github.com/angular/angular/commit/224e60ecb1b90115baa702f1c06edc1d64d86187"><img
src="https://img.shields.io/badge/224e60ecb1-fix-green" alt="fix -
224e60ecb1" /></a></td>
<td>sanitize translated attribute bindings with interpolations</td>
</tr>
</tbody>
</table>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/angular/angular/blob/main/CHANGELOG.md"><code>@angular/core</code>'s
changelog</a>.</em></p>
<blockquote>
<h1>21.2.4 (2026-03-12)</h1>
<h3>compiler</h3>
<table>
<thead>
<tr>
<th>Commit</th>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a
href="https://github.com/angular/angular/commit/ed2d324f9cc12aab6cfa0569ef10b73243a62c65">ed2d324f9c</a></td>
<td>fix</td>
<td>disallow translations of iframe src</td>
</tr>
</tbody>
</table>
<h3>core</h3>
<table>
<thead>
<tr>
<th>Commit</th>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a
href="https://github.com/angular/angular/commit/abbd8797bbd3ae53a10033c39bd895b5b85a4fae">abbd8797bb</a></td>
<td>fix</td>
<td>reverts "feat(core): add support for nested
animations"</td>
</tr>
<tr>
<td><a
href="https://github.com/angular/angular/commit/d1dcd16c5b40291aa3fa2dc84d22842cd657b201">d1dcd16c5b</a></td>
<td>fix</td>
<td>sanitize translated form attributes</td>
</tr>
</tbody>
</table>
<!-- raw HTML omitted -->
<p><!-- raw HTML omitted --><!-- raw HTML omitted --></p>
<h1>22.0.0-next.2 (2026-03-11)</h1>
<h2>Breaking Changes</h2>
<h3>core</h3>
<ul>
<li><code>createNgModuleRef</code> was removed, use
<code>createNgModule</code> instead</li>
</ul>
<h3>core</h3>
<table>
<thead>
<tr>
<th>Commit</th>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a
href="https://github.com/angular/angular/commit/b918beda323eefef17bf1de03fde3d402a3d4af0">b918beda32</a></td>
<td>feat</td>
<td>allow debouncing signals</td>
</tr>
<tr>
<td><a
href="https://github.com/angular/angular/commit/f9ede9ec98ad233c4bbddf268cce8a647333ebfc">f9ede9ec98</a></td>
<td>fix</td>
<td>ensure definitions compile</td>
</tr>
<tr>
<td><a
href="https://github.com/angular/angular/commit/b401c18674f16bceeaf7c9babcb4b4d70f29be4f">b401c18674</a></td>
<td>fix</td>
<td>include signal debug names in their <code>toString()</code>
representation</td>
</tr>
<tr>
<td><a
href="https://github.com/angular/angular/commit/8630319f74c9575a21693d875cc7d5252516146d">8630319f74</a></td>
<td>fix</td>
<td>sanitize translated attribute bindings with interpolations</td>
</tr>
<tr>
<td><a
href="https://github.com/angular/angular/commit/36936872c962b2073c8f44080684701068866691">36936872c9</a></td>
<td>refactor</td>
<td>remove <code>createNgModuleRef</code></td>
</tr>
</tbody>
</table>
<h3>forms</h3>
<table>
<thead>
<tr>
<th>Commit</th>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a
href="https://github.com/angular/angular/commit/3e7ce0dafcf1c0b9ed7a8c528f7120f5c796a668">3e7ce0dafc</a></td>
<td>fix</td>
<td>restrict <code>SignalFormsConfig</code> to a readonly API</td>
</tr>
</tbody>
</table>
<h3>language-service</h3>
<table>
<thead>
<tr>
<th>Commit</th>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a
href="https://github.com/angular/angular/commit/5a6d88626b604db937287a501cb723c088412a7e">5a6d88626b</a></td>
<td>feat</td>
<td>add angular template inlay hints support</td>
</tr>
</tbody>
</table>
<!-- raw HTML omitted -->
<p><!-- raw HTML omitted --><!-- raw HTML omitted --></p>
<h1>21.2.3 (2026-03-11)</h1>
<h3>core</h3>
<table>
<thead>
<tr>
<th>Commit</th>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a
href="https://github.com/angular/angular/commit/62a97f7e4b896b4b03a1ef25764db387ffecebe1">62a97f7e4b</a></td>
<td>fix</td>
<td>ensure definitions compile</td>
</tr>
<tr>
<td><a
href="https://github.com/angular/angular/commit/21b1c3b2ee2c8423782b111b93bd60eb6b453259">21b1c3b2ee</a></td>
<td>fix</td>
<td>include signal debug names in their <code>toString()</code>
representation</td>
</tr>
<tr>
<td><a
href="https://github.com/angular/angular/commit/224e60ecb1b90115baa702f1c06edc1d64d86187">224e60ecb1</a></td>
<td>fix</td>
<td>sanitize translated attribute bindings with interpolations</td>
</tr>
</tbody>
</table>
<!-- raw HTML omitted -->
<p><!-- raw HTML omitted --><!-- raw HTML omitted --></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/angular/angular/commit/d1dcd16c5b40291aa3fa2dc84d22842cd657b201"><code>d1dcd16</code></a>
fix(core): sanitize translated form attributes</li>
<li><a
href="https://github.com/angular/angular/commit/abbd8797bbd3ae53a10033c39bd895b5b85a4fae"><code>abbd879</code></a>
fix(core): reverts "feat(core): add support for nested
animations"</li>
<li><a
href="https://github.com/angular/angular/commit/7907e982ee90778e596d3e849f0a31c6c26db235"><code>7907e98</code></a>
test: remove duplicate tests</li>
<li><a
href="https://github.com/angular/angular/commit/21b1c3b2ee2c8423782b111b93bd60eb6b453259"><code>21b1c3b</code></a>
fix(core): include signal debug names in their <code>toString()</code>
representation</li>
<li><a
href="https://github.com/angular/angular/commit/6c73aaca30c7122f187dc51ec532a69f2706b335"><code>6c73aac</code></a>
refactor(common): Removes unused generic type parameters from
<code>KeyValueDiffers</code></li>
<li><a
href="https://github.com/angular/angular/commit/c98eab794c791ad08f0c277cde1ed139f9ca378c"><code>c98eab7</code></a>
refactor(core): remove old resource params</li>
<li><a
href="https://github.com/angular/angular/commit/75135586d6235d58c9010ac2208ee20020bac71b"><code>7513558</code></a>
docs: combine multiple documentation improvements into one PR</li>
<li><a
href="https://github.com/angular/angular/commit/575f3023c115f8af8e1a5bdfa6a2f2344546a5d1"><code>575f302</code></a>
refactor(core): interface cleanup</li>
<li><a
href="https://github.com/angular/angular/commit/224e60ecb1b90115baa702f1c06edc1d64d86187"><code>224e60e</code></a>
fix(core): sanitize translated attribute bindings with
interpolations</li>
<li><a
href="https://github.com/angular/angular/commit/09638ec7c3f14ce0216281f0c0dba38eb231f345"><code>09638ec</code></a>
docs(core): clarify provideZoneChangeDetection usage in v21+</li>
<li>Additional commits viewable in <a
href="https://github.com/angular/angular/commits/v21.2.4/packages/core">compare
view</a></li>
</ul>
</details>
<br />
Updates `@cloudflare/vite-plugin` from 1.27.0 to 1.28.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/cloudflare/workers-sdk/releases"><code>@cloudflare/vite-plugin</code>'s
releases</a>.</em></p>
<blockquote>
<h2><code>@cloudflare/vite-plugin</code><a
href="https://github.com/1"><code>@1</code></a>.28.0</h2>
<h3>Minor Changes</h3>
<ul>
<li>
<p><a
href="https://redirect.github.com/cloudflare/workers-sdk/pull/12855">#12855</a>
<a
href="https://github.com/cloudflare/workers-sdk/commit/c2b76bc35bd038200b9919179f63b66e190e00eb"><code>c2b76bc</code></a>
Thanks <a
href="https://github.com/jamesopstad"><code>@jamesopstad</code></a>! -
Support local explorer <code>/cdn-cgi/</code> routes</p>
<p>The local explorer UI can now be accessed at
<code>/cdn-cgi/explorer</code>.</p>
</li>
</ul>
<h3>Patch Changes</h3>
<ul>
<li>
<p><a
href="https://redirect.github.com/cloudflare/workers-sdk/pull/12834">#12834</a>
<a
href="https://github.com/cloudflare/workers-sdk/commit/64edac70799112a69e28202b9f2e9c1e3aada92c"><code>64edac7</code></a>
Thanks <a
href="https://github.com/jamesopstad"><code>@jamesopstad</code></a>! -
Warn when the <code>assets</code> field is provided for auxiliary
Workers</p>
<p>Auxiliary Workers do not support static assets. Previously, the
<code>assets</code> field was silently ignored but we now warn if it is
used.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/cloudflare/workers-sdk/pull/12794">#12794</a>
<a
href="https://github.com/cloudflare/workers-sdk/commit/b980af6603a08ae1d00020b3572dacfd6a0a541d"><code>b980af6</code></a>
Thanks <a href="https://github.com/aron-cf"><code>@aron-cf</code></a>!
- Fix Sandbox SDK preview URL WebSocket routing</p>
<p>When using Sandbox SDK preview URLs, WebSocket requests using the
<code>vite-hmr</code> protocol could be dropped before they reached the
worker, causing HMR to fail. The plugin now forwards Sandbox WebSocket
traffic and preserves the original request origin/host so worker proxy
logic receives the correct URL.</p>
</li>
<li>
<p>Updated dependencies [<a
href="https://github.com/cloudflare/workers-sdk/commit/f7de0fdd6074089ba5a484df683647cb70fe06f6"><code>f7de0fd</code></a>,
<a
href="https://github.com/cloudflare/workers-sdk/commit/ff543e30d69694613ab9d2da4281488fd27fd1b9"><code>ff543e3</code></a>,
<a
href="https://github.com/cloudflare/workers-sdk/commit/8e89e85cf4f75b483a2dce5aa6947f050e5f35cc"><code>8e89e85</code></a>,
<a
href="https://github.com/cloudflare/workers-sdk/commit/e63539de64308cd0706b8876a22e1b1ccabe0721"><code>e63539d</code></a>,
<a
href="https://github.com/cloudflare/workers-sdk/commit/8d1e130bba5fa4019edab855e817a17110b360d0"><code>8d1e130</code></a>,
<a
href="https://github.com/cloudflare/workers-sdk/commit/6ee18e1bda05ef3870dfe917510bd2a55310254b"><code>6ee18e1</code></a>,
<a
href="https://github.com/cloudflare/workers-sdk/commit/ecc7f792f950fc786ff40fa140bd8907bd26ff31"><code>ecc7f79</code></a>,
<a
href="https://github.com/cloudflare/workers-sdk/commit/1dda1c83cc286f5bc8bf7a13ed455265c50b0206"><code>1dda1c8</code></a>,
<a
href="https://github.com/cloudflare/workers-sdk/commit/4bb61b9758bc4e4349ede7327a1075774178be64"><code>4bb61b9</code></a>]:</p>
<ul>
<li>miniflare@4.20260312.0</li>
<li>wrangler@4.73.0</li>
</ul>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/cloudflare/workers-sdk/blob/main/packages/vite-plugin-cloudflare/CHANGELOG.md"><code>@cloudflare/vite-plugin</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>1.28.0</h2>
<h3>Minor Changes</h3>
<ul>
<li>
<p><a
href="https://redirect.github.com/cloudflare/workers-sdk/pull/12855">#12855</a>
<a
href="https://github.com/cloudflare/workers-sdk/commit/c2b76bc35bd038200b9919179f63b66e190e00eb"><code>c2b76bc</code></a>
Thanks <a
href="https://github.com/jamesopstad"><code>@jamesopstad</code></a>! -
Support local explorer <code>/cdn-cgi/</code> routes</p>
<p>The local explorer UI can now be accessed at
<code>/cdn-cgi/explorer</code>.</p>
</li>
</ul>
<h3>Patch Changes</h3>
<ul>
<li>
<p><a
href="https://redirect.github.com/cloudflare/workers-sdk/pull/12834">#12834</a>
<a
href="https://github.com/cloudflare/workers-sdk/commit/64edac70799112a69e28202b9f2e9c1e3aada92c"><code>64edac7</code></a>
Thanks <a
href="https://github.com/jamesopstad"><code>@jamesopstad</code></a>! -
Warn when the <code>assets</code> field is provided for auxiliary
Workers</p>
<p>Auxiliary Workers do not support static assets. Previously, the
<code>assets</code> field was silently ignored but we now warn if it is
used.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/cloudflare/workers-sdk/pull/12794">#12794</a>
<a
href="https://github.com/cloudflare/workers-sdk/commit/b980af6603a08ae1d00020b3572dacfd6a0a541d"><code>b980af6</code></a>
Thanks <a href="https://github.com/aron-cf"><code>@aron-cf</code></a>!
- Fix Sandbox SDK preview URL WebSocket routing</p>
<p>When using Sandbox SDK preview URLs, WebSocket requests using the
<code>vite-hmr</code> protocol could be dropped before they reached the
worker, causing HMR to fail. The plugin now forwards Sandbox WebSocket
traffic and preserves the original request origin/host so worker proxy
logic receives the correct URL.</p>
</li>
<li>
<p>Updated dependencies [<a
href="https://github.com/cloudflare/workers-sdk/commit/f7de0fdd6074089ba5a484df683647cb70fe06f6"><code>f7de0fd</code></a>,
<a
href="https://github.com/cloudflare/workers-sdk/commit/ff543e30d69694613ab9d2da4281488fd27fd1b9"><code>ff543e3</code></a>,
<a
href="https://github.com/cloudflare/workers-sdk/commit/8e89e85cf4f75b483a2dce5aa6947f050e5f35cc"><code>8e89e85</code></a>,
<a
href="https://github.com/cloudflare/workers-sdk/commit/e63539de64308cd0706b8876a22e1b1ccabe0721"><code>e63539d</code></a>,
<a
href="https://github.com/cloudflare/workers-sdk/commit/8d1e130bba5fa4019edab855e817a17110b360d0"><code>8d1e130</code></a>,
<a
href="https://github.com/cloudflare/workers-sdk/commit/6ee18e1bda05ef3870dfe917510bd2a55310254b"><code>6ee18e1</code></a>,
<a
href="https://github.com/cloudflare/workers-sdk/commit/ecc7f792f950fc786ff40fa140bd8907bd26ff31"><code>ecc7f79</code></a>,
<a
href="https://github.com/cloudflare/workers-sdk/commit/1dda1c83cc286f5bc8bf7a13ed455265c50b0206"><code>1dda1c8</code></a>,
<a
href="https://github.com/cloudflare/workers-sdk/commit/4bb61b9758bc4e4349ede7327a1075774178be64"><code>4bb61b9</code></a>]:</p>
<ul>
<li>miniflare@4.20260312.0</li>
<li>wrangler@4.73.0</li>
</ul>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/cloudflare/workers-sdk/commit/25b090a30162f85c0b5b289cd2ee30410928d027"><code>25b090a</code></a>
Version Packages (<a
href="https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/vite-plugin-cloudflare/issues/12840">#12840</a>)</li>
<li><a
href="https://github.com/cloudflare/workers-sdk/commit/b980af6603a08ae1d00020b3572dacfd6a0a541d"><code>b980af6</code></a>
Add sandbox support to <code>@cloudflare/vite-plugin</code> (<a
href="https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/vite-plugin-cloudflare/issues/12794">#12794</a>)</li>
<li><a
href="https://github.com/cloudflare/workers-sdk/commit/c2b76bc35bd038200b9919179f63b66e190e00eb"><code>c2b76bc</code></a>
Support local explorer <code>/cdn-cgi/</code> routes (<a
href="https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/vite-plugin-cloudflare/issues/12855">#12855</a>)</li>
<li><a
href="https://github.com/cloudflare/workers-sdk/commit/a31ee0b0c793532382f0473afd04d3c241d04724"><code>a31ee0b</code></a>
[workers-playground] Migrate from Cloudflare Pages to Cloudflare Workers
(<a
href="https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/vite-plugin-cloudflare/issues/12">#12</a>...</li>
<li><a
href="https://github.com/cloudflare/workers-sdk/commit/64edac70799112a69e28202b9f2e9c1e3aada92c"><code>64edac7</code></a>
Warn when the <code>assets</code> field is provided for auxiliary
Workers (<a
href="https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/vite-plugin-cloudflare/issues/12834">#12834</a>)</li>
<li><a
href="https://github.com/cloudflare/workers-sdk/commit/a6ddbdb2b67978377dda1acda289fe21eb0892bd"><code>a6ddbdb</code></a>
Support Vitest 4 in <code>@cloudflare/vitest-pool-workers</code> (<a
href="https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/vite-plugin-cloudflare/issues/11632">#11632</a>)</li>
<li>See full diff in <a
href="https://github.com/cloudflare/workers-sdk/commits/@cloudflare/vite-plugin@1.28.0/packages/vite-plugin-cloudflare">compare
view</a></li>
</ul>
</details>
<br />
Updates `@scalar/api-reference-react` from 0.9.5 to 0.9.8
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/scalar/scalar/blob/main/packages/api-reference-react/CHANGELOG.md"><code>@scalar/api-reference-react</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>0.9.8</h2>
<h3>Patch Changes</h3>
<h4>Updated Dependencies</h4>
<ul>
<li><strong><code>@scalar/api-reference</code><a
href="https://github.com/1"><code>@1</code></a>.48.7</strong></li>
</ul>
<h2>0.9.7</h2>
<h3>Patch Changes</h3>
<h4>Updated Dependencies</h4>
<ul>
<li>
<p><strong><code>@scalar/api-reference</code><a
href="https://github.com/1"><code>@1</code></a>.48.6</strong></p>
<ul>
<li><a
href="https://redirect.github.com/scalar/scalar/pull/8414">#8414</a>:
fix(api-reference): limit height of example response descriptions</li>
</ul>
</li>
<li>
<p><strong><code>@scalar/types</code><a
href="https://github.com/0"><code>@0</code></a>.7.3</strong></p>
</li>
</ul>
<h2>0.9.6</h2>
<h3>Patch Changes</h3>
<h4>Updated Dependencies</h4>
<ul>
<li><strong><code>@scalar/api-reference</code><a
href="https://github.com/1"><code>@1</code></a>.48.5</strong>
<ul>
<li><a
href="https://redirect.github.com/scalar/scalar/pull/8406">#8406</a>:
feat: x-order</li>
<li><a
href="https://redirect.github.com/scalar/scalar/pull/8097">#8097</a>:
fix: lazy load compositions</li>
<li><a
href="https://redirect.github.com/scalar/scalar/pull/8380">#8380</a>:
feat(api-reference): render <code><a></code> HTML tag for
<code>documentDownloadType: direct</code></li>
</ul>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/scalar/scalar/commits/HEAD/packages/api-reference-react">compare
view</a></li>
</ul>
</details>
<br />
Updates `wrangler` from 4.72.0 to 4.73.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/cloudflare/workers-sdk/releases">wrangler's
releases</a>.</em></p>
<blockquote>
<h2>wrangler@4.73.0</h2>
<h3>Minor Changes</h3>
<ul>
<li>
<p><a
href="https://redirect.github.com/cloudflare/workers-sdk/pull/12853">#12853</a>
<a
href="https://github.com/cloudflare/workers-sdk/commit/ff543e30d69694613ab9d2da4281488fd27fd1b9"><code>ff543e3</code></a>
Thanks <a
href="https://github.com/gpanders"><code>@gpanders</code></a>! -
Deprecate SSH passthrough flags in <code>wrangler containers
ssh</code></p>
<p>The <code>--cipher</code>, <code>--log-file</code>,
<code>--escape-char</code>, <code>--config-file</code>,
<code>--pkcs11</code>, <code>--identity-file</code>,
<code>--mac-spec</code>, <code>--option</code>, and <code>--tag</code>
flags are now deprecated. These flags expose OpenSSH-specific options
that are tied to the current implementation. A future release will
replace the underlying SSH transport, at which point these flags will be
removed. They still function for now.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/cloudflare/workers-sdk/pull/12815">#12815</a>
<a
href="https://github.com/cloudflare/workers-sdk/commit/e63539de64308cd0706b8876a22e1b1ccabe0721"><code>e63539d</code></a>
Thanks <a href="https://github.com/NuroDev"><code>@NuroDev</code></a>!
- Support disabling persistence in <code>unstable_startWorker()</code>
and <code>unstable_dev()</code></p>
<p>You can now disable persistence entirely by setting <code>persist:
false</code> in the <code>dev</code> options:</p>
<pre lang="typescript"><code>const worker = await
unstable_dev("./src/worker.ts", {
persist: false,
});
</code></pre>
<p>Or when using <code>unstable_startWorker()</code>:</p>
<pre lang="typescript"><code>const worker = await unstable_startWorker({
entrypoint: "./src/worker.ts",
dev: {
persist: false,
},
});
</code></pre>
<p>This is useful for testing scenarios where you want to ensure a clean
state on each run without any persisted data from previous runs.</p>
</li>
</ul>
<h3>Patch Changes</h3>
<ul>
<li>
<p><a
href="https://redirect.github.com/cloudflare/workers-sdk/pull/12861">#12861</a>
<a
href="https://github.com/cloudflare/workers-sdk/commit/f7de0fdd6074089ba5a484df683647cb70fe06f6"><code>f7de0fd</code></a>
Thanks <a
href="https://github.com/apps/dependabot"><code>@dependabot</code></a>!
- Update dependencies of "miniflare", "wrangler"</p>
<p>The following dependency versions have been updated:</p>
<table>
<thead>
<tr>
<th>Dependency</th>
<th>From</th>
<th>To</th>
</tr>
</thead>
<tbody>
<tr>
<td>workerd</td>
<td>1.20260310.1</td>
<td>1.20260312.1</td>
</tr>
</tbody>
</table>
</li>
<li>
<p><a
href="https://redirect.github.com/cloudflare/workers-sdk/pull/12734">#12734</a>
<a
href="https://github.com/cloudflare/workers-sdk/commit/8e89e85cf4f75b483a2dce5aa6947f050e5f35cc"><code>8e89e85</code></a>
Thanks <a
href="https://github.com/flostellbrink"><code>@flostellbrink</code></a>!
- Add back support for wrangler d1 exports with multiple tables.</p>
<p>Example:</p>
<pre lang="bash"><code># All tables (default)
wrangler d1 export db --output all-tables.sql
<h1>Single table (unchanged)</h1>
<p>wrangler d1 export db --output single-table.sql --table foo
</code></pre></p>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/cloudflare/workers-sdk/commit/25b090a30162f85c0b5b289cd2ee30410928d027"><code>25b090a</code></a>
Version Packages (<a
href="https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler/issues/12840">#12840</a>)</li>
<li><a
href="https://github.com/cloudflare/workers-sdk/commit/6ee18e1bda05ef3870dfe917510bd2a55310254b"><code>6ee18e1</code></a>
Fix autoconfig for Astro 6+ projects to skip wrangler config generation
(<a
href="https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler/issues/12856">#12856</a>)</li>
<li><a
href="https://github.com/cloudflare/workers-sdk/commit/f7de0fdd6074089ba5a484df683647cb70fe06f6"><code>f7de0fd</code></a>
Bump the workerd-and-workers-types group with 2 updates (<a
href="https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler/issues/12861">#12861</a>)</li>
<li><a
href="https://github.com/cloudflare/workers-sdk/commit/ff543e30d69694613ab9d2da4281488fd27fd1b9"><code>ff543e3</code></a>
CC-7209: Deprecate and hide OpenSSH options from ssh command (<a
href="https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler/issues/12853">#12853</a>)</li>
<li><a
href="https://github.com/cloudflare/workers-sdk/commit/a31ee0b0c793532382f0473afd04d3c241d04724"><code>a31ee0b</code></a>
[workers-playground] Migrate from Cloudflare Pages to Cloudflare Workers
(<a
href="https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler/issues/12">#12</a>...</li>
<li><a
href="https://github.com/cloudflare/workers-sdk/commit/4bb61b9758bc4e4349ede7327a1075774178be64"><code>4bb61b9</code></a>
[wrangler] Add hostname and IP validation for VPC services (<a
href="https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler/issues/12700">#12700</a>)</li>
<li><a
href="https://github.com/cloudflare/workers-sdk/commit/8e89e85cf4f75b483a2dce5aa6947f050e5f35cc"><code>8e89e85</code></a>
fix(wrangler): handle d1 export with multiple tables (<a
href="https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler/issues/12734">#12734</a>)</li>
<li><a
href="https://github.com/cloudflare/workers-sdk/commit/8d1e130bba5fa4019edab855e817a17110b360d0"><code>8d1e130</code></a>
fix(wrangler): vectorize list and list-metadata-index should output
valid jso...</li>
<li><a
href="https://github.com/cloudflare/workers-sdk/commit/e63539de64308cd0706b8876a22e1b1ccabe0721"><code>e63539d</code></a>
feat(wrangler): Support disabling state persistence in
`unstable_startWorker(...</li>
<li><a
href="https://github.com/cloudflare/workers-sdk/commit/a6ddbdb2b67978377dda1acda289fe21eb0892bd"><code>a6ddbdb</code></a>
Support Vitest 4 in <code>@cloudflare/vitest-pool-workers</code> (<a
href="https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler/issues/11632">#11632</a>)</li>
<li>See full diff in <a
href="https://github.com/cloudflare/workers-sdk/commits/wrangler@4.73.0/packages/wrangler">compare
view</a></li>
</ul>
</details>
<br />
Updates `nuxt` from 4.3.1 to 4.4.2
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/nuxt/nuxt/commit/d042505cbd096d68117cc13a9c29cf9c3fcb999b"><code>d042505</code></a>
v4.4.2</li>
<li><a
href="https://github.com/nuxt/nuxt/commit/7781701ad15238daef42a89e99f6bc33e738f40b"><code>7781701</code></a>
v4.4.1</li>
<li><a
href="https://github.com/nuxt/nuxt/commit/5c3ca5956389abf53bd94194ff3d3357672321f0"><code>5c3ca59</code></a>
v4.4.0</li>
<li><a
href="https://github.com/nuxt/nuxt/commit/31028d2e04cb83e4a59ef346e2769b4af13c9351"><code>31028d2</code></a>
chore: lint</li>
<li><a
href="https://github.com/nuxt/nuxt/commit/df7ef5d219d0873e78b4e3e9e17a559a9a729069"><code>df7ef5d</code></a>
feat(nuxt,kit,schema): add a factory function for <code>useFetch</code>
and `useAsyncDat...</li>
<li><a
href="https://github.com/nuxt/nuxt/commit/2dc5255240567336aefe380dad7f0cb574813c53"><code>2dc5255</code></a>
fix(nuxt): handle rejected promise in view transition abort (<a
href="https://github.com/nuxt/nuxt/tree/HEAD/packages/nuxt/issues/34515">#34515</a>)</li>
<li><a
href="https://github.com/nuxt/nuxt/commit/cf3e2ad33d2bc955c1e746590ce36a6aa7b5cef7"><code>cf3e2ad</code></a>
fix(nuxt): fix cookie expiration timeout for long-lived cookies (<a
href="https://github.com/nuxt/nuxt/tree/HEAD/packages/nuxt/issues/34513">#34513</a>)</li>
<li><a
href="https://github.com/nuxt/nuxt/commit/3b9d0bc40528f4ca7fcf7f904f17b336b17c9f81"><code>3b9d0bc</code></a>
fix(nuxt): pass deleteCount to splice in preloadRouteComponents (<a
href="https://github.com/nuxt/nuxt/tree/HEAD/packages/nuxt/issues/34514">#34514</a>)</li>
<li><a
href="https://github.com/nuxt/nuxt/commit/414a28344a2b6a3ba6e425590d22e86c8ef38228"><code>414a283</code></a>
fix(nuxt): never preload manifest (<a
href="https://github.com/nuxt/nuxt/tree/HEAD/packages/nuxt/issues/34511">#34511</a>)</li>
<li><a
href="https://github.com/nuxt/nuxt/commit/d586631e3a04b85c53caf043a0b7f17c55f2222d"><code>d586631</code></a>
fix(nuxt): check file freshness before truncating in cache restore (<a
href="https://github.com/nuxt/nuxt/tree/HEAD/packages/nuxt/issues/34509">#34509</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/nuxt/nuxt/commits/v4.4.2/packages/nuxt">compare
view</a></li>
</ul>
</details>
<br />
Updates `@sveltejs/kit` from 2.53.4 to 2.55.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/sveltejs/kit/releases"><code>@sveltejs/kit</code>'s
releases</a>.</em></p>
<blockquote>
<h2><code>@sveltejs/kit</code><a
href="https://github.com/2"><code>@2</code></a>.55.0</h2>
<h3>Minor Changes</h3>
<ul>
<li>feat: page and layout params with matchers are now type narrowed in
<code>$app/types</code>, leading to better type safety when working with
params in <code>$app/types</code>, <code>$app/state</code>, and hooks.
(<a
href="https://redirect.github.com/sveltejs/kit/pull/15502">#15502</a>)</li>
</ul>
<h2><code>@sveltejs/kit</code><a
href="https://github.com/2"><code>@2</code></a>.54.0</h2>
<h3>Minor Changes</h3>
<ul>
<li>feat: allow error boundaries to catch errors on the server (<a
href="https://redirect.github.com/sveltejs/kit/pull/15308">#15308</a>)</li>
</ul>
<h3>Patch Changes</h3>
<ul>
<li>
<p>chore: upgrade <code>devalue</code> (<a
href="https://redirect.github.com/sveltejs/kit/pull/15535">#15535</a>)</p>
</li>
<li>
<p>fix: don't wait for remote functions that are not awaited in the
template (<a
href="https://redirect.github.com/sveltejs/kit/pull/15280">#15280</a>)</p>
</li>
<li>
<p>feat: allow <code>resolve()</code> to accept pathnames with a search
string and/or hash (<a
href="https://redirect.github.com/sveltejs/kit/pull/15458">#15458</a>)</p>
</li>
<li>
<p>chore: remove deprecation warnings for
<code>config.kit.files.*</code> options when validating the Svelte
config file (<a
href="https://redirect.github.com/sveltejs/kit/pull/15482">#15482</a>)</p>
</li>
<li>
<p>fix: handles form target attribute in remote form redirects (<a
href="https://redirect.github.com/sveltejs/kit/pull/15457">#15457</a>)</p>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/sveltejs/kit/blob/main/packages/kit/CHANGELOG.md"><code>@sveltejs/kit</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>2.55.0</h2>
<h3>Minor Changes</h3>
<ul>
<li>feat: page and layout params with matchers are now type narrowed in
<code>$app/types</code>, leading to better type safety when working with
params in <code>$app/types</code>, <code>$app/state</code>, and hooks.
(<a
href="https://redirect.github.com/sveltejs/kit/pull/15502">#15502</a>)</li>
</ul>
<h2>2.54.0</h2>
<h3>Minor Changes</h3>
<ul>
<li>feat: allow error boundaries to catch errors on the server (<a
href="https://redirect.github.com/sveltejs/kit/pull/15308">#15308</a>)</li>
</ul>
<h3>Patch Changes</h3>
<ul>
<li>
<p>chore: upgrade <code>devalue</code> (<a
href="https://redirect.github.com/sveltejs/kit/pull/15535">#15535</a>)</p>
</li>
<li>
<p>fix: don't wait for remote functions that are not awaited in the
template (<a
href="https://redirect.github.com/sveltejs/kit/pull/15280">#15280</a>)</p>
</li>
<li>
<p>feat: allow <code>resolve()</code> to accept pathnames with a search
string and/or hash (<a
href="https://redirect.github.com/sveltejs/kit/pull/15458">#15458</a>)</p>
</li>
<li>
<p>chore: remove deprecation warnings for
<code>config.kit.files.*</code> options when validating the Svelte
config file (<a
href="https://redirect.github.com/sveltejs/kit/pull/15482">#15482</a>)</p>
</li>
<li>
<p>fix: handles form target attribute in remote form redirects (<a
href="https://redirect.github.com/sveltejs/kit/pull/15457">#15457</a>)</p>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/sveltejs/kit/commit/56c57f78099ad87d98cefc435774b0577cbae2aa"><code>56c57f7</code></a>
Version Packages (<a
href="https://github.com/sveltejs/kit/tree/HEAD/packages/kit/issues/15537">#15537</a>)</li>
<li><a
href="https://github.com/sveltejs/kit/commit/d703f9ae3e3d0e228d38060b6ac88ae04bca0a0f"><code>d703f9a</code></a>
chore: spacing (<a
href="https://github.com/sveltejs/kit/tree/HEAD/packages/kit/issues/15538">#15538</a>)</li>
<li><a
href="https://github.com/sveltejs/kit/commit/0f321aaf1c380a9226951038995ce6aab263e63f"><code>0f321aa</code></a>
feat: narrow page param types using matchers in $app/types
(non-ambient.d.ts)...</li>
<li><a
href="https://github.com/sveltejs/kit/commit/54dadc14728a05ff12d21725f9aa9fbe97066a97"><code>54dadc1</code></a>
Version Packages (<a
href="https://github.com/sveltejs/kit/tree/HEAD/packages/kit/issues/15464">#15464</a>)</li>
<li><a
href="https://github.com/sveltejs/kit/commit/5b65f39dab655c1400d7ffbfe29cd044a077e352"><code>5b65f39</code></a>
chore: upgrade <code>devalue</code> (<a
href="https://github.com/sveltejs/kit/tree/HEAD/packages/kit/issues/15535">#15535</a>)</li>
<li><a
href="https://github.com/sveltejs/kit/commit/a85396c7f06fbe3bc4b63ede9625417bda196605"><code>a85396c</code></a>
feat: allow error boundaries to catch errors on the server (<a
href="https://github.com/sveltejs/kit/tree/HEAD/packages/kit/issues/15308">#15308</a>)</li>
<li><a
href="https://github.com/sveltejs/kit/commit/796d1e7452bca3cbae83bc756783b2e014effd4b"><code>796d1e7</code></a>
chore: fix Vite ecosystem CI test (<a
href="https://github.com/sveltejs/kit/tree/HEAD/packages/kit/issues/15516">#15516</a>)</li>
<li><a
href="https://github.com/sveltejs/kit/commit/d3387f9b3ca10d1482febd23bde17bdf5e7d0fc9"><code>d3387f9</code></a>
chore: fix serialize_data comment typo (<a
href="https://github.com/sveltejs/kit/tree/HEAD/packages/kit/issues/15518">#15518</a>)</li>
<li><a
href="https://github.com/sveltejs/kit/commit/568da5e32651059bb01f266e669683252d697930"><code>568da5e</code></a>
chore: fix Vite comment typo (<a
href="https://github.com/sveltejs/kit/tree/HEAD/packages/kit/issues/15513">#15513</a>)</li>
<li><a
href="https://github.com/sveltejs/kit/commit/56fa4fa31d5a11278d1f6f5291d0c9e8e39a9e0a"><code>56fa4fa</code></a>
fix: handle target attribute on remote form redirects (<a
href="https://github.com/sveltejs/kit/tree/HEAD/packages/kit/issues/15457">#15457</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/sveltejs/kit/commits/@sveltejs/kit@2.55.0/packages/kit">compare
view</a></li>
</ul>
</details>
<br />
Updates `@tanstack/react-start` from 1.166.7 to 1.166.8
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/TanStack/router/blob/main/packages/react-start/CHANGELOG.md"><code>@tanstack/react-start</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>1.166.8</h2>
<h3>Patch Changes</h3>
<ul>
<li>Updated dependencies [<a
href="https://github.com/TanStack/router/commit/9a4d924d2b60ffb0f7f3f8f11c95195222929870"><code>9a4d924</code></a>]:
<ul>
<li><code>@tanstack/start-plugin-core</code><a
href="https://github.com/1"><code>@1</code></a>.166.8</li>
</ul>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/TanStack/router/commit/3a2d74227f878ffd904b980c47341b4a901125f3"><code>3a2d742</code></a>
ci: changeset release</li>
<li>See full diff in <a
href="https://github.com/TanStack/router/commits/@tanstack/react-start@1.166.8/packages/react-start">compare
view</a></li>
</ul>
</details>
<br />
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (depe…1 parent b608026 commit 70a1a81
14 files changed
Lines changed: 1337 additions & 945 deletions
File tree
- apps/content
- packages
- durable-iterator
- publisher-durable-object
- publisher
- ratelimit
- solid-query
- tanstack-query
- playgrounds
- cloudflare-worker
- nuxt
- solid-start
- svelte-kit
- tanstack-start
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
35 | 35 | | |
36 | 36 | | |
37 | 37 | | |
38 | | - | |
| 38 | + | |
39 | 39 | | |
40 | 40 | | |
41 | 41 | | |
| |||
45 | 45 | | |
46 | 46 | | |
47 | 47 | | |
48 | | - | |
| 48 | + | |
49 | 49 | | |
50 | 50 | | |
51 | 51 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
27 | 27 | | |
28 | 28 | | |
29 | 29 | | |
30 | | - | |
| 30 | + | |
31 | 31 | | |
32 | 32 | | |
33 | 33 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
54 | 54 | | |
55 | 55 | | |
56 | 56 | | |
57 | | - | |
| 57 | + | |
58 | 58 | | |
59 | 59 | | |
60 | 60 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
40 | 40 | | |
41 | 41 | | |
42 | 42 | | |
43 | | - | |
| 43 | + | |
44 | 44 | | |
45 | 45 | | |
46 | 46 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
68 | 68 | | |
69 | 69 | | |
70 | 70 | | |
71 | | - | |
| 71 | + | |
72 | 72 | | |
73 | 73 | | |
74 | 74 | | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
73 | 73 | | |
74 | 74 | | |
75 | 75 | | |
76 | | - | |
| 76 | + | |
77 | 77 | | |
78 | 78 | | |
79 | 79 | | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
45 | 45 | | |
46 | 46 | | |
47 | 47 | | |
48 | | - | |
| 48 | + | |
49 | 49 | | |
50 | 50 | | |
51 | 51 | | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
41 | 41 | | |
42 | 42 | | |
43 | 43 | | |
44 | | - | |
| 44 | + | |
45 | 45 | | |
46 | 46 | | |
47 | 47 | | |
48 | | - | |
| 48 | + | |
49 | 49 | | |
50 | 50 | | |
51 | | - | |
| 51 | + | |
52 | 52 | | |
53 | 53 | | |
54 | 54 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
12 | 12 | | |
13 | 13 | | |
14 | 14 | | |
15 | | - | |
| 15 | + | |
16 | 16 | | |
17 | 17 | | |
18 | 18 | | |
| |||
22 | 22 | | |
23 | 23 | | |
24 | 24 | | |
25 | | - | |
| 25 | + | |
26 | 26 | | |
27 | 27 | | |
28 | 28 | | |
| |||
31 | 31 | | |
32 | 32 | | |
33 | 33 | | |
34 | | - | |
| 34 | + | |
35 | 35 | | |
36 | 36 | | |
37 | 37 | | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
17 | 17 | | |
18 | 18 | | |
19 | 19 | | |
20 | | - | |
| 20 | + | |
21 | 21 | | |
22 | 22 | | |
23 | 23 | | |
| |||
0 commit comments