Skip to content

chore(deps-dev): bump the dev-dependencies-minor-patch group with 19 updates#1321

Merged
dinwwwh merged 1 commit intomainfrom
dependabot/npm_and_yarn/dev-dependencies-minor-patch-7bbfce406b
Dec 30, 2025
Merged

chore(deps-dev): bump the dev-dependencies-minor-patch group with 19 updates#1321
dinwwwh merged 1 commit intomainfrom
dependabot/npm_and_yarn/dev-dependencies-minor-patch-7bbfce406b

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Dec 30, 2025

Bumps the dev-dependencies-minor-patch group with 19 updates:

Package From To
@cloudflare/vitest-pool-workers 0.10.15 0.11.1
typescript 5.8.3 5.9.3
@pinia/colada 0.17.9 0.20.0
@tanstack/react-query 5.90.12 5.90.15
@tanstack/solid-query 5.90.15 5.90.18
@tanstack/svelte-query 6.0.10 6.0.13
@tanstack/vue-query 5.92.1 5.92.4
arktype 2.1.27 2.1.29
@cloudflare/workers-types 4.20251228.0 4.20251230.0
@nestjs/common 11.1.10 11.1.11
@nestjs/core 11.1.10 11.1.11
@nestjs/platform-express 11.1.10 11.1.11
@nestjs/platform-fastify 11.1.10 11.1.11
@nestjs/testing 11.1.10 11.1.11
@tanstack/angular-query-experimental 5.90.16 5.90.19
@tanstack/query-core 5.90.12 5.90.15
@swc/core 1.15.7 1.15.8
@tanstack/react-query-devtools 5.91.1 5.91.2
@tanstack/react-start 1.145.0 1.145.1

Updates @cloudflare/vitest-pool-workers from 0.10.15 to 0.11.1

Release notes

Sourced from @​cloudflare/vitest-pool-workers's releases.

@​cloudflare/vitest-pool-workers@​0.11.1

Patch Changes

@​cloudflare/vitest-pool-workers@​0.11.0

Minor Changes

  • #11533 8d9003e Thanks @​petebacondarwin! - Add support for ctx.exports

    It is now possible to access ctx.exports properties for the main (SELF) worker.

    • Integration tests: in the SELF worker the ctx.exports object now contains the expected stubs to the exported entry-points.
    • Unit tests: the object returned from createExecutionContext() has exports property that exposes the exports of the SELF worker.

    Due to the dynamic nature of Vitest the integration relies upon guessing what the exports of the main Worker are by statically analyzing the Worker source using esbuild. In cases where it is not possible to infer the exports (for example, a wildcard re-export of a virtual module) it is possible to declare these in the vitest-pool-workers config via the additionalExports setting.

Patch Changes

Changelog

Sourced from @​cloudflare/vitest-pool-workers's changelog.

0.11.1

Patch Changes

0.11.0

Minor Changes

  • #11533 8d9003e Thanks @​petebacondarwin! - Add support for ctx.exports

    It is now possible to access ctx.exports properties for the main (SELF) worker.

    • Integration tests: in the SELF worker the ctx.exports object now contains the expected stubs to the exported entry-points.
    • Unit tests: the object returned from createExecutionContext() has exports property that exposes the exports of the SELF worker.

    Due to the dynamic nature of Vitest the integration relies upon guessing what the exports of the main Worker are by statically analyzing the Worker source using esbuild. In cases where it is not possible to infer the exports (for example, a wildcard re-export of a virtual module) it is possible to declare these in the vitest-pool-workers config via the additionalExports setting.

Patch Changes

Commits

Updates typescript from 5.8.3 to 5.9.3

Release notes

Sourced from typescript's releases.

TypeScript 5.9.3

Note: this tag was recreated to point at the correct commit. The npm package contained the correct content.

For release notes, check out the release announcement

Downloads are available on:

TypeScript 5.9

Note: this tag was recreated to point at the correct commit. The npm package contained the correct content.

For release notes, check out the release announcement

Downloads are available on:

TypeScript 5.9 RC

Note: this tag was recreated to point at the correct commit. The npm package contained the correct content.

For release notes, check out the release announcement

Downloads are available on:

TypeScript 5.9 Beta

Note: this tag was recreated to point at the correct commit. The npm package contained the correct content.

