Skip to content

Commit 1c29c84

Browse files
committed
feat: added widget for staging environment.
1 parent e1b7cdd commit 1c29c84

2 files changed

Lines changed: 10 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [3.10.0] - 2026-03-22
11+
12+
### Added
13+
14+
- Dashboard widget providing access to the test system (staging environment), allowing users to preview the upcoming
15+
version and view its changelog without affecting the production system
16+
1017
## [3.9.0] - 2026-03-21
1118

1219
### Security

tests/Unit/Filament/Standard/Pages/DashboardTest.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ public function testGetWidgetsReturnsConfiguredWidgets(): void
1616
{
1717
$dashboard = new Dashboard();
1818
$widgets = $dashboard->getWidgets();
19-
$this->assertSame([OnboardingWizard::class, AccountWidget::class], $widgets);
19+
20+
$this->assertContains(OnboardingWizard::class, $widgets);
21+
$this->assertContains(AccountWidget::class, $widgets);
2022
}
2123
}

0 commit comments

Comments
 (0)