File tree Expand file tree Collapse file tree
tests/Unit/Filament/Standard/Pages Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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}
You can’t perform that action at this time.
0 commit comments