Skip to content

chore(deps)(deps-dev): bump the next-minor-patch group across 1 directory with 3 updates#22

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/internal/server/next/client/next-minor-patch-3161792b06
Open

chore(deps)(deps-dev): bump the next-minor-patch group across 1 directory with 3 updates#22
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/internal/server/next/client/next-minor-patch-3161792b06

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github May 15, 2026

Copy link
Copy Markdown

Bumps the next-minor-patch group with 3 updates in the /internal/server/next/client directory: @tsconfig/svelte, svelte and svelte-check.

Updates @tsconfig/svelte from 5.0.4 to 5.0.8

Commits

Updates svelte from 5.15.0 to 5.55.9

Release notes

Sourced from svelte's releases.

svelte@5.55.9

Patch Changes

  • fix: don't unset batch when calling {#await ...} promise (#18243)

  • fix: promise-ify {#await await ...} expressions on the server and correctly hydrate them on the client (#18243)

  • fix: deduplicate dependencies that are added outside the init/update cycle (#18243)

  • fix: avoid false-positive batch invariant error (#18246)

  • fix: inline primitive constants in attribute values during SSR (#18232)

svelte@5.55.8

Patch Changes

  • fix(print): handle svelte:body and fix keyframe percentage double-printing (#18234)

  • fix: execute uninitialized derived even if it's destroyed (#18228)

  • fix: use named symbols everywhere (#18238)

  • fix: don't run teardown effects when deriveds are unfreezed (#18227)

  • fix: unset context synchronously in run (#18236)

svelte@5.55.7

Patch Changes

svelte@5.55.6

Patch Changes

  • fix: leave stale promises to wait for a later resolution, instead of rejecting (#18180)

  • fix: keep dependencies of $state.eager/pending (#18218)

  • fix: reapply context after transforming error during SSR (#18099)

  • fix: don't rebase just-created batches (#18117)

... (truncated)

Changelog

Sourced from svelte's changelog.

5.55.9

Patch Changes

  • fix: don't unset batch when calling {#await ...} promise (#18243)

  • fix: promise-ify {#await await ...} expressions on the server and correctly hydrate them on the client (#18243)

  • fix: deduplicate dependencies that are added outside the init/update cycle (#18243)

  • fix: avoid false-positive batch invariant error (#18246)

  • fix: inline primitive constants in attribute values during SSR (#18232)

5.55.8

Patch Changes

  • fix(print): handle svelte:body and fix keyframe percentage double-printing (#18234)

  • fix: execute uninitialized derived even if it's destroyed (#18228)

  • fix: use named symbols everywhere (#18238)

  • fix: don't run teardown effects when deriveds are unfreezed (#18227)

  • fix: unset context synchronously in run (#18236)

5.55.7

Patch Changes

5.55.6

Patch Changes

  • fix: leave stale promises to wait for a later resolution, instead of rejecting (#18180)

  • fix: keep dependencies of $state.eager/pending (#18218)

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for svelte since your current version.


Updates svelte-check from 4.1.1 to 4.4.8

Release notes

Sourced from svelte-check's releases.

svelte-check@4.4.8

Patch Changes

  • feat: typescript 6.0 support (#2985)

svelte-check@4.4.7

Patch Changes

  • fix: flush stdout/stderr before exit (#3014)

  • fix: report diagnostics in tsconfig.json (#3005)

svelte-check@4.4.6

Patch Changes

  • fix: prevent config loading message in svelte-check --incremental (#2974)

  • fix: resolve svelte files with NodeNext in --incremental/tsgo (#2990)

  • perf: various optimization with ast walk (#2969)

  • fix: prevent error with escape sequence in attribute (#2968)

  • fix: typescript 6.0 compatibility (#2988)

svelte-check@4.4.5

Patch Changes

  • fix: use Promise for async kit handler return types (#2966)

svelte-check@4.4.4

Patch Changes

  • fix: more robust detection of lang="ts" attribute (#2957)

  • fix: pass filename to warningFilter (#2959)

  • fix: resolve svelte files under path alias in --incremental/tsgo mode (#2955)

svelte-check@4.4.3

Patch Changes

  • fix: respect @ts-ignore etc comments within tags (#2950)

svelte-check@4.4.2

Patch Changes

  • fix: resolve shims correctly in --incremental/tsgo mode (cd1ff2f)

  • fix: include references in generated tsconfig.json in --incremental/tsgo mode (1990f74)

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for svelte-check since your current version.


@dependabot dependabot Bot requested a review from nopperabbo as a code owner May 15, 2026 13:41
@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label May 15, 2026
@dependabot @github

dependabot Bot commented on behalf of github May 15, 2026

Copy link
Copy Markdown
Author

Labels

The following labels could not be found: experimental, frontend. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

nopperabbo added a commit that referenced this pull request May 15, 2026
When the upstream Kiro stream is severed mid-output AFTER visible
content has reached the client, kiroxy can no longer go back and emit a
JSON error envelope without violating the SSE protocol (message_start +
content_block_start already on the wire). Without a clean close,
clients (claude-code, opencode, claude-code-router) sit forever
waiting for a message_stop event that never arrives.

This commit adds SSEWriter.TruncatedFinish(reason) which:

- Closes any active content block.
- Emits a synthetic message_delta with stop_reason="max_tokens"
  (preserving any non-end_turn upstream stop reason if one was already
  recorded on the accumulator) plus the usage map.
- Emits message_stop so the client can finalize.
- Logs slog.Warn 'stream truncated, finalizing as max_tokens' with the
  original upstream_reason so operators can diagnose root cause.

Wired in handleStreamingResponse: the streamErr+Started+IsPromoted
case now calls TruncatedFinish instead of writeStreamingOrJSONError —
no more half-closed streams when upstream cuts off long thinking.

Stop reason choice rationale: 'max_tokens' is the closest
Anthropic-compatible signal; clients already handle it with a 'response
was truncated, ask continue to resume' UX. 'end_turn' would falsely
suggest the response was complete.

References hank9999/kiro.rs issues #22 and #49 documenting the exact
'session stuck' / 'Write Failed' user pain point.

Tests:
- TestSSEWriter_TruncatedFinish_EmitsMaxTokens: synthesizes a 2-delta
  visible stream then truncates, asserts message_stop + max_tokens
  stop_reason + no error event leaked into the wire.
- TestSSEWriter_TruncatedFinish_PreservesUpstreamStopReason:
  pre-populates accumulator with stop_sequence then truncates,
  asserts upstream signal wins over the max_tokens default.

Also adds two TROUBLESHOOTING.md sections:

- 'MCP servers / mcp_servers field' explaining why kiroxy does not
  support Anthropic's mcp-client-2025-11-20 beta (Kiro upstream is not
  Anthropic; it has no MCP semantics; kiroxy.proxies pass it through
  as a no-op). Suggests claude-code-router, claude-code stdio, or
  tracking the future kiroxy-native MCP roadmap as workarounds.
- 'Stream truncated mid-output' documenting the new TruncatedFinish
  behavior + the WARN log shape so operators can grep for it.

go build / vet / test ./... all green (32 packages).
@dependabot dependabot Bot changed the title chore(deps)(deps-dev): bump the next-minor-patch group in /internal/server/next/client with 3 updates chore(deps)(deps-dev): bump the next-minor-patch group across 1 directory with 3 updates May 23, 2026
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/internal/server/next/client/next-minor-patch-3161792b06 branch from 33e90ce to 9297d78 Compare May 23, 2026 12:45
…tory with 3 updates

Bumps the next-minor-patch group with 3 updates in the /internal/server/next/client directory: [@tsconfig/svelte](https://github.com/tsconfig/bases/tree/HEAD/bases), [svelte](https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte) and [svelte-check](https://github.com/sveltejs/language-tools).


Updates `@tsconfig/svelte` from 5.0.4 to 5.0.8
- [Commits](https://github.com/tsconfig/bases/commits/HEAD/bases)

Updates `svelte` from 5.15.0 to 5.55.9
- [Release notes](https://github.com/sveltejs/svelte/releases)
- [Changelog](https://github.com/sveltejs/svelte/blob/main/packages/svelte/CHANGELOG.md)
- [Commits](https://github.com/sveltejs/svelte/commits/svelte@5.55.9/packages/svelte)

Updates `svelte-check` from 4.1.1 to 4.4.8
- [Release notes](https://github.com/sveltejs/language-tools/releases)
- [Commits](https://github.com/sveltejs/language-tools/compare/svelte-check-4.1.1...svelte-check@4.4.8)

---
updated-dependencies:
- dependency-name: "@tsconfig/svelte"
  dependency-version: 5.0.8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: next-minor-patch
- dependency-name: svelte
  dependency-version: 5.55.7
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: next-minor-patch
- dependency-name: svelte-check
  dependency-version: 4.4.8
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: next-minor-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/internal/server/next/client/next-minor-patch-3161792b06 branch from 9297d78 to c27085f Compare May 25, 2026 20:59
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 frontend

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants