Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/app/(app)/claw/components/changelog-data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ export type ChangelogEntry = {

// Newest entries first. Developers add new entries to the top of this array.
export const CHANGELOG_ENTRIES: ChangelogEntry[] = [
{
date: '2026-04-01',
description: 'Updated OpenClaw to 2026.3.24.',
category: 'feature',
deployHint: 'upgrade_required',
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

WARNING: upgrade_required overstates the action needed for this changelog entry

The surrounding changelog entries treat straight OpenClaw version bumps as redeploy_suggested rather than upgrade_required (for example the 2026-03-16 and 2026-03-10 entries in this file). Leaving this as upgrade_required will show a stronger rollout requirement in the UI than the rest of the changelog uses for the same kind of change.

Suggested change
deployHint: 'upgrade_required',
deployHint: 'redeploy_suggested',

},
{
date: '2026-03-31',
description:
Expand Down
Loading