Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 12, 2025

This PR contains the following updates:

Package Change Age Confidence
@aws-sdk/client-s3 (source) 3.857.0 -> 3.862.0 age confidence
@cloudflare/vitest-pool-workers (source) 0.8.59 -> 0.8.60 age confidence
@cloudflare/workers-types 4.20250731.0 -> 4.20250806.0 age confidence
@​immich/ui ^0.23.2 -> ^0.24.0 age confidence
@sveltejs/kit (source) 2.26.1 -> 2.27.1 age confidence
@typescript-eslint/eslint-plugin (source) 8.38.0 -> 8.39.0 age confidence
@typescript-eslint/parser (source) 8.38.0 -> 8.39.0 age confidence
itty-router (source) 5.0.20 -> 5.0.21 age confidence
svelte (source) 5.37.1 -> 5.38.0 age confidence
svelte-check 4.3.0 -> 4.3.1 age confidence
typescript (source) 5.8.3 -> 5.9.2 age confidence
typescript-eslint (source) 8.38.0 -> 8.39.0 age confidence
wrangler (source) 4.27.0 -> 4.28.0 age confidence

Release Notes

aws/aws-sdk-js-v3 (@​aws-sdk/client-s3)

v3.862.0

Compare Source

Note: Version bump only for package @​aws-sdk/client-s3

v3.859.0

Compare Source

Note: Version bump only for package @​aws-sdk/client-s3

v3.858.0

Compare Source

Note: Version bump only for package @​aws-sdk/client-s3

cloudflare/workers-sdk (@​cloudflare/vitest-pool-workers)

v0.8.60

Compare Source

Patch Changes
cloudflare/workerd (@​cloudflare/workers-types)

v4.20250806.0

Compare Source

v4.20250805.0

Compare Source

v4.20250803.0

Compare Source

v4.20250802.0

Compare Source

v4.20250801.0

Compare Source

sveltejs/kit (@​sveltejs/kit)

v2.27.1

Compare Source

Patch Changes
  • fix: correctly type remote function input parameters from a schema (#​14098)

  • fix: match URL-encoded newlines in rest route params (#​14102)

  • fix: correctly spell server-side in error messages (#​14101)

v2.27.0

Compare Source

Minor Changes
typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v8.39.0

Compare Source

🚀 Features
  • eslint-plugin: [only-throw-error] support yield/await expressions (#​11417)
  • eslint-plugin: add no-unnecessary-type-conversion to strict-type-checked ruleset (#​11427)
  • update to TypeScript 5.9.2 (#​11445)
  • eslint-plugin: [naming-convention] add enumMember PascalCase default option (#​11127)
🩹 Fixes
  • eslint-plugin: [no-unsafe-assignment] add an unsafeObjectPattern message (#​11403)
  • eslint-plugin: [prefer-optional-chain] ignore check option for most RHS of a chain (#​11272)
❤️ Thank You

You can read about our versioning strategy and releases on our website.

typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v8.39.0

Compare Source

🚀 Features
❤️ Thank You

You can read about our versioning strategy and releases on our website.

kwhitley/itty-router (itty-router)

v5.0.21

Compare Source

See v5.0.21 CHANGELOG entry for notes

sveltejs/svelte (svelte)

v5.38.0

Compare Source

Minor Changes
  • feat: allow await inside @const declarations (#​16542)
Patch Changes
  • fix: remount at any hydration error (#​16248)

  • chore: emit await_reactivity_loss in for await loops (#​16521)

  • fix: emit snippet_invalid_export instead of undefined_export for exported snippets (#​16539)

v5.37.3

Compare Source

Patch Changes
  • fix: reset attribute cache after setting corresponding property (#​16543)

v5.37.2

Compare Source

Patch Changes
  • fix: double event processing in firefox due to event object being garbage collected (#​16527)

  • fix: add bindable dimension attributes types to SVG and MathML elements (#​16525)

  • fix: correctly differentiate static fields before emitting duplicate_class_field (#​16526)

  • fix: prevent last_propagated_event from being DCE'd (#​16538)

sveltejs/language-tools (svelte-check)

v4.3.1

Compare Source

fix: handle object literal in MustacheTag (https://github.com/sveltejs/language-tools/pull/2805)

microsoft/TypeScript (typescript)

v5.9.2

Compare Source

typescript-eslint/typescript-eslint (typescript-eslint)

v8.39.0

Compare Source

🚀 Features
❤️ Thank You

You can read about our versioning strategy and releases on our website.

cloudflare/workers-sdk (wrangler)

v4.28.0

Compare Source

Minor Changes
Patch Changes
  • #​10004 b4d1373 Thanks @​dario-piotrowicz! - fix wrangler dev logs being logged on the incorrect level in some cases

    currently the way wrangler dev prints logs is faulty, for example the following code

    console.error("this is an error");
    console.warn("this is a warning");
    console.debug("this is a debug");

    inside a worker would cause the following logs:

    ✘ [ERROR] this is an error
    
    ✘ [ERROR] this is a warning
    
    this is a debug
    

    (note that the warning is printed as an error and the debug log is printed even if by default it should not)

    the changes here make sure that the logs are instead logged to their correct level, so for the code about the following will be logged instead:

    ✘ [ERROR] this is an error
    
    ▲ [WARNING] this is a warning
    

    (running wrangler dev with the --log-level=debug flag will also cause the debug log to be included as well)

  • #​10099 360004d Thanks @​emily-shen! - fix: move local dev container cleanup to process exit hook. This should ensure containers are cleaned up even when Wrangler is shut down programatically.

  • #​10186 dae1377 Thanks @​matthewdavidrodgers! - Deleting when Pages project binds to worker requires confirmation

  • #​10169 1655bec Thanks @​devin-ai-integration! - fix: report startup errors before workerd profiling

  • #​10136 354a001 Thanks @​nikitassharma! - Update wrangler containers images list to make fewer API calls to improve command runtime

  • #​10157 5c3b83f Thanks @​devin-ai-integration! - Enforce 64-character limit for Workflow binding names locally to match production validation

  • #​10154 502a8e0 Thanks @​devin-ai-integration! - Fix UTF BOM handling in config files - remove UTF-8 BOM and error on other BOMs

  • #​10176 07c8611 Thanks @​devin-ai-integration! - Add macOS version validation to prevent EPIPE errors on unsupported macOS versions (below 13.5). Miniflare and C3 fail hard while Wrangler shows warnings but continues execution.

  • Updated dependencies [6b9cd5b, 631f26d, d6ecd05, b4d1373, 8ba7736, 07c8611, 7e204a9, 3f83ac1]:


Configuration

📅 Schedule: Branch creation - "on tuesday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@jrasm91 jrasm91 merged commit 075b28f into main Aug 12, 2025
8 checks passed
@jrasm91 jrasm91 deleted the renovate/typescript-projects branch August 12, 2025 01:07
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant