From 43a88f551f37bd6b6997ef23d942a712ef1af32b Mon Sep 17 00:00:00 2001 From: Alex Justesen Date: Thu, 18 Dec 2025 09:00:57 -0500 Subject: [PATCH 1/3] add selection details option to speedtest command (#2572) Co-authored-by: Alex Justesen <1144087+alexjustesen@users.noreply.github.com> --- app/Jobs/Ookla/RunSpeedtestJob.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Jobs/Ookla/RunSpeedtestJob.php b/app/Jobs/Ookla/RunSpeedtestJob.php index 486faab6f..61b371939 100644 --- a/app/Jobs/Ookla/RunSpeedtestJob.php +++ b/app/Jobs/Ookla/RunSpeedtestJob.php @@ -60,6 +60,7 @@ public function handle(): void 'speedtest', '--accept-license', '--accept-gdpr', + '--selection-details', '--format=json', $this->result->server_id ? '--server-id='.$this->result->server_id : null, config('speedtest.interface') ? '--interface='.config('speedtest.interface') : null, From 376b2065f63357b0af2e89aa215c15d6331d37ef Mon Sep 17 00:00:00 2001 From: Alex Justesen Date: Thu, 18 Dec 2025 09:19:05 -0500 Subject: [PATCH 2/3] remove platform stats from metrics dashboard (#2574) Co-authored-by: Alex Justesen <1144087+alexjustesen@users.noreply.github.com> --- resources/views/dashboard.blade.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/resources/views/dashboard.blade.php b/resources/views/dashboard.blade.php index e1b26abed..8b54445cb 100644 --- a/resources/views/dashboard.blade.php +++ b/resources/views/dashboard.blade.php @@ -2,10 +2,6 @@
- @auth - - @endauth -
From dc4dd2ff660246da1b450bea620760e0535a8169 Mon Sep 17 00:00:00 2001 From: Alex Justesen Date: Thu, 18 Dec 2025 09:24:20 -0500 Subject: [PATCH 3/3] Release v1.13.2 (#2575) Co-authored-by: Alex Justesen <1144087+alexjustesen@users.noreply.github.com> --- config/speedtest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/speedtest.php b/config/speedtest.php index b68a6a040..946b93f75 100644 --- a/config/speedtest.php +++ b/config/speedtest.php @@ -6,9 +6,9 @@ /** * General settings. */ - 'build_date' => Carbon::parse('2025-12-16'), + 'build_date' => Carbon::parse('2025-12-18'), - 'build_version' => 'v1.13.0', + 'build_version' => 'v1.13.2', 'content_width' => env('CONTENT_WIDTH', '7xl'),