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
11 changes: 11 additions & 0 deletions frontend/src/lib/components/sidebar/changelogs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,17 @@ export type Changelog = {
}

const changelogs: Changelog[] = [
{
Copy link
Contributor

Choose a reason for hiding this comment

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

Ordering issue: 'AI Agents' (2025-09-30) is more recent than 'Flow Streaming & SSE Endpoints' (2025-09-29) but appears second. Consider swapping to maintain consistent descending order.

label: 'Flow Streaming & SSE Endpoints',
href: 'https://www.windmill.dev/changelog/flow-streaming-sse',
date: '2025-09-29'
},
{
label: 'AI Agents',
href: 'https://www.windmill.dev/changelog/ai-agents',
date: '2025-09-30'
},

{
label: 'Dynamic select for flows',
href: 'https://www.windmill.dev/changelog/dynamic-select-flows',
Expand Down
Loading