For release notes, check out the release announcement.

Downloads are available on:

Commits
  • c63de15 Bump version to 5.9.3 and LKG
  • 8428ca4 🤖 Pick PR #62438 (Fix incorrectly ignored dts file fr...) into release-5.9 (#...
  • a131cac 🤖 Pick PR #62351 (Add missing Float16Array constructo...) into release-5.9 (#...
  • 0424333 🤖 Pick PR #62423 (Revert PR 61928) into release-5.9 (#62425)
  • bdb641a 🤖 Pick PR #62311 (Fix parenthesizer rules for manuall...) into release-5.9 (#...
  • 0d9b9b9 🤖 Pick PR #61978 (Restructure CI to prepare for requi...) into release-5.9 (#...
  • 2dce0c5 Intentionally regress one buggy declaration output to an older version (#62163)
  • 5be3346 Bump version to 5.9.2 and LKG
  • ad825f2 Bump version to 5.9.1-rc and LKG
  • 463a5bf Update LKG
  • Additional commits viewable in compare view

Updates @pinia/colada from 0.17.9 to 0.20.0

Changelog

Sourced from @​pinia/colada's changelog.

0.20.0 (2025-12-23)

This release completely changed how useInfiniteQuery() works, the parameters and returned values:

  • The merge option has been removed and data contains an object with pages and pageParams arrays that can be flattened.
  • initialPage has now been replaced with initialPageParam
  • loadMore has been renamed loadNextPage
  • getNextPageParam is now a required option
  • Invalidating now works just as with regular queries, which means that you probably want to set stale value higher (or disable it) to avoid refetching multiple pages when an infinite query is invalidated. Also, you might want to set refetchOn* options to false.
  • It's now possible to have bi-directional navigation
  • There is now hasNextPage and hasPreviousPage

Any feedback on the feature and improvements is welcome!

Here is a complete example of what it looks in action:

<script setup lang="ts">
import { useInfiniteQuery } from '@pinia/colada'
import { onWatcherCleanup, useTemplateRef, watch } from 'vue'
const {
state: factsPages,
loadNextPage,
asyncStatus,
isDelaying,
hasNextPage,
} = useInfiniteQuery({
key: ['feed'],
query: async ({ pageParam }) => factsApi.get<CatFacts>({ query: { page: pageParam, limit: 10 } }),
initialPageParam: 1,
getNextPageParam(lastPage) {
return lastPage.next_page_url
}
// plugins
retry: 0,
delay: 0,
})
// we only need an array
const facts = computed(() => factPages.value.data?.pages.flat())
const loadMoreEl = useTemplateRef('load-more')
watch(loadMoreEl, (el) => {
if (el) {
const observer = new IntersectionObserver(
(entries) => {
if (entries[0]?.isIntersecting) {
loadNextPage()
}
</tr></table>

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​pinia/colada since your current version.


Updates @tanstack/react-query from 5.90.12 to 5.90.15

Release notes

Sourced from @​tanstack/react-query's releases.

@​tanstack/react-query-persist-client@​5.90.15

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-persist-client-core@​5.91.12
    • @​tanstack/react-query@​5.90.13

@​tanstack/react-query@​5.90.15

Patch Changes

  • Updated dependencies [fccef79]:
    • @​tanstack/query-core@​5.90.15

@​tanstack/react-query-persist-client@​5.90.14

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-persist-client-core@​5.91.11
    • @​tanstack/react-query@​5.90.12

@​tanstack/react-query@​5.90.14

Patch Changes

  • Updated dependencies [d576092]:
    • @​tanstack/query-core@​5.90.14

@​tanstack/react-query-persist-client@​5.90.13

Patch Changes

  • Updated dependencies [c01b150]:
    • @​tanstack/react-query@​5.90.11
    • @​tanstack/query-persist-client-core@​5.91.10
Changelog

Sourced from @​tanstack/react-query's changelog.

5.90.15

Patch Changes

  • Updated dependencies [fccef79]:
    • @​tanstack/query-core@​5.90.15

5.90.14

Patch Changes

  • Updated dependencies [d576092]:
    • @​tanstack/query-core@​5.90.14

5.90.13

Patch Changes

  • Updated dependencies [4a0a78a]:
    • @​tanstack/query-core@​5.90.13
Commits
  • 0a1e3e0 ci: Version Packages (#10003)
  • fccef79 fix(query-core): ensure query refetches on mount/retry when status is error (...
  • e907f89 fix(core): report errors of useMutation callbacks asynchronously (#9676)
  • 84564f1 ci: Version Packages (#10001)
  • 642f72d test(react-query/ssr): add 'useIsFetching' test for SSR (#9994)
  • 1d20c48 ci: Version Packages (#9997)
  • 2be25ca test(react-query/HydrationBoundary): add tests for 'enabled: false' and 'stal...
  • f15b7fc ci: prepare for trusted publishing (#9952)
  • See full diff in compare view
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​tanstack/react-query since your current version.


Updates @tanstack/solid-query from 5.90.15 to 5.90.18

Release notes

Sourced from @​tanstack/solid-query's releases.

@​tanstack/solid-query-persist-client@​5.90.18

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-persist-client-core@​5.91.14
    • @​tanstack/solid-query@​5.90.18

@​tanstack/solid-query@​5.90.18

Patch Changes

  • Updated dependencies [fccef79]:
    • @​tanstack/query-core@​5.90.15

@​tanstack/solid-query-persist-client@​5.90.17

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-persist-client-core@​5.91.13
    • @​tanstack/solid-query@​5.90.17

@​tanstack/solid-query@​5.90.17

Patch Changes

  • Updated dependencies [d576092]:
    • @​tanstack/query-core@​5.90.14
Changelog

Sourced from @​tanstack/solid-query's changelog.

5.90.18

Patch Changes

  • Updated dependencies [fccef79]:
    • @​tanstack/query-core@​5.90.15

5.90.17

Patch Changes

  • Updated dependencies [d576092]:
    • @​tanstack/query-core@​5.90.14

5.90.16

Patch Changes

  • Updated dependencies [4a0a78a]:
    • @​tanstack/query-core@​5.90.13
Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​tanstack/solid-query since your current version.


Updates @tanstack/svelte-query from 6.0.10 to 6.0.13

Release notes

Sourced from @​tanstack/svelte-query's releases.

@​tanstack/svelte-query@​6.0.13

Patch Changes

  • Updated dependencies [fccef79]:
    • @​tanstack/query-core@​5.90.15

@​tanstack/svelte-query-persist-client@​6.0.12

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-persist-client-core@​5.91.11
    • @​tanstack/svelte-query@​6.0.10

@​tanstack/svelte-query@​6.0.12

Patch Changes

  • Updated dependencies [d576092]:
    • @​tanstack/query-core@​5.90.14

@​tanstack/svelte-query-persist-client@​6.0.11

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-persist-client-core@​5.91.10
    • @​tanstack/svelte-query@​6.0.9
Changelog

Sourced from @​tanstack/svelte-query's changelog.

6.0.13

Patch Changes

  • Updated dependencies [fccef79]:
    • @​tanstack/query-core@​5.90.15

6.0.12

Patch Changes

  • Updated dependencies [d576092]:
    • @​tanstack/query-core@​5.90.14

6.0.11

Patch Changes

  • Updated dependencies [4a0a78a]:
    • @​tanstack/query-core@​5.90.13
Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​tanstack/svelte-query since your current version.


Updates @tanstack/vue-query from 5.92.1 to 5.92.4

Release notes

Sourced from @​tanstack/vue-query's releases.

@​tanstack/vue-query@​5.92.4

Patch Changes

  • Updated dependencies [fccef79]:
    • @​tanstack/query-core@​5.90.15

@​tanstack/vue-query@​5.92.3

Patch Changes

  • Updated dependencies [d576092]:
    • @​tanstack/query-core@​5.90.14
Changelog

Sourced from @​tanstack/vue-query's changelog.

5.92.4

Patch Changes

  • Updated dependencies [fccef79]:
    • @​tanstack/query-core@​5.90.15

5.92.3

Patch Changes

  • Updated dependencies [d576092]:
    • @​tanstack/query-core@​5.90.14

5.92.2

Patch Changes

  • Updated dependencies [4a0a78a]:
    • @​tanstack/query-core@​5.90.13
Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​tanstack/vue-query since your current version.


Updates arktype from 2.1.27 to 2.1.29

Changelog

Sourced from arktype's changelog.

2.1.29

Improve regex inference for certain numeric expressions

// was: Regex<`${bigint}${bigint}`>
// now: Regex<`${number}`>
regex("^\\d{2}$")

See arkregex CHANGELOG for full notes.

2.1.28

JSON Schema improvements

  • Adds support for the new Standard JSON Schema interface (see standardschema.dev)
  • Now accepts a target option and can generate draft-07 in addition to draft-2020-12

Standard Schema is now a valid definition

Any Standard Schema compliant validator can now be passed directly to type, either directly or nested in a structural ArkType definition, and will be fully inferred and validated.

import { type } from "arktype"
import * as v from "valibot"
import z from "zod"
const ZodAddress = z.object({
street: z.string(),
city: z.string()
})
const User = type({
name: "string",
age: v.number(),
address: ZodAddress
})

e(x)ec mode for regex types

const User = type({
	// x-prefix a regex literal to parse its type-safe capture groups
	birthday: "x/^(?<month>\\d{2})-(?<day>\\d{2})-(?<year>\\d{4})$/"
})
const data = User.assert({ birthday: "05-21-1993" })
</tr></table>

... (truncated)

Commits

Updates @cloudflare/workers-types from 4.20251228.0 to 4.20251230.0

Commits

Updates @nestjs/common from 11.1.10 to 11.1.11

Release notes

Sourced from @​nestjs/common's releases.

v11.1.11 (2025-12-29)

Bug fixes

  • platform-fastify
  • core
    • #16133 fix(core): add missing catch handler for forward-ref provider resolution (@​coti-z)

Dependencies

Committers: 3

Commits
  • 585f55f chore: revert lerna version
  • fef323b chore(release): publish v11.1.11 release
  • a4a50d4 chore(deps): bump file-type from 21.1.1 to 21.2.0
  • See full diff in compare view

Updates @nestjs/core from 11.1.10 to 11.1.11

Release notes

Sourced from @​nestjs/core's releases.

v11.1.11 (2025-12-29)

Bug fixes

  • platform-fastify
  • core
    • #16133 fix(core): add missing catch handler for forward-ref provider resolution (@​coti-z)

Dependencies

Committers: 3

Commits
  • 585f55f chore: revert lerna version
  • fef323b chore(release): publish v11.1.11 release
  • 15198c6 fix(core): add missing catch handler for forward-ref provider resolution
  • See full diff in compare view

Updates @nestjs/platform-express from 11.1.10 to 11.1.11

Release notes

Sourced from @​nestjs/platform-express's releases.

v11.1.11 (2025-12-29)

Bug fixes

  • platform-fastify
  • core
    • #16133 fix(core): add missing catch handler for forward-ref provider resolution (@​coti-z)

Dependencies

Committers: 3

Commits

Updates @nestjs/platform-fastify from 11.1.10 to 11.1.11

Release notes

Sourced from @​nestjs/platform-fastify's releases.

v11.1.11 (2025-12-29)

Bug fixes

  • platform-fastify
  • core
    • #16133 fix(core): add missing catch handler for forward-ref provider resolution (@​coti-z)

Dependencies

Committers: 3

Commits
  • 585f55f chore: revert lerna version
  • fef323b chore(release): publish v11.1.11 release
  • d1e55d0 style: disable linter for fastify middie external
  • c4cedda fix(platform-fastify): middie bypassing through decoded chars
  • 9b09e38 fix(deps): update dependency @​fastify/static to v9
  • See full diff in compare view

Updates @nestjs/testing from 11.1.10 to 11.1.11

Release notes

Sourced from @​nestjs/testing's releases.

v11.1.11 (2025-12-29)

Bug fixes

  • platform-fastify
  • core
    • #16133 fix(core): add missing catch handler for forward-ref provider resolution (@​coti-z)

Dependencies

Committers: 3

Commits

Updates @tanstack/angular-query-experimental from 5.90.16 to 5.90.19

Release notes

Sourced from @​tanstack/angular-query-experimental's releases.

@​tanstack/angular-query-experimental@​5.90.19

Patch Changes

  • Updated dependencies [fccef79]:
    • @​tanstack/query-core@​5.90.15

@​tanstack/angular-query-experimental@​5.90.18

Patch Changes

  • Updated dependencies [d576092]:
    • @​tanstack/query-core@​5.90.14
Changelog

Sourced from @​tanstack/angular-query-experimental's changelog.

5.90.19

Patch Changes

  • Updated dependencies [fccef79]:
    • @​tanstack/query-core@​5.90.15

5.90.18

Patch Changes

  • Updated dependencies [d576092]:
    • @​tanstack/query-core@​5.90.14

5.90.17

Patch Changes

  • Updated dependencies [4a0a78a]:
    • @​tanstack/query-core@​5.90.13
Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​tanstack/angular-query-experimental since your current version.


Updates @tanstack/query-core from 5.90.12 to 5.90.15

Release notes

Sourced from @​tanstack/query-core's releases.

@​tanstack/query-core@​5.90.15

Patch Changes

  • Fix: Always treat existing data as stale when query goes into error state. (#9927)

@​tanstack/query-core@​5.90.14

Patch Changes

  • Fix streamedQuery reducer being called twice (#9970)
Changelog

Sourced from @​tanstack/query-core's changelog.

5.90.15

Patch Changes

  • Fix: Always treat existing data as stale when query goes into error state. (#9927)

5.90.14

Patch Changes

  • Fix streamedQuery reducer being called twice (#9970)

5.90.13

Patch Changes

  • Made context.signal consume aware with streamedQuery (#9963)
Commits

…updates

Bumps the dev-dependencies-minor-patch group with 19 updates:

| Package | From | To |
| --- | --- | --- |
| [@cloudflare/vitest-pool-workers](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/vitest-pool-workers) | `0.10.15` | `0.11.1` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.8.3` | `5.9.3` |
| [@pinia/colada](https://github.com/posva/pinia-colada) | `0.17.9` | `0.20.0` |
| [@tanstack/react-query](https://github.com/TanStack/query/tree/HEAD/packages/react-query) | `5.90.12` | `5.90.15` |
| [@tanstack/solid-query](https://github.com/TanStack/query/tree/HEAD/packages/solid-query) | `5.90.15` | `5.90.18` |
| [@tanstack/svelte-query](https://github.com/TanStack/query/tree/HEAD/packages/svelte-query) | `6.0.10` | `6.0.13` |
| [@tanstack/vue-query](https://github.com/TanStack/query/tree/HEAD/packages/vue-query) | `5.92.1` | `5.92.4` |
| [arktype](https://github.com/arktypeio/arktype/tree/HEAD/ark/type) | `2.1.27` | `2.1.29` |
| [@cloudflare/workers-types](https://github.com/cloudflare/workerd) | `4.20251228.0` | `4.20251230.0` |
| [@nestjs/common](https://github.com/nestjs/nest/tree/HEAD/packages/common) | `11.1.10` | `11.1.11` |
| [@nestjs/core](https://github.com/nestjs/nest/tree/HEAD/packages/core) | `11.1.10` | `11.1.11` |
| [@nestjs/platform-express](https://github.com/nestjs/nest/tree/HEAD/packages/platform-express) | `11.1.10` | `11.1.11` |
| [@nestjs/platform-fastify](https://github.com/nestjs/nest/tree/HEAD/packages/platform-fastify) | `11.1.10` | `11.1.11` |
| [@nestjs/testing](https://github.com/nestjs/nest/tree/HEAD/packages/testing) | `11.1.10` | `11.1.11` |
| [@tanstack/angular-query-experimental](https://github.com/TanStack/query/tree/HEAD/packages/angular-query-experimental) | `5.90.16` | `5.90.19` |
| [@tanstack/query-core](https://github.com/TanStack/query/tree/HEAD/packages/query-core) | `5.90.12` | `5.90.15` |
| [@swc/core](https://github.com/swc-project/swc) | `1.15.7` | `1.15.8` |
| [@tanstack/react-query-devtools](https://github.com/TanStack/query/tree/HEAD/packages/react-query-devtools) | `5.91.1` | `5.91.2` |
| [@tanstack/react-start](https://github.com/TanStack/router/tree/HEAD/packages/react-start) | `1.145.0` | `1.145.1` |


Updates `@cloudflare/vitest-pool-workers` from 0.10.15 to 0.11.1
- [Release notes](https://github.com/cloudflare/workers-sdk/releases)
- [Changelog](https://github.com/cloudflare/workers-sdk/blob/main/packages/vitest-pool-workers/CHANGELOG.md)
- [Commits](https://github.com/cloudflare/workers-sdk/commits/@cloudflare/vitest-pool-workers@0.11.1/packages/vitest-pool-workers)

Updates `typescript` from 5.8.3 to 5.9.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v5.8.3...v5.9.3)

Updates `@pinia/colada` from 0.17.9 to 0.20.0
- [Release notes](https://github.com/posva/pinia-colada/releases)
- [Changelog](https://github.com/posva/pinia-colada/blob/main/CHANGELOG.md)
- [Commits](posva/pinia-colada@v0.17.9...v0.20.0)

Updates `@tanstack/react-query` from 5.90.12 to 5.90.15
- [Release notes](https://github.com/TanStack/query/releases)
- [Changelog](https://github.com/TanStack/query/blob/main/packages/react-query/CHANGELOG.md)
- [Commits](https://github.com/TanStack/query/commits/@tanstack/react-query@5.90.15/packages/react-query)

Updates `@tanstack/solid-query` from 5.90.15 to 5.90.18
- [Release notes](https://github.com/TanStack/query/releases)
- [Changelog](https://github.com/TanStack/query/blob/main/packages/solid-query/CHANGELOG.md)
- [Commits](https://github.com/TanStack/query/commits/@tanstack/solid-query@5.90.18/packages/solid-query)

Updates `@tanstack/svelte-query` from 6.0.10 to 6.0.13
- [Release notes](https://github.com/TanStack/query/releases)
- [Changelog](https://github.com/TanStack/query/blob/main/packages/svelte-query/CHANGELOG.md)
- [Commits](https://github.com/TanStack/query/commits/@tanstack/svelte-query@6.0.13/packages/svelte-query)

Updates `@tanstack/vue-query` from 5.92.1 to 5.92.4
- [Release notes](https://github.com/TanStack/query/releases)
- [Changelog](https://github.com/TanStack/query/blob/main/packages/vue-query/CHANGELOG.md)
- [Commits](https://github.com/TanStack/query/commits/@tanstack/vue-query@5.92.4/packages/vue-query)

Updates `arktype` from 2.1.27 to 2.1.29
- [Release notes](https://github.com/arktypeio/arktype/releases)
- [Changelog](https://github.com/arktypeio/arktype/blob/main/ark/type/CHANGELOG.md)
- [Commits](https://github.com/arktypeio/arktype/commits/arktype@2.1.29/ark/type)

Updates `@cloudflare/workers-types` from 4.20251228.0 to 4.20251230.0
- [Release notes](https://github.com/cloudflare/workerd/releases)
- [Changelog](https://github.com/cloudflare/workerd/blob/main/RELEASE.md)
- [Commits](https://github.com/cloudflare/workerd/commits)

Updates `@nestjs/common` from 11.1.10 to 11.1.11
- [Release notes](https://github.com/nestjs/nest/releases)
- [Commits](https://github.com/nestjs/nest/commits/v11.1.11/packages/common)

Updates `@nestjs/core` from 11.1.10 to 11.1.11
- [Release notes](https://github.com/nestjs/nest/releases)
- [Commits](https://github.com/nestjs/nest/commits/v11.1.11/packages/core)

Updates `@nestjs/platform-express` from 11.1.10 to 11.1.11
- [Release notes](https://github.com/nestjs/nest/releases)
- [Commits](https://github.com/nestjs/nest/commits/v11.1.11/packages/platform-express)

Updates `@nestjs/platform-fastify` from 11.1.10 to 11.1.11
- [Release notes](https://github.com/nestjs/nest/releases)
- [Commits](https://github.com/nestjs/nest/commits/v11.1.11/packages/platform-fastify)

Updates `@nestjs/testing` from 11.1.10 to 11.1.11
- [Release notes](https://github.com/nestjs/nest/releases)
- [Commits](https://github.com/nestjs/nest/commits/v11.1.11/packages/testing)

Updates `@tanstack/angular-query-experimental` from 5.90.16 to 5.90.19
- [Release notes](https://github.com/TanStack/query/releases)
- [Changelog](https://github.com/TanStack/query/blob/main/packages/angular-query-experimental/CHANGELOG.md)
- [Commits](https://github.com/TanStack/query/commits/@tanstack/angular-query-experimental@5.90.19/packages/angular-query-experimental)

Updates `@tanstack/query-core` from 5.90.12 to 5.90.15
- [Release notes](https://github.com/TanStack/query/releases)
- [Changelog](https://github.com/TanStack/query/blob/main/packages/query-core/CHANGELOG.md)
- [Commits](https://github.com/TanStack/query/commits/@tanstack/query-core@5.90.15/packages/query-core)

Updates `@swc/core` from 1.15.7 to 1.15.8
- [Release notes](https://github.com/swc-project/swc/releases)
- [Changelog](https://github.com/swc-project/swc/blob/main/CHANGELOG.md)
- [Commits](swc-project/swc@v1.15.7...v1.15.8)

Updates `@tanstack/react-query-devtools` from 5.91.1 to 5.91.2
- [Release notes](https://github.com/TanStack/query/releases)
- [Changelog](https://github.com/TanStack/query/blob/main/packages/react-query-devtools/CHANGELOG.md)
- [Commits](https://github.com/TanStack/query/commits/@tanstack/react-query-devtools@5.91.2/packages/react-query-devtools)

Updates `@tanstack/react-start` from 1.145.0 to 1.145.1
- [Release notes](https://github.com/TanStack/router/releases)
- [Commits](https://github.com/TanStack/router/commits/v1.145.1/packages/react-start)

---
updated-dependencies:
- dependency-name: "@cloudflare/vitest-pool-workers"
  dependency-version: 0.11.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies-minor-patch
- dependency-name: typescript
  dependency-version: 5.9.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies-minor-patch
- dependency-name: "@pinia/colada"
  dependency-version: 0.20.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies-minor-patch
- dependency-name: "@tanstack/react-query"
  dependency-version: 5.90.15
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies-minor-patch
- dependency-name: "@tanstack/solid-query"
  dependency-version: 5.90.18
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies-minor-patch
- dependency-name: "@tanstack/svelte-query"
  dependency-version: 6.0.13
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies-minor-patch
- dependency-name: "@tanstack/vue-query"
  dependency-version: 5.92.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies-minor-patch
- dependency-name: arktype
  dependency-version: 2.1.29
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies-minor-patch
- dependency-name: "@cloudflare/workers-types"
  dependency-version: 4.20251230.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies-minor-patch
- dependency-name: "@nestjs/common"
  dependency-version: 11.1.11
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies-minor-patch
- dependency-name: "@nestjs/core"
  dependency-version: 11.1.11
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies-minor-patch
- dependency-name: "@nestjs/platform-express"
  dependency-version: 11.1.11
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies-minor-patch
- dependency-name: "@nestjs/platform-fastify"
  dependency-version: 11.1.11
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies-minor-patch
- dependency-name: "@nestjs/testing"
  dependency-version: 11.1.11
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies-minor-patch
- dependency-name: "@tanstack/angular-query-experimental"
  dependency-version: 5.90.19
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies-minor-patch
- dependency-name: "@tanstack/query-core"
  dependency-version: 5.90.15
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies-minor-patch
- dependency-name: "@swc/core"
  dependency-version: 1.15.8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies-minor-patch
- dependency-name: "@tanstack/react-query-devtools"
  dependency-version: 5.91.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies-minor-patch
- dependency-name: "@tanstack/react-start"
  dependency-version: 1.145.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies-minor-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Dec 30, 2025
@cloudflare-workers-and-pages
Copy link
Copy Markdown

cloudflare-workers-and-pages bot commented Dec 30, 2025

Deploying orpc with  Cloudflare Pages  Cloudflare Pages

Latest commit: eef37a3
Status: ✅  Deploy successful!
Preview URL: https://f0819d53.orpc-1qh.pages.dev
Branch Preview URL: https://dependabot-npm-and-yarn-dev-4vb4.orpc-1qh.pages.dev

View logs

@dosubot dosubot bot added the size:L This PR changes 100-499 lines, ignoring generated files. label Dec 30, 2025
@coderabbitai
Copy link
Copy Markdown

coderabbitai bot commented Dec 30, 2025

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


Comment @coderabbitai help to get the list of available commands and usage tips.

@pkg-pr-new
Copy link
Copy Markdown

pkg-pr-new bot commented Dec 30, 2025

More templates

@orpc/ai-sdk

npm i https://pkg.pr.new/@orpc/ai-sdk@1321

@orpc/arktype

npm i https://pkg.pr.new/@orpc/arktype@1321

@orpc/client

npm i https://pkg.pr.new/@orpc/client@1321

@orpc/contract

npm i https://pkg.pr.new/@orpc/contract@1321

@orpc/experimental-durable-iterator

npm i https://pkg.pr.new/@orpc/experimental-durable-iterator@1321

@orpc/hey-api

npm i https://pkg.pr.new/@orpc/hey-api@1321

@orpc/interop

npm i https://pkg.pr.new/@orpc/interop@1321

@orpc/json-schema

npm i https://pkg.pr.new/@orpc/json-schema@1321

@orpc/nest

npm i https://pkg.pr.new/@orpc/nest@1321

@orpc/openapi

npm i https://pkg.pr.new/@orpc/openapi@1321

@orpc/openapi-client

npm i https://pkg.pr.new/@orpc/openapi-client@1321

@orpc/otel

npm i https://pkg.pr.new/@orpc/otel@1321

@orpc/experimental-pino

npm i https://pkg.pr.new/@orpc/experimental-pino@1321

@orpc/experimental-publisher

npm i https://pkg.pr.new/@orpc/experimental-publisher@1321

@orpc/experimental-publisher-durable-object

npm i https://pkg.pr.new/@orpc/experimental-publisher-durable-object@1321

@orpc/experimental-ratelimit

npm i https://pkg.pr.new/@orpc/experimental-ratelimit@1321

@orpc/react

npm i https://pkg.pr.new/@orpc/react@1321

@orpc/react-query

npm i https://pkg.pr.new/@orpc/react-query@1321

@orpc/experimental-react-swr

npm i https://pkg.pr.new/@orpc/experimental-react-swr@1321

@orpc/server

npm i https://pkg.pr.new/@orpc/server@1321

@orpc/shared

npm i https://pkg.pr.new/@orpc/shared@1321

@orpc/solid-query

npm i https://pkg.pr.new/@orpc/solid-query@1321

@orpc/standard-server

npm i https://pkg.pr.new/@orpc/standard-server@1321

@orpc/standard-server-aws-lambda

npm i https://pkg.pr.new/@orpc/standard-server-aws-lambda@1321

@orpc/standard-server-fastify

npm i https://pkg.pr.new/@orpc/standard-server-fastify@1321

@orpc/standard-server-fetch

npm i https://pkg.pr.new/@orpc/standard-server-fetch@1321

@orpc/standard-server-node

npm i https://pkg.pr.new/@orpc/standard-server-node@1321

@orpc/standard-server-peer

npm i https://pkg.pr.new/@orpc/standard-server-peer@1321

@orpc/svelte-query

npm i https://pkg.pr.new/@orpc/svelte-query@1321

@orpc/tanstack-query

npm i https://pkg.pr.new/@orpc/tanstack-query@1321

@orpc/trpc

npm i https://pkg.pr.new/@orpc/trpc@1321

@orpc/valibot

npm i https://pkg.pr.new/@orpc/valibot@1321

@orpc/vue-colada

npm i https://pkg.pr.new/@orpc/vue-colada@1321

@orpc/vue-query

npm i https://pkg.pr.new/@orpc/vue-query@1321

@orpc/zod

npm i https://pkg.pr.new/@orpc/zod@1321

commit: eef37a3

@codecov
Copy link
Copy Markdown

codecov bot commented Dec 30, 2025

Codecov Report

✅ All modified and coverable lines are covered by tests.

📢 Thoughts on this report? Let us know!

@dosubot dosubot bot added the lgtm This PR has been approved by a maintainer label Dec 30, 2025
@dinwwwh dinwwwh merged commit 4011bd2 into main Dec 30, 2025
8 checks passed
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/dev-dependencies-minor-patch-7bbfce406b branch December 30, 2025 09:20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code lgtm This PR has been approved by a maintainer size:L This PR changes 100-499 lines, ignoring generated files.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant