MQTT triggers changelog and fix 3 items shown (#5468)

This commit is contained in:
Henri Courdent
2025-03-11 19:28:39 +01:00
committed by GitHub
parent 04ea7b851b
commit 9176bced4b
2 changed files with 6 additions and 1 deletions

View File

@@ -275,7 +275,7 @@
hasNewChangelogs =
recentChangelogs.length > 0 && lastOpened !== new Date().toISOString().split('T')[0]
} else {
recentChangelogs = changelogs.slice(-3)
recentChangelogs = changelogs.slice(0, 3)
}
})

View File

@@ -5,6 +5,11 @@ export type Changelog = {
}
const changelogs: Changelog[] = [
{
label: 'MQTT triggers',
href: 'https://www.windmill.dev/changelog/mqtt-triggers',
date: '2025-03-11'
},
{
label: 'SQS triggers',
href: 'https://www.windmill.dev/changelog/sqs-triggers',