Skip to content

Bump dependencies#3176

Merged
laurakwhit merged 3 commits intomainfrom
version-bumps
Feb 25, 2026
Merged

Bump dependencies#3176
laurakwhit merged 3 commits intomainfrom
version-bumps

Conversation

@laurakwhit
Copy link
Collaborator

@laurakwhit laurakwhit commented Feb 23, 2026

Description & motivation 💭

  • Bumps @sveltejs/kit from 2.49.5 to 2.53.0.
  • Bumps svelte from 5.46.4 to 5.53.3.
    • Note: In Svelte 5.53.3, the {#each} keyed block now throws a runtime each_key_duplicate error instead of silently handling duplicate keys.
  • Bumps @sveltejs/vite-plugin-svelte from 5.0.3 to 6.2.4.
    • Bumps vite from 6.2.4 to 6.3.0 as required for @sveltejs/vite-plugin-svelte 6.2.4.
  • Bumps @sveltejs/adapter-vercel from 4.0.5 to 6.3.2.
  • Bumps webpack from 5.104.0 to 5.105.2.

Screenshots (if applicable) 📸

Design Considerations 🎨

Testing 🧪

How was this tested 👻

  • Manual testing
  • E2E tests added
  • Unit tests added

Steps for others to test: 🚶🏽‍♂️🚶🏽‍♀️

Checklists

Draft Checklist

Merge Checklist

Issue(s) closed

Docs

Any docs updates needed?

@vercel
Copy link

vercel bot commented Feb 23, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
holocene Ready Ready Preview, Comment Feb 25, 2026 11:12pm

Request Review

</Link>
</div>
{#each sortRecentRuns(recentRuns) as run (run?.startWorkflowResult?.workflowId)}
{#each sortRecentRuns(recentRuns) as run, i (`${run?.startWorkflowResult?.workflowId ?? i}:${run?.startWorkflowResult?.runId ?? i + 1}`)}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • ⚠️ 'run.startWorkflowResult' is possibly 'null' or 'undefined'.
  • ⚠️ 'run.startWorkflowResult' is possibly 'null' or 'undefined'.
  • ⚠️ Argument of type 'string | null | undefined' is not assignable to parameter of type 'string'.
  • ⚠️ Type 'string | null | undefined' is not assignable to type 'string | undefined'.

{#each visibleItems as workflow (workflow.id + workflow.runId)}
{#each visibleItems as workflow (`${workflow.id}:${workflow.runId}`)}
<TableRow
{workflow}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • ⚠️ Type '(workflow: WorkflowExecution) => Promise' is not assignable to type '(workflow?: WorkflowExecution | undefined) => void'.

@@ -113,7 +113,7 @@
{/each}
</TableRow>
{#if childrenActive(workflow)}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • ⚠️ Object is possibly 'undefined'.

@temporal-cicd
Copy link
Contributor

temporal-cicd bot commented Feb 23, 2026

Warnings
⚠️

📊 Strict Mode: 25 errors in 5 files (2.2% of 1112 total)

src/lib/components/schedule/schedule-recent-runs.svelte (11)
  • L38:6: Type 'string | undefined' is not assignable to type 'string'.
  • L48:81: 'run.startWorkflowResult' is possibly 'null' or 'undefined'.
  • L48:81: Argument of type 'string | null | undefined' is not assignable to parameter of type 'string'.
  • L48:118: Type 'string | null | undefined' is not assignable to type 'string | undefined'.
  • L48:125: 'run.startWorkflowResult' is possibly 'null' or 'undefined'.
  • L56:14: Type 'string | null | undefined' is not assignable to type 'string'.
  • L56:24: 'run.startWorkflowResult' is possibly 'null' or 'undefined'.
  • L57:14: Type 'string | null | undefined' is not assignable to type 'string'.
  • L57:19: 'run.startWorkflowResult' is possibly 'null' or 'undefined'.
  • L61:13: 'run.startWorkflowResult' is possibly 'null' or 'undefined'.
  • L72:11: 'run.startWorkflowResult' is possibly 'null' or 'undefined'.
src/lib/components/workflow/search-attribute-input/index.svelte (1)
  • L61:13: Type 'string | false | 0 | undefined' is not assignable to type 'string | undefined'.
src/lib/components/workflow/workflow-callback.svelte (8)
  • L38:11: Type 'null' cannot be used as an index type.
  • L38:11: Type 'undefined' cannot be used as an index type.
  • L52:17: 'link.workflowEvent' is possibly 'null' or 'undefined'.
  • L53:36: Type 'string | null | undefined' is not assignable to type 'string'.
  • L53:47: 'link.workflowEvent' is possibly 'null' or 'undefined'.
  • L61:15: 'link.workflowEvent' is possibly 'null' or 'undefined'.
  • L62:34: Type 'string | null | undefined' is not assignable to type 'string'.
  • L62:45: 'link.workflowEvent' is possibly 'null' or 'undefined'.
src/lib/components/workflow/workflows-summary-configurable-table.svelte (4)
  • L75:56: Argument of type 'string | null' is not assignable to parameter of type 'string | undefined'.
  • L107:9: Type '(workflow: WorkflowExecution) => Promise' is not assignable to type '(workflow?: WorkflowExecution | undefined) => void'.
  • L115:15: Object is possibly 'undefined'.
  • L126:8: '$$_etatSytpmEelbaT2.$$slot_def' is of type 'unknown'.
src/routes/(app)/namespaces/[namespace]/archival/_archival-table.svelte (1)
  • L18:47: Argument of type 'string | null' is not assignable to parameter of type 'string | undefined'.

Generated by 🚫 dangerJS against 84b3c60

Copy link
Contributor

@andrewzamojc andrewzamojc left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I did some clicking on the affected pages/components and everything seemed ok 👍

@laurakwhit laurakwhit merged commit 952ae5e into main Feb 25, 2026
16 checks passed
@laurakwhit laurakwhit deleted the version-bumps branch February 25, 2026 23:32
temporal-cicd bot pushed a commit that referenced this pull request Feb 26, 2026
Auto-generated version bump from 2.47.0 to 2.47.1

Bump type: patch

Changes included:
- [`44f326b6`](44f326b) Add check for default color (#3194)
- [`952ae5ef`](952ae5e) Bump dependencies (#3176)
- [`b62ebe7a`](b62ebe7) Detail list text and link value fix (#3195)
- [`7f84fe09`](7f84fe0) Bump server image and dockerize versions (#3192)
rossedfort added a commit that referenced this pull request Feb 26, 2026
Auto-generated version bump from 2.47.0 to 2.47.1

Bump type: patch

Changes included:
- [`44f326b6`](44f326b) Add check for default color (#3194)
- [`952ae5ef`](952ae5e) Bump dependencies (#3176)
- [`b62ebe7a`](b62ebe7) Detail list text and link value fix (#3195)
- [`7f84fe09`](7f84fe0) Bump server image and dockerize versions (#3192)

Co-authored-by: rossedfort <11775628+rossedfort@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants