Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 0 additions & 4 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,8 @@ on:
name: linter

permissions:
checks: write
contents: read
statuses: write

jobs:
linter:
uses: yii2-framework/actions/.github/workflows/super-linter.yml@v1
secrets:
AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- refactor: Migrate the `default` debug views to `ui-awesome/html` builder components for consistent, escape-safe rendering.
- fix: Update `yiisoft/yii2` and `yiisoft/yii2-symfonymailer` version constraints for compatibility.
- docs: Update package badges and add social media links in `README.md`.
- fix(ci): Remove unnecessary permissions and secrets from `linter.yml` workflow.

## 0.1.1 May 18, 2026

Expand Down
2 changes: 1 addition & 1 deletion tests/timeline/SvgTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ public function testConstructorSkipsSourcePanelsWithoutMessages(): void

self::assertInstanceOf(LogPanel::class, $logPanel, 'Log panel must be wired.');

$logPanel->data = ['no-messages-key' => 'value'];
$logPanel->data = [];

$svg = new Svg($panel);

Expand Down
2 changes: 1 addition & 1 deletion tests/timeline/TimelinePanelTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -602,7 +602,7 @@ private function makeTimelinePanel(): TimelinePanel
* Sets the {@see ProfilingPanel::$data} payload backing the profiling lookups (`time` for duration override,
* `messages` for the span rows).
*
* @param array<string, mixed> $data Profiling payload to inject.
* @param array{memory?: mixed, time?: mixed, messages?: mixed} $data Profiling payload to inject.
*/
private function primeProfilingPanel(TimelinePanel $panel, array $data): void
{
Expand Down
Loading