Compare commits
23 Commits
| Author | SHA1 | Date |
|---|---|---|
|
|
2a2a33468a | |
|
|
5044ddf5a6 | |
|
|
a2924a7819 | |
|
|
2faf5df166 | |
|
|
56ce0e5e28 | |
|
|
f8324c4322 | |
|
|
dba98cc0cd | |
|
|
e73612e9f3 | |
|
|
2d06c39ceb | |
|
|
4bf4b5ed4d | |
|
|
90a5d33907 | |
|
|
731f80c021 | |
|
|
6622a84f06 | |
|
|
10baacba6b | |
|
|
dfe3cc020e | |
|
|
d9dd50b57a | |
|
|
f6c555e2e3 | |
|
|
da483ff821 | |
|
|
3711c21b76 | |
|
|
15aba2d47d | |
|
|
334b6c1cd2 | |
|
|
cbe2665c1d | |
|
|
584648356d |
12
CHANGELOG.md
12
CHANGELOG.md
|
|
@ -1,6 +1,18 @@
|
|||
|
||||
# CHANGELOG - sitespeed.io (we use [semantic versioning](https://semver.org))
|
||||
|
||||
## 39.2.0 - 2025-12-18
|
||||
### Added
|
||||
* Updated to Browsertime 26.2 with latest Chromedriver and Edgedriver and a small XVFB fix [#4575](https://github.com/sitespeedio/sitespeed.io/pull/4575).
|
||||
|
||||
## 39.1.2 - 2025-12-17
|
||||
### Fixed
|
||||
* Fix a bug introduced in 39.0.0 where alias was missing when creating some file structure [#4574](https://github.com/sitespeedio/sitespeed.io/pull/4574).
|
||||
|
||||
## 39.1.1 - 2025-12-16
|
||||
### Fixed
|
||||
* Safer handling for broken URLs. This logs the actual root cause [#4573](https://github.com/sitespeedio/sitespeed.io/pull/4573).
|
||||
|
||||
## 39.1.0 - 2025-12-15
|
||||
### Added
|
||||
* Upgrade the Docker container: Chrome and Edge 143, Firefox 146 [#4572](https://github.com/sitespeedio/sitespeed.io/pull/4572).
|
||||
|
|
|
|||
2
LICENSE
2
LICENSE
|
|
@ -1,6 +1,6 @@
|
|||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2012-2025 Peter Hedenskog
|
||||
Copyright (c) 2012-2026 Peter Hedenskog
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
source "https://rubygems.org"
|
||||
gem 'github-pages', group: :jekyll_plugins
|
||||
ruby '3.0.0'
|
||||
ruby '~> 3.0.0'
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
26.1.0
|
||||
26.3.0
|
||||
|
|
@ -1 +1 @@
|
|||
39.0.0
|
||||
39.2.0
|
||||
|
|
@ -54,7 +54,7 @@ android
|
|||
--android.pretestPowerPress, --androidPretestPowerPress Press the power button on the phone before a test starts. [boolean] [default: false]
|
||||
--android.pretestPressHomeButton, --androidPretestPressHomeButton Press the home button on the phone before a test starts. [boolean] [default: false]
|
||||
--android.verifyNetwork, --androidVerifyNetwork Before a test start, verify that the device has a Internet connection by pinging 8.8.8.8 (or a configurable domain with --androidPingAddress) [boolean] [default: false]
|
||||
--android.ndk, --androidNDK Path to the Android NDK (required for simpleperf profiling). [string]
|
||||
--android.simpleperf, --androidSimpleperf Path to the Simpleperf profiler from the Android NDK. [string]
|
||||
--android.perfettoTrace, --androidPerfettoTrace Collect a perfetto trace with the given configuration. [default: false]
|
||||
--android.gnirehtet, --gnirehtet Start gnirehtet and reverse tethering the traffic from your Android phone. [boolean] [default: false]
|
||||
|
||||
|
|
@ -68,7 +68,7 @@ firefox
|
|||
--firefox.developer Use Firefox Developer. Works on OS X. For Linux you need to set the binary path. [boolean]
|
||||
--firefox.preference Extra command line arguments to pass Firefox preferences by the format key:value To add multiple preferences, repeat --firefox.preference once per argument.
|
||||
--firefox.args Extra command line arguments to pass to the Firefox process (e.g. --MOZ_LOG). To add multiple arguments to Firefox, repeat --firefox.args once per argument.
|
||||
--firefox.includeResponseBodies Include response bodies in HAR [choices: "none", "all", "html"] [default: "none"]
|
||||
--firefox.includeResponseBodies Include response bodies in HAR [choices: "none", "all"] [default: "none"]
|
||||
--firefox.appconstants Include Firefox AppConstants information in the results [boolean] [default: false]
|
||||
--firefox.acceptInsecureCerts Accept insecure certs [boolean]
|
||||
--firefox.windowRecorder Use the internal compositor-based Firefox window recorder to emit PNG files for each frame that is a meaningful change. The PNG output will further be merged into a variable frame rate video for analysis. Use this instead of ffmpeg to record a video (you still need the --video flag). [boolean] [default: false]
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
layout: default
|
||||
title: Documentation Browsertime 24
|
||||
title: Documentation Browsertime 26
|
||||
description: Read about all you can do with Browsertime.
|
||||
keywords: tools, documentation, web performance
|
||||
nav: documentation
|
||||
|
|
@ -9,7 +9,7 @@ image: https://www.sitespeed.io/img/sitespeed-2.0-twitter.png
|
|||
twitterdescription: Documentation for Browsertime.
|
||||
---
|
||||
|
||||
# Documentation v24
|
||||
# Documentation v26
|
||||
|
||||
<img src="{{site.baseurl}}/img/logos/browsertime.png" class="pull-right img-big" alt="Browsertime logo" width="200" height="175">
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
layout: default
|
||||
title: Documentation sitespeed.io 38.x
|
||||
title: Documentation sitespeed.io 39.x
|
||||
description: Read about all you can do with sitespeed.io.
|
||||
keywords: tools, documentation, web performance
|
||||
nav: documentation
|
||||
|
|
@ -9,7 +9,7 @@ image: https://www.sitespeed.io/img/sitespeed-2.0-twitter.png
|
|||
twitterdescription: Documentation for sitespeed.io.
|
||||
---
|
||||
|
||||
# Documentation v38
|
||||
# Documentation v39
|
||||
|
||||
<img src="{{site.baseurl}}/img/logos/sitespeed.io.png" class="pull-right img-big" alt="sitespeed.io logo" width="200" height="214">
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
<feed xmlns="http://www.w3.org/2005/Atom">
|
||||
<id>sitespeed.io-release-feed</id>
|
||||
<title>sitespeed.io release feed</title>
|
||||
<updated>2025-11-02T00:00:00.000Z</updated>
|
||||
<updated>2025-12-18T00:00:00.000Z</updated>
|
||||
<generator>https://github.com/jpmonette/feed</generator>
|
||||
<author>
|
||||
<name>Peter Hedenskog</name>
|
||||
|
|
@ -15,6 +15,155 @@
|
|||
<logo>https://www.sitespeed.io/img/logos/sitespeed.io.png</logo>
|
||||
<icon>http://www.sitespeed.io/favicon.ico</icon>
|
||||
<rights>All rights reserved 2022, Peter Hedenskog and team</rights>
|
||||
<entry>
|
||||
<title type="html"><![CDATA[sitespeed.io 39.2.0]]></title>
|
||||
<id>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#39.2.0</id>
|
||||
<link href="https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#39.2.0"/>
|
||||
<updated>2025-12-18T00:00:00.000Z</updated>
|
||||
<summary type="html"><![CDATA[<h3>Added</h3>
|
||||
<ul>
|
||||
<li>Updated to Browsertime 26.2 with latest Chromedriver and Edgedriver and a small XVFB fix <a href="https://github.com/sitespeedio/sitespeed.io/pull/4575">#4575</a>.</li>
|
||||
</ul>
|
||||
]]></summary>
|
||||
<author>
|
||||
<name>Sitespeed.io</name>
|
||||
<uri>https://www.sitespeed.io</uri>
|
||||
</author>
|
||||
</entry>
|
||||
<entry>
|
||||
<title type="html"><![CDATA[browsertime 26.2.0]]></title>
|
||||
<id>https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#26.2.0</id>
|
||||
<link href="https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#26.2.0"/>
|
||||
<updated>2025-12-18T00:00:00.000Z</updated>
|
||||
<summary type="html"><![CDATA[<h3>Added</h3>
|
||||
<ul>
|
||||
<li>Updated Chromedriver and Edgedriver to 143 <a href="https://github.com/sitespeedio/browsertime/pull/2354">#2354</a> and<a href="https://github.com/sitespeedio/browsertime/pull/2355">#2355</a>.</li>
|
||||
</ul>
|
||||
<ul>
|
||||
<li>Updated webdriver to 4.39.0 <a href="https://github.com/sitespeedio/browsertime/pull/2356">#2356</a>.</li>
|
||||
</ul>
|
||||
<h3>Fixed</h3>
|
||||
<ul>
|
||||
<li>Try to tune the XVFB handling to make it safer that xvfb is always stopped <a href="https://github.com/sitespeedio/browsertime/pull/2353">#2353</a>.</li>
|
||||
</ul>
|
||||
]]></summary>
|
||||
<author>
|
||||
<name>Sitespeed.io</name>
|
||||
<uri>https://www.sitespeed.io</uri>
|
||||
</author>
|
||||
</entry>
|
||||
<entry>
|
||||
<title type="html"><![CDATA[sitespeed.io 39.1.2]]></title>
|
||||
<id>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#39.1.2</id>
|
||||
<link href="https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#39.1.2"/>
|
||||
<updated>2025-12-17T00:00:00.000Z</updated>
|
||||
<summary type="html"><![CDATA[<h3>Fixed</h3>
|
||||
<ul>
|
||||
<li>Fix a bug introduced in 39.0.0 where alias was missing when creating some file structure <a href="https://github.com/sitespeedio/sitespeed.io/pull/4574">#4574</a>.</li>
|
||||
</ul>
|
||||
]]></summary>
|
||||
<author>
|
||||
<name>Sitespeed.io</name>
|
||||
<uri>https://www.sitespeed.io</uri>
|
||||
</author>
|
||||
</entry>
|
||||
<entry>
|
||||
<title type="html"><![CDATA[sitespeed.io 39.1.1]]></title>
|
||||
<id>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#39.1.1</id>
|
||||
<link href="https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#39.1.1"/>
|
||||
<updated>2025-12-16T00:00:00.000Z</updated>
|
||||
<summary type="html"><![CDATA[<h3>Fixed</h3>
|
||||
<ul>
|
||||
<li>Safer handling for broken URLs. This logs the actual root cause <a href="https://github.com/sitespeedio/sitespeed.io/pull/4573">#4573</a>.</li>
|
||||
</ul>
|
||||
]]></summary>
|
||||
<author>
|
||||
<name>Sitespeed.io</name>
|
||||
<uri>https://www.sitespeed.io</uri>
|
||||
</author>
|
||||
</entry>
|
||||
<entry>
|
||||
<title type="html"><![CDATA[sitespeed.io 39.1.0]]></title>
|
||||
<id>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#39.1.0</id>
|
||||
<link href="https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#39.1.0"/>
|
||||
<updated>2025-12-15T00:00:00.000Z</updated>
|
||||
<summary type="html"><![CDATA[<h3>Added</h3>
|
||||
<ul>
|
||||
<li>Upgrade the Docker container: Chrome and Edge 143, Firefox 146 <a href="https://github.com/sitespeedio/sitespeed.io/pull/4572">#4572</a>.</li>
|
||||
</ul>
|
||||
]]></summary>
|
||||
<author>
|
||||
<name>Sitespeed.io</name>
|
||||
<uri>https://www.sitespeed.io</uri>
|
||||
</author>
|
||||
</entry>
|
||||
<entry>
|
||||
<title type="html"><![CDATA[sitespeed.io 39.0.0]]></title>
|
||||
<id>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#39.0.0</id>
|
||||
<link href="https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#39.0.0"/>
|
||||
<updated>2025-12-15T00:00:00.000Z</updated>
|
||||
<summary type="html"><![CDATA[<h3>Added</h3>
|
||||
<ul>
|
||||
<li>Upgrade to support NodeJS 24 without warnings, include NodeJS 24 in the Docker container, and base the Docker container on Ubuntu 24.04. To make this work I needed to upgrade the Jimp library and then we lost the settings for png screenshots <code>--browsertime.screenshotParams.png.compressionLevel</code> <a href="https://github.com/sitespeedio/sitespeed.io/pull/4570">#4570</a>.</li>
|
||||
</ul>
|
||||
]]></summary>
|
||||
<author>
|
||||
<name>Sitespeed.io</name>
|
||||
<uri>https://www.sitespeed.io</uri>
|
||||
</author>
|
||||
</entry>
|
||||
<entry>
|
||||
<title type="html"><![CDATA[browsertime 26.1.0]]></title>
|
||||
<id>https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#26.1.0</id>
|
||||
<link href="https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#26.1.0"/>
|
||||
<updated>2025-12-11T00:00:00.000Z</updated>
|
||||
<summary type="html"><![CDATA[<h3>Added</h3>
|
||||
<ul>
|
||||
<li>Firefox 146 in the Docker container <a href="https://github.com/sitespeedio/browsertime/pull/2351">#2351</a>.</li>
|
||||
</ul>
|
||||
<ul>
|
||||
<li>Chrome 143 in the Docker container <a href="https://github.com/sitespeedio/browsertime/pull/2350">#2350</a>.</li>
|
||||
</ul>
|
||||
<h3>Fixed</h3>
|
||||
<ul>
|
||||
<li>Make sure the user in the Docker container has the correct user rights <a href="https://github.com/sitespeedio/browsertime/pull/2349">#2349</a>.</li>
|
||||
</ul>
|
||||
]]></summary>
|
||||
<author>
|
||||
<name>Sitespeed.io</name>
|
||||
<uri>https://www.sitespeed.io</uri>
|
||||
</author>
|
||||
</entry>
|
||||
<entry>
|
||||
<title type="html"><![CDATA[browsertime 26.0.1]]></title>
|
||||
<id>https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#26.0.1</id>
|
||||
<link href="https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#26.0.1"/>
|
||||
<updated>2025-12-10T00:00:00.000Z</updated>
|
||||
<summary type="html"><![CDATA[<h3>Fixed</h3>
|
||||
<ul>
|
||||
<li>Remove extra console.log entry :)</li>
|
||||
</ul>
|
||||
]]></summary>
|
||||
<author>
|
||||
<name>Sitespeed.io</name>
|
||||
<uri>https://www.sitespeed.io</uri>
|
||||
</author>
|
||||
</entry>
|
||||
<entry>
|
||||
<title type="html"><![CDATA[browsertime 26.0.0]]></title>
|
||||
<id>https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#26.0.0</id>
|
||||
<link href="https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#26.0.0"/>
|
||||
<updated>2025-12-10T00:00:00.000Z</updated>
|
||||
<summary type="html"><![CDATA[<h3>Added</h3>
|
||||
<ul>
|
||||
<li>Upgrade to support NodeJS 24 without warnings, include NodeJS 24 in the Docker container, and base the Docker container on Ubuntu 24.04. To make this work I needed to upgrade the Jimp library and then we lost the settings for png screenshots <code>--screenshotParams.png.compressionLevel</code> <a href="https://github.com/sitespeedio/browsertime/pull/2342">#2342</a>.</li>
|
||||
</ul>
|
||||
]]></summary>
|
||||
<author>
|
||||
<name>Sitespeed.io</name>
|
||||
<uri>https://www.sitespeed.io</uri>
|
||||
</author>
|
||||
</entry>
|
||||
<entry>
|
||||
<title type="html"><![CDATA[sitespeed.io 38.6.0]]></title>
|
||||
<id>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#38.6.0</id>
|
||||
|
|
@ -42,6 +191,21 @@
|
|||
<ul>
|
||||
<li>Chrome and Chromedriver 142 <a href="https://github.com/sitespeedio/browsertime/pull/2335">#2335</a>.</li>
|
||||
</ul>
|
||||
]]></summary>
|
||||
<author>
|
||||
<name>Sitespeed.io</name>
|
||||
<uri>https://www.sitespeed.io</uri>
|
||||
</author>
|
||||
</entry>
|
||||
<entry>
|
||||
<title type="html"><![CDATA[testrunner 1.2.1]]></title>
|
||||
<id>https://github.com/sitespeedio/testrunner/blob/main/CHANGELOG.md#1.2.1</id>
|
||||
<link href="https://github.com/sitespeedio/testrunner/blob/main/CHANGELOG.md#1.2.1"/>
|
||||
<updated>2025-10-31T00:00:00.000Z</updated>
|
||||
<summary type="html"><![CDATA[<h3>Fixed</h3>
|
||||
<ul>
|
||||
<li>Tests running in the Docker container has the wrong path to the scripting file <a href="https://github.com/sitespeedio/onlinetest/pull/167">#167</a>.</li>
|
||||
</ul>
|
||||
]]></summary>
|
||||
<author>
|
||||
<name>Sitespeed.io</name>
|
||||
|
|
@ -216,27 +380,6 @@
|
|||
<ul>
|
||||
<li>Set max width 400 pixel of the screenshot showing in the Grafana annotation (Grafana changed how they render the annotation long time ago) <a href="https://github.com/sitespeedio/sitespeed.io/pull/4553">#4553</a> and <a href="https://github.com/sitespeedio/sitespeed.io/commit/dbcdc72bedd0a2be5c9031675783fe3f3b73f288">the fix</a>.</li>
|
||||
</ul>
|
||||
]]></summary>
|
||||
<author>
|
||||
<name>Sitespeed.io</name>
|
||||
<uri>https://www.sitespeed.io</uri>
|
||||
</author>
|
||||
</entry>
|
||||
<entry>
|
||||
<title type="html"><![CDATA[sitespeed.io 38.4.0]]></title>
|
||||
<id>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#38.4.0</id>
|
||||
<link href="https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#38.4.0"/>
|
||||
<updated>2025-10-12T00:00:00.000Z</updated>
|
||||
<summary type="html"><![CDATA[<h3>Added</h3>
|
||||
<ul>
|
||||
<li>Upgraded to Chrome/Edge 141 <a href="https://github.com/sitespeedio/sitespeed.io/pull/4551">#4551</a>.</li>
|
||||
</ul>
|
||||
<ul>
|
||||
<li>+1 container users will get Lighthouse 13.</li>
|
||||
</ul>
|
||||
<ul>
|
||||
<li>Browsertime 25.2 with latest Chrome/Edgedrivers <a href="https://github.com/sitespeedio/sitespeed.io/pull/4552">#4552</a>.</li>
|
||||
</ul>
|
||||
]]></summary>
|
||||
<author>
|
||||
<name>Sitespeed.io</name>
|
||||
|
|
@ -258,21 +401,6 @@
|
|||
<ul>
|
||||
<li>Added simpleperf and perfetto support for Android, thank you <a href="https://github.com/animalan">Abhishek Nimalan</a> for PR <a href="https://github.com/sitespeedio/browsertime/pull/2315">#2315</a>.</li>
|
||||
</ul>
|
||||
]]></summary>
|
||||
<author>
|
||||
<name>Sitespeed.io</name>
|
||||
<uri>https://www.sitespeed.io</uri>
|
||||
</author>
|
||||
</entry>
|
||||
<entry>
|
||||
<title type="html"><![CDATA[sitespeed.io 38.3.0]]></title>
|
||||
<id>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#38.3.0</id>
|
||||
<link href="https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#38.3.0"/>
|
||||
<updated>2025-09-07T00:00:00.000Z</updated>
|
||||
<summary type="html"><![CDATA[<h3>Added</h3>
|
||||
<ul>
|
||||
<li>Upgraded to Chrome/Chromedriver 140 <a href="https://github.com/sitespeedio/sitespeed.io/pull/4549">#4549</a> and <a href="https://github.com/sitespeedio/sitespeed.io/pull/4548">#4548</a>.</li>
|
||||
</ul>
|
||||
]]></summary>
|
||||
<author>
|
||||
<name>Sitespeed.io</name>
|
||||
|
|
@ -291,51 +419,6 @@
|
|||
<ul>
|
||||
<li>Selenium webdriver 4.35.0 <a href="https://github.com/sitespeedio/browsertime/pull/2317">#2317</a>.</li>
|
||||
</ul>
|
||||
]]></summary>
|
||||
<author>
|
||||
<name>Sitespeed.io</name>
|
||||
<uri>https://www.sitespeed.io</uri>
|
||||
</author>
|
||||
</entry>
|
||||
<entry>
|
||||
<title type="html"><![CDATA[sitespeed.io 38.2.0]]></title>
|
||||
<id>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#38.2.0</id>
|
||||
<link href="https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#38.2.0"/>
|
||||
<updated>2025-08-31T00:00:00.000Z</updated>
|
||||
<summary type="html"><![CDATA[<h3>Added</h3>
|
||||
<ul>
|
||||
<li>Upgraded to Firefox 142 <a href="https://github.com/sitespeedio/sitespeed.io/pull/4545">#4545</a> and Chrome/Edge 139 in the Docker container <a href="https://github.com/sitespeedio/sitespeed.io/pull/4542">#4552</a>.</li>
|
||||
</ul>
|
||||
]]></summary>
|
||||
<author>
|
||||
<name>Sitespeed.io</name>
|
||||
<uri>https://www.sitespeed.io</uri>
|
||||
</author>
|
||||
</entry>
|
||||
<entry>
|
||||
<title type="html"><![CDATA[sitespeed.io 38.1.2]]></title>
|
||||
<id>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#38.1.2</id>
|
||||
<link href="https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#38.1.2"/>
|
||||
<updated>2025-08-04T00:00:00.000Z</updated>
|
||||
<summary type="html"><![CDATA[<h3>Fixed</h3>
|
||||
<ul>
|
||||
<li>Upgraded to coach core 8.1.3 <a href="https://github.com/sitespeedio/sitespeed.io/pull/4541">#4551</a> (there was a bug introduced in 8.1.2).</li>
|
||||
</ul>
|
||||
]]></summary>
|
||||
<author>
|
||||
<name>Sitespeed.io</name>
|
||||
<uri>https://www.sitespeed.io</uri>
|
||||
</author>
|
||||
</entry>
|
||||
<entry>
|
||||
<title type="html"><![CDATA[sitespeed.io 38.1.1]]></title>
|
||||
<id>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#38.1.1</id>
|
||||
<link href="https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#38.1.1"/>
|
||||
<updated>2025-08-01T00:00:00.000Z</updated>
|
||||
<summary type="html"><![CDATA[<h3>Fixed</h3>
|
||||
<ul>
|
||||
<li>Upgraded to coach core 8.1.2 <a href="https://github.com/sitespeedio/sitespeed.io/pull/4540">#4540</a>.</li>
|
||||
</ul>
|
||||
]]></summary>
|
||||
<author>
|
||||
<name>Sitespeed.io</name>
|
||||
|
|
@ -379,92 +462,6 @@
|
|||
<ul>
|
||||
<li>Updated Edge dependency so it uses the new Microsoft domain for downloading <a href="https://github.com/sitespeedio/browsertime/pull/2312">#2312</a>.</li>
|
||||
</ul>
|
||||
]]></summary>
|
||||
<author>
|
||||
<name>Sitespeed.io</name>
|
||||
<uri>https://www.sitespeed.io</uri>
|
||||
</author>
|
||||
</entry>
|
||||
<entry>
|
||||
<title type="html"><![CDATA[browsertime 24.9.0]]></title>
|
||||
<id>https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#24.9.0</id>
|
||||
<link href="https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#24.9.0"/>
|
||||
<updated>2025-06-30T00:00:00.000Z</updated>
|
||||
<summary type="html"><![CDATA[<h3>Added</h3>
|
||||
<ul>
|
||||
<li>Update Docker container to use Chrome/edge 138, Firefox 140. Add Edgedriver and Chromedrinver 138 <a href="https://github.com/sitespeedio/browsertime/pull/2303">#2303</a>.</li>
|
||||
</ul>
|
||||
<h3>Fixed</h3>
|
||||
<ul>
|
||||
<li>Update Selenium webdriver to 4.34.0 <a href="https://github.com/sitespeedio/browsertime/pull/2304">#2304</a>.</li>
|
||||
</ul>
|
||||
<ul>
|
||||
<li>Add extra try/catch if main document timings is missing when generating the HAR <a href="https://github.com/sitespeedio/browsertime/pull/2302">#2302</a>.</li>
|
||||
</ul>
|
||||
]]></summary>
|
||||
<author>
|
||||
<name>Sitespeed.io</name>
|
||||
<uri>https://www.sitespeed.io</uri>
|
||||
</author>
|
||||
</entry>
|
||||
<entry>
|
||||
<title type="html"><![CDATA[browsertime 24.8.2]]></title>
|
||||
<id>https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#24.8.2</id>
|
||||
<link href="https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#24.8.2"/>
|
||||
<updated>2025-06-22T00:00:00.000Z</updated>
|
||||
<summary type="html"><![CDATA[<h3>Fixed</h3>
|
||||
<ul>
|
||||
<li>Fix for serverTiming - thank you <a href="https://github.com/gmierz">Gregory Mierzwinski</a> for PR <a href="https://github.com/sitespeedio/browsertime/pull/2301">#2301</a>.</li>
|
||||
</ul>
|
||||
<ul>
|
||||
<li>Cleanup how we get the navigation timing metrics <a href="https://github.com/sitespeedio/browsertime/pull/2300">#2300</a>.</li>
|
||||
</ul>
|
||||
<ul>
|
||||
<li>Fix depercation warnings in visual metrics. Thank you <a href="https://github.com/emmanuel-ferdman">Emmanuel Ferdman</a> for PR <a href="https://github.com/sitespeedio/browsertime/pull/2297">#2297</a>.</li>
|
||||
</ul>
|
||||
]]></summary>
|
||||
<author>
|
||||
<name>Sitespeed.io</name>
|
||||
<uri>https://www.sitespeed.io</uri>
|
||||
</author>
|
||||
</entry>
|
||||
<entry>
|
||||
<title type="html"><![CDATA[browsertime 24.8.1]]></title>
|
||||
<id>https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#24.8.1</id>
|
||||
<link href="https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#24.8.1"/>
|
||||
<updated>2025-06-01T00:00:00.000Z</updated>
|
||||
<summary type="html"><![CDATA[<h3>Fixed</h3>
|
||||
<ul>
|
||||
<li>[Visual Elements] Fix split for selector to include full value with ':'` - thank you <a href="https://github.com/Amerousful">Pavel Bairov</a> for PR <a href="https://github.com/sitespeedio/browsertime/pull/2298">#2298</a>.</li>
|
||||
</ul>
|
||||
]]></summary>
|
||||
<author>
|
||||
<name>Sitespeed.io</name>
|
||||
<uri>https://www.sitespeed.io</uri>
|
||||
</author>
|
||||
</entry>
|
||||
<entry>
|
||||
<title type="html"><![CDATA[browsertime 24.8.0]]></title>
|
||||
<id>https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#24.8.0</id>
|
||||
<link href="https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#24.8.0"/>
|
||||
<updated>2025-05-30T00:00:00.000Z</updated>
|
||||
<summary type="html"><![CDATA[<h3>Added</h3>
|
||||
<ul>
|
||||
<li>Updated to Chrome/Chromedriver 137 and Firefox 139 in the Docker container <a href="https://github.com/sitespeedio/browsertime/pull/2284">#2284</a>.</li>
|
||||
</ul>
|
||||
<ul>
|
||||
<li>Updated to Edge/Edgedriver 137 in the Docker container <a href="https://github.com/sitespeedio/browsertime/pull/2289">#2289</a>.</li>
|
||||
</ul>
|
||||
<ul>
|
||||
<li>New command: <code>wait.byXpathAndVisible(...)</code> - thank you <a href="https://github.com/Amerousful">Pavel Bairov</a> for PR <a href="https://github.com/sitespeedio/browsertime/pull/2286">#2286</a>.</li>
|
||||
</ul>
|
||||
<ul>
|
||||
<li>New command: <code>wait.bySelectorAndVisible(...)</code> PR <a href="https://github.com/sitespeedio/browsertime/pull/2288">#2288</a>.</li>
|
||||
</ul>
|
||||
<h3>Fixed</h3>
|
||||
<ul>
|
||||
<li>Updated dependencies: selenium, usb-power-profiling, execa and dev dependencies <a href="https://github.com/sitespeedio/browsertime/pull/2290">#2290</a>, <a href="https://github.com/sitespeedio/browsertime/pull/2291">#2291</a>, <a href="https://github.com/sitespeedio/browsertime/pull/2294">#2294</a> and <a href="https://github.com/sitespeedio/browsertime/pull/2295">#2295</a>.</li>
|
||||
</ul>
|
||||
]]></summary>
|
||||
<author>
|
||||
<name>Sitespeed.io</name>
|
||||
|
|
@ -756,21 +753,6 @@
|
|||
<ul>
|
||||
<li>Fixed the release flow so the Docker containers get the correct tag.</li>
|
||||
</ul>
|
||||
]]></summary>
|
||||
<author>
|
||||
<name>Sitespeed.io</name>
|
||||
<uri>https://www.sitespeed.io</uri>
|
||||
</author>
|
||||
</entry>
|
||||
<entry>
|
||||
<title type="html"><![CDATA[testrunner 1.0.0]]></title>
|
||||
<id>https://github.com/sitespeedio/testrunner/blob/main/CHANGELOG.md#1.0.0</id>
|
||||
<link href="https://github.com/sitespeedio/testrunner/blob/main/CHANGELOG.md#1.0.0"/>
|
||||
<updated>2024-12-06T00:00:00.000Z</updated>
|
||||
<summary type="html"><![CDATA[<h3>Added</h3>
|
||||
<ul>
|
||||
<li>A new Docker setup <a href="https://github.com/sitespeedio/onlinetest/pull/95">#95</a></li>
|
||||
</ul>
|
||||
]]></summary>
|
||||
<author>
|
||||
<name>Sitespeed.io</name>
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
<feed xmlns="http://www.w3.org/2005/Atom">
|
||||
<id>browsertime-release-feed</id>
|
||||
<title>browsertime release feed</title>
|
||||
<updated>2025-12-11T18:07:02.769Z</updated>
|
||||
<updated>2025-12-18T08:58:23.824Z</updated>
|
||||
<generator>https://github.com/jpmonette/feed</generator>
|
||||
<author>
|
||||
<name>Peter Hedenskog</name>
|
||||
|
|
@ -16,6 +16,28 @@
|
|||
<icon>http://www.sitespeed.io/favicon.ico</icon>
|
||||
<rights>All rights reserved 2022, Peter Hedenskog and team</rights>
|
||||
<category term="Web Performance"/>
|
||||
<entry>
|
||||
<title type="html"><![CDATA[browsertime 26.2.0]]></title>
|
||||
<id>https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#26.2.0</id>
|
||||
<link href="https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#26.2.0"/>
|
||||
<updated>2025-12-18T00:00:00.000Z</updated>
|
||||
<summary type="html"><![CDATA[<h3>Added</h3>
|
||||
<ul>
|
||||
<li>Updated Chromedriver and Edgedriver to 143 <a href="https://github.com/sitespeedio/browsertime/pull/2354">#2354</a> and<a href="https://github.com/sitespeedio/browsertime/pull/2355">#2355</a>.</li>
|
||||
</ul>
|
||||
<ul>
|
||||
<li>Updated webdriver to 4.39.0 <a href="https://github.com/sitespeedio/browsertime/pull/2356">#2356</a>.</li>
|
||||
</ul>
|
||||
<h3>Fixed</h3>
|
||||
<ul>
|
||||
<li>Try to tune the XVFB handling to make it safer that xvfb is always stopped <a href="https://github.com/sitespeedio/browsertime/pull/2353">#2353</a>.</li>
|
||||
</ul>
|
||||
]]></summary>
|
||||
<author>
|
||||
<name>Sitespeed.io</name>
|
||||
<uri>https://www.sitespeed.io</uri>
|
||||
</author>
|
||||
</entry>
|
||||
<entry>
|
||||
<title type="html"><![CDATA[browsertime 26.1.0]]></title>
|
||||
<id>https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#26.1.0</id>
|
||||
|
|
@ -181,28 +203,6 @@
|
|||
<ul>
|
||||
<li>Updated Edge dependency so it uses the new Microsoft domain for downloading <a href="https://github.com/sitespeedio/browsertime/pull/2312">#2312</a>.</li>
|
||||
</ul>
|
||||
]]></summary>
|
||||
<author>
|
||||
<name>Sitespeed.io</name>
|
||||
<uri>https://www.sitespeed.io</uri>
|
||||
</author>
|
||||
</entry>
|
||||
<entry>
|
||||
<title type="html"><![CDATA[browsertime 24.9.0]]></title>
|
||||
<id>https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#24.9.0</id>
|
||||
<link href="https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#24.9.0"/>
|
||||
<updated>2025-06-30T00:00:00.000Z</updated>
|
||||
<summary type="html"><![CDATA[<h3>Added</h3>
|
||||
<ul>
|
||||
<li>Update Docker container to use Chrome/edge 138, Firefox 140. Add Edgedriver and Chromedrinver 138 <a href="https://github.com/sitespeedio/browsertime/pull/2303">#2303</a>.</li>
|
||||
</ul>
|
||||
<h3>Fixed</h3>
|
||||
<ul>
|
||||
<li>Update Selenium webdriver to 4.34.0 <a href="https://github.com/sitespeedio/browsertime/pull/2304">#2304</a>.</li>
|
||||
</ul>
|
||||
<ul>
|
||||
<li>Add extra try/catch if main document timings is missing when generating the HAR <a href="https://github.com/sitespeedio/browsertime/pull/2302">#2302</a>.</li>
|
||||
</ul>
|
||||
]]></summary>
|
||||
<author>
|
||||
<name>Sitespeed.io</name>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
<title>browsertime release feed</title>
|
||||
<link>https://www.sitespeed.io</link>
|
||||
<description>New releases and changelog feed of browsertime</description>
|
||||
<lastBuildDate>Thu, 11 Dec 2025 18:07:02 GMT</lastBuildDate>
|
||||
<lastBuildDate>Thu, 18 Dec 2025 08:58:23 GMT</lastBuildDate>
|
||||
<docs>https://validator.w3.org/feed/docs/rss2.html</docs>
|
||||
<generator>https://github.com/jpmonette/feed</generator>
|
||||
<language>en</language>
|
||||
|
|
@ -16,6 +16,25 @@
|
|||
<copyright>All rights reserved 2022, Peter Hedenskog and team</copyright>
|
||||
<category>Web Performance</category>
|
||||
<atom:link href="https://www.sitespeed.io/feed/browsertime.rss" rel="self" type="application/rss+xml"/>
|
||||
<item>
|
||||
<title><![CDATA[browsertime 26.2.0]]></title>
|
||||
<link>https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#26.2.0</link>
|
||||
<guid>https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#26.2.0</guid>
|
||||
<pubDate>Thu, 18 Dec 2025 00:00:00 GMT</pubDate>
|
||||
<description><![CDATA[<h3>Added</h3>
|
||||
<ul>
|
||||
<li>Updated Chromedriver and Edgedriver to 143 <a href="https://github.com/sitespeedio/browsertime/pull/2354">#2354</a> and<a href="https://github.com/sitespeedio/browsertime/pull/2355">#2355</a>.</li>
|
||||
</ul>
|
||||
<ul>
|
||||
<li>Updated webdriver to 4.39.0 <a href="https://github.com/sitespeedio/browsertime/pull/2356">#2356</a>.</li>
|
||||
</ul>
|
||||
<h3>Fixed</h3>
|
||||
<ul>
|
||||
<li>Try to tune the XVFB handling to make it safer that xvfb is always stopped <a href="https://github.com/sitespeedio/browsertime/pull/2353">#2353</a>.</li>
|
||||
</ul>
|
||||
]]></description>
|
||||
<enclosure url="https://www.sitespeed.io/img/logos/browsertime.png" length="0" type="image/png"/>
|
||||
</item>
|
||||
<item>
|
||||
<title><![CDATA[browsertime 26.1.0]]></title>
|
||||
<link>https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#26.1.0</link>
|
||||
|
|
@ -157,25 +176,6 @@
|
|||
<ul>
|
||||
<li>Updated Edge dependency so it uses the new Microsoft domain for downloading <a href="https://github.com/sitespeedio/browsertime/pull/2312">#2312</a>.</li>
|
||||
</ul>
|
||||
]]></description>
|
||||
<enclosure url="https://www.sitespeed.io/img/logos/browsertime.png" length="0" type="image/png"/>
|
||||
</item>
|
||||
<item>
|
||||
<title><![CDATA[browsertime 24.9.0]]></title>
|
||||
<link>https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#24.9.0</link>
|
||||
<guid>https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#24.9.0</guid>
|
||||
<pubDate>Mon, 30 Jun 2025 00:00:00 GMT</pubDate>
|
||||
<description><![CDATA[<h3>Added</h3>
|
||||
<ul>
|
||||
<li>Update Docker container to use Chrome/edge 138, Firefox 140. Add Edgedriver and Chromedrinver 138 <a href="https://github.com/sitespeedio/browsertime/pull/2303">#2303</a>.</li>
|
||||
</ul>
|
||||
<h3>Fixed</h3>
|
||||
<ul>
|
||||
<li>Update Selenium webdriver to 4.34.0 <a href="https://github.com/sitespeedio/browsertime/pull/2304">#2304</a>.</li>
|
||||
</ul>
|
||||
<ul>
|
||||
<li>Add extra try/catch if main document timings is missing when generating the HAR <a href="https://github.com/sitespeedio/browsertime/pull/2302">#2302</a>.</li>
|
||||
</ul>
|
||||
]]></description>
|
||||
<enclosure url="https://www.sitespeed.io/img/logos/browsertime.png" length="0" type="image/png"/>
|
||||
</item>
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
<feed xmlns="http://www.w3.org/2005/Atom">
|
||||
<id>chrome-har-release-feed</id>
|
||||
<title>chrome-har release feed</title>
|
||||
<updated>2025-10-22T20:47:44.399Z</updated>
|
||||
<updated>2024-12-27T07:52:02.791Z</updated>
|
||||
<generator>https://github.com/jpmonette/feed</generator>
|
||||
<author>
|
||||
<name>Peter Hedenskog</name>
|
||||
|
|
@ -15,36 +15,6 @@
|
|||
<icon>http://www.sitespeed.io/favicon.ico</icon>
|
||||
<rights>All rights reserved 2022, Peter Hedenskog and team</rights>
|
||||
<category term="Web Performance"/>
|
||||
<entry>
|
||||
<title type="html"><![CDATA[chrome-har 1.1.1]]></title>
|
||||
<id>https://github.com/sitespeedio/chrome-har/blob/main/CHANGELOG.md#1.1.1</id>
|
||||
<link href="https://github.com/sitespeedio/chrome-har/blob/main/CHANGELOG.md#1.1.1"/>
|
||||
<updated>2025-10-17T00:00:00.000Z</updated>
|
||||
<summary type="html"><![CDATA[<h3>Fixed</h3>
|
||||
<ul>
|
||||
<li>The option to clean header values was broken, this has been reverted for now.</li>
|
||||
</ul>
|
||||
]]></summary>
|
||||
<author>
|
||||
<name>Sitespeed.io</name>
|
||||
<uri>https://www.sitespeed.io</uri>
|
||||
</author>
|
||||
</entry>
|
||||
<entry>
|
||||
<title type="html"><![CDATA[chrome-har 1.1.0]]></title>
|
||||
<id>https://github.com/sitespeedio/chrome-har/blob/main/CHANGELOG.md#1.1.0</id>
|
||||
<link href="https://github.com/sitespeedio/chrome-har/blob/main/CHANGELOG.md#1.1.0"/>
|
||||
<updated>2025-10-16T00:00:00.000Z</updated>
|
||||
<summary type="html"><![CDATA[<h3>Added</h3>
|
||||
<ul>
|
||||
<li>Add option to clean header values <a href="https://github.com/sitespeedio/chrome-har/pull/141">#141</a>.</li>
|
||||
</ul>
|
||||
]]></summary>
|
||||
<author>
|
||||
<name>Sitespeed.io</name>
|
||||
<uri>https://www.sitespeed.io</uri>
|
||||
</author>
|
||||
</entry>
|
||||
<entry>
|
||||
<title type="html"><![CDATA[chrome-har 1.0.1]]></title>
|
||||
<id>https://github.com/sitespeedio/chrome-har/blob/main/CHANGELOG.md#1.0.1</id>
|
||||
|
|
@ -169,4 +139,19 @@
|
|||
<uri>https://www.sitespeed.io</uri>
|
||||
</author>
|
||||
</entry>
|
||||
<entry>
|
||||
<title type="html"><![CDATA[chrome-har 0.11.12]]></title>
|
||||
<id>https://github.com/sitespeedio/chrome-har/blob/main/CHANGELOG.md#0.11.12</id>
|
||||
<link href="https://github.com/sitespeedio/chrome-har/blob/main/CHANGELOG.md#0.11.12"/>
|
||||
<updated>2020-09-09T00:00:00.000Z</updated>
|
||||
<summary type="html"><![CDATA[<h3>Fixed</h3>
|
||||
<ul>
|
||||
<li>Removed test directory from the release, thank you <a href="https://github.com/yurynix">Yury Michurin</a> for the PR <a href="https://github.com/sitespeedio/chrome-har/pull/75">#75</a>.</li>
|
||||
</ul>
|
||||
]]></summary>
|
||||
<author>
|
||||
<name>Sitespeed.io</name>
|
||||
<uri>https://www.sitespeed.io</uri>
|
||||
</author>
|
||||
</entry>
|
||||
</feed>
|
||||
|
|
@ -4,35 +4,13 @@
|
|||
<title>chrome-har release feed</title>
|
||||
<link>https://www.sitespeed.io</link>
|
||||
<description>New releases and changelog feed of chrome-har</description>
|
||||
<lastBuildDate>Wed, 22 Oct 2025 20:47:44 GMT</lastBuildDate>
|
||||
<lastBuildDate>Fri, 27 Dec 2024 07:52:02 GMT</lastBuildDate>
|
||||
<docs>https://validator.w3.org/feed/docs/rss2.html</docs>
|
||||
<generator>https://github.com/jpmonette/feed</generator>
|
||||
<language>en</language>
|
||||
<copyright>All rights reserved 2022, Peter Hedenskog and team</copyright>
|
||||
<category>Web Performance</category>
|
||||
<atom:link href="https://www.sitespeed.io/feed/chrome-har.rss" rel="self" type="application/rss+xml"/>
|
||||
<item>
|
||||
<title><![CDATA[chrome-har 1.1.1]]></title>
|
||||
<link>https://github.com/sitespeedio/chrome-har/blob/main/CHANGELOG.md#1.1.1</link>
|
||||
<guid>https://github.com/sitespeedio/chrome-har/blob/main/CHANGELOG.md#1.1.1</guid>
|
||||
<pubDate>Fri, 17 Oct 2025 00:00:00 GMT</pubDate>
|
||||
<description><![CDATA[<h3>Fixed</h3>
|
||||
<ul>
|
||||
<li>The option to clean header values was broken, this has been reverted for now.</li>
|
||||
</ul>
|
||||
]]></description>
|
||||
</item>
|
||||
<item>
|
||||
<title><![CDATA[chrome-har 1.1.0]]></title>
|
||||
<link>https://github.com/sitespeedio/chrome-har/blob/main/CHANGELOG.md#1.1.0</link>
|
||||
<guid>https://github.com/sitespeedio/chrome-har/blob/main/CHANGELOG.md#1.1.0</guid>
|
||||
<pubDate>Thu, 16 Oct 2025 00:00:00 GMT</pubDate>
|
||||
<description><![CDATA[<h3>Added</h3>
|
||||
<ul>
|
||||
<li>Add option to clean header values <a href="https://github.com/sitespeedio/chrome-har/pull/141">#141</a>.</li>
|
||||
</ul>
|
||||
]]></description>
|
||||
</item>
|
||||
<item>
|
||||
<title><![CDATA[chrome-har 1.0.1]]></title>
|
||||
<link>https://github.com/sitespeedio/chrome-har/blob/main/CHANGELOG.md#1.0.1</link>
|
||||
|
|
@ -125,5 +103,16 @@
|
|||
<guid>https://github.com/sitespeedio/chrome-har/blob/main/CHANGELOG.md#0.12.0</guid>
|
||||
<pubDate>Thu, 29 Oct 2020 00:00:00 GMT</pubDate>
|
||||
</item>
|
||||
<item>
|
||||
<title><![CDATA[chrome-har 0.11.12]]></title>
|
||||
<link>https://github.com/sitespeedio/chrome-har/blob/main/CHANGELOG.md#0.11.12</link>
|
||||
<guid>https://github.com/sitespeedio/chrome-har/blob/main/CHANGELOG.md#0.11.12</guid>
|
||||
<pubDate>Wed, 09 Sep 2020 00:00:00 GMT</pubDate>
|
||||
<description><![CDATA[<h3>Fixed</h3>
|
||||
<ul>
|
||||
<li>Removed test directory from the release, thank you <a href="https://github.com/yurynix">Yury Michurin</a> for the PR <a href="https://github.com/sitespeedio/chrome-har/pull/75">#75</a>.</li>
|
||||
</ul>
|
||||
]]></description>
|
||||
</item>
|
||||
</channel>
|
||||
</rss>
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
<feed xmlns="http://www.w3.org/2005/Atom">
|
||||
<id>coach-core-release-feed</id>
|
||||
<title>coach-core release feed</title>
|
||||
<updated>2025-08-04T19:36:32.115Z</updated>
|
||||
<updated>2025-08-31T14:30:33.326Z</updated>
|
||||
<generator>https://github.com/jpmonette/feed</generator>
|
||||
<author>
|
||||
<name>Peter Hedenskog</name>
|
||||
|
|
@ -16,21 +16,6 @@
|
|||
<icon>http://www.sitespeed.io/favicon.ico</icon>
|
||||
<rights>All rights reserved 2022, Peter Hedenskog and team</rights>
|
||||
<category term="Web Performance"/>
|
||||
<entry>
|
||||
<title type="html"><![CDATA[coach-core 8.1.3]]></title>
|
||||
<id>https://github.com/sitespeedio/coach-core/blob/main/CHANGELOG.md#8.1.3</id>
|
||||
<link href="https://github.com/sitespeedio/coach-core/blob/main/CHANGELOG.md#8.1.3"/>
|
||||
<updated>2025-08-04T00:00:00.000Z</updated>
|
||||
<summary type="html"><![CDATA[<h3>Fixed</h3>
|
||||
<ul>
|
||||
<li>Reverted svg images in avoidScalingImages check released in 8.1.2 since it was causing errors. Lets work on a fir for it later and revert it for now <a href="https://github.com/sitespeedio/coach-core/pull/135">#135</a>.</li>
|
||||
</ul>
|
||||
]]></summary>
|
||||
<author>
|
||||
<name>Sitespeed.io</name>
|
||||
<uri>https://www.sitespeed.io</uri>
|
||||
</author>
|
||||
</entry>
|
||||
<entry>
|
||||
<title type="html"><![CDATA[coach-core 8.1.2]]></title>
|
||||
<id>https://github.com/sitespeedio/coach-core/blob/main/CHANGELOG.md#8.1.2</id>
|
||||
|
|
@ -197,6 +182,21 @@
|
|||
<ul>
|
||||
<li>Fixed exporting to work with ESM modules too.</li>
|
||||
</ul>
|
||||
]]></summary>
|
||||
<author>
|
||||
<name>Sitespeed.io</name>
|
||||
<uri>https://www.sitespeed.io</uri>
|
||||
</author>
|
||||
</entry>
|
||||
<entry>
|
||||
<title type="html"><![CDATA[coach-core 7.1.2]]></title>
|
||||
<id>https://github.com/sitespeedio/coach-core/blob/main/CHANGELOG.md#7.1.2</id>
|
||||
<link href="https://github.com/sitespeedio/coach-core/blob/main/CHANGELOG.md#7.1.2"/>
|
||||
<updated>2022-05-05T00:00:00.000Z</updated>
|
||||
<summary type="html"><![CDATA[<h3>Fixed</h3>
|
||||
<ul>
|
||||
<li>Upgraded to PageXray 4.4.2 and Third Party Web 0.17.1.</li>
|
||||
</ul>
|
||||
]]></summary>
|
||||
<author>
|
||||
<name>Sitespeed.io</name>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
<title>coach-core release feed</title>
|
||||
<link>https://www.sitespeed.io</link>
|
||||
<description>New releases and changelog feed of coach-core</description>
|
||||
<lastBuildDate>Mon, 04 Aug 2025 19:36:32 GMT</lastBuildDate>
|
||||
<lastBuildDate>Sun, 31 Aug 2025 14:30:33 GMT</lastBuildDate>
|
||||
<docs>https://validator.w3.org/feed/docs/rss2.html</docs>
|
||||
<generator>https://github.com/jpmonette/feed</generator>
|
||||
<language>en</language>
|
||||
|
|
@ -16,18 +16,6 @@
|
|||
<copyright>All rights reserved 2022, Peter Hedenskog and team</copyright>
|
||||
<category>Web Performance</category>
|
||||
<atom:link href="https://www.sitespeed.io/feed/coach-core.rss" rel="self" type="application/rss+xml"/>
|
||||
<item>
|
||||
<title><![CDATA[coach-core 8.1.3]]></title>
|
||||
<link>https://github.com/sitespeedio/coach-core/blob/main/CHANGELOG.md#8.1.3</link>
|
||||
<guid>https://github.com/sitespeedio/coach-core/blob/main/CHANGELOG.md#8.1.3</guid>
|
||||
<pubDate>Mon, 04 Aug 2025 00:00:00 GMT</pubDate>
|
||||
<description><![CDATA[<h3>Fixed</h3>
|
||||
<ul>
|
||||
<li>Reverted svg images in avoidScalingImages check released in 8.1.2 since it was causing errors. Lets work on a fir for it later and revert it for now <a href="https://github.com/sitespeedio/coach-core/pull/135">#135</a>.</li>
|
||||
</ul>
|
||||
]]></description>
|
||||
<enclosure url="https://www.sitespeed.io/img/logos/coach.png" length="0" type="image/png"/>
|
||||
</item>
|
||||
<item>
|
||||
<title><![CDATA[coach-core 8.1.2]]></title>
|
||||
<link>https://github.com/sitespeedio/coach-core/blob/main/CHANGELOG.md#8.1.2</link>
|
||||
|
|
@ -170,6 +158,18 @@
|
|||
<ul>
|
||||
<li>Fixed exporting to work with ESM modules too.</li>
|
||||
</ul>
|
||||
]]></description>
|
||||
<enclosure url="https://www.sitespeed.io/img/logos/coach.png" length="0" type="image/png"/>
|
||||
</item>
|
||||
<item>
|
||||
<title><![CDATA[coach-core 7.1.2]]></title>
|
||||
<link>https://github.com/sitespeedio/coach-core/blob/main/CHANGELOG.md#7.1.2</link>
|
||||
<guid>https://github.com/sitespeedio/coach-core/blob/main/CHANGELOG.md#7.1.2</guid>
|
||||
<pubDate>Thu, 05 May 2022 00:00:00 GMT</pubDate>
|
||||
<description><![CDATA[<h3>Fixed</h3>
|
||||
<ul>
|
||||
<li>Upgraded to PageXray 4.4.2 and Third Party Web 0.17.1.</li>
|
||||
</ul>
|
||||
]]></description>
|
||||
<enclosure url="https://www.sitespeed.io/img/logos/coach.png" length="0" type="image/png"/>
|
||||
</item>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
<title>sitespeed.io release feed</title>
|
||||
<link>https://www.sitespeed.io</link>
|
||||
<description>New releases and changelog feed of sitespeed.io</description>
|
||||
<lastBuildDate>Sun, 02 Nov 2025 00:00:00 GMT</lastBuildDate>
|
||||
<lastBuildDate>Thu, 18 Dec 2025 00:00:00 GMT</lastBuildDate>
|
||||
<docs>https://validator.w3.org/feed/docs/rss2.html</docs>
|
||||
<generator>https://github.com/jpmonette/feed</generator>
|
||||
<language>en</language>
|
||||
|
|
@ -15,6 +15,128 @@
|
|||
</image>
|
||||
<copyright>All rights reserved 2022, Peter Hedenskog and team</copyright>
|
||||
<atom:link href="https://www.sitespeed.io/feed/rss.xml" rel="self" type="application/rss+xml"/>
|
||||
<item>
|
||||
<title><![CDATA[sitespeed.io 39.2.0]]></title>
|
||||
<link>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#39.2.0</link>
|
||||
<guid>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#39.2.0</guid>
|
||||
<pubDate>Thu, 18 Dec 2025 00:00:00 GMT</pubDate>
|
||||
<description><![CDATA[<h3>Added</h3>
|
||||
<ul>
|
||||
<li>Updated to Browsertime 26.2 with latest Chromedriver and Edgedriver and a small XVFB fix <a href="https://github.com/sitespeedio/sitespeed.io/pull/4575">#4575</a>.</li>
|
||||
</ul>
|
||||
]]></description>
|
||||
<enclosure url="https://www.sitespeed.io/img/logos/sitespeed.io.png" length="0" type="image/png"/>
|
||||
</item>
|
||||
<item>
|
||||
<title><![CDATA[browsertime 26.2.0]]></title>
|
||||
<link>https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#26.2.0</link>
|
||||
<guid>https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#26.2.0</guid>
|
||||
<pubDate>Thu, 18 Dec 2025 00:00:00 GMT</pubDate>
|
||||
<description><![CDATA[<h3>Added</h3>
|
||||
<ul>
|
||||
<li>Updated Chromedriver and Edgedriver to 143 <a href="https://github.com/sitespeedio/browsertime/pull/2354">#2354</a> and<a href="https://github.com/sitespeedio/browsertime/pull/2355">#2355</a>.</li>
|
||||
</ul>
|
||||
<ul>
|
||||
<li>Updated webdriver to 4.39.0 <a href="https://github.com/sitespeedio/browsertime/pull/2356">#2356</a>.</li>
|
||||
</ul>
|
||||
<h3>Fixed</h3>
|
||||
<ul>
|
||||
<li>Try to tune the XVFB handling to make it safer that xvfb is always stopped <a href="https://github.com/sitespeedio/browsertime/pull/2353">#2353</a>.</li>
|
||||
</ul>
|
||||
]]></description>
|
||||
<enclosure url="https://www.sitespeed.io/img/logos/browsertime.png" length="0" type="image/png"/>
|
||||
</item>
|
||||
<item>
|
||||
<title><![CDATA[sitespeed.io 39.1.2]]></title>
|
||||
<link>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#39.1.2</link>
|
||||
<guid>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#39.1.2</guid>
|
||||
<pubDate>Wed, 17 Dec 2025 00:00:00 GMT</pubDate>
|
||||
<description><![CDATA[<h3>Fixed</h3>
|
||||
<ul>
|
||||
<li>Fix a bug introduced in 39.0.0 where alias was missing when creating some file structure <a href="https://github.com/sitespeedio/sitespeed.io/pull/4574">#4574</a>.</li>
|
||||
</ul>
|
||||
]]></description>
|
||||
<enclosure url="https://www.sitespeed.io/img/logos/sitespeed.io.png" length="0" type="image/png"/>
|
||||
</item>
|
||||
<item>
|
||||
<title><![CDATA[sitespeed.io 39.1.1]]></title>
|
||||
<link>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#39.1.1</link>
|
||||
<guid>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#39.1.1</guid>
|
||||
<pubDate>Tue, 16 Dec 2025 00:00:00 GMT</pubDate>
|
||||
<description><![CDATA[<h3>Fixed</h3>
|
||||
<ul>
|
||||
<li>Safer handling for broken URLs. This logs the actual root cause <a href="https://github.com/sitespeedio/sitespeed.io/pull/4573">#4573</a>.</li>
|
||||
</ul>
|
||||
]]></description>
|
||||
<enclosure url="https://www.sitespeed.io/img/logos/sitespeed.io.png" length="0" type="image/png"/>
|
||||
</item>
|
||||
<item>
|
||||
<title><![CDATA[sitespeed.io 39.1.0]]></title>
|
||||
<link>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#39.1.0</link>
|
||||
<guid>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#39.1.0</guid>
|
||||
<pubDate>Mon, 15 Dec 2025 00:00:00 GMT</pubDate>
|
||||
<description><![CDATA[<h3>Added</h3>
|
||||
<ul>
|
||||
<li>Upgrade the Docker container: Chrome and Edge 143, Firefox 146 <a href="https://github.com/sitespeedio/sitespeed.io/pull/4572">#4572</a>.</li>
|
||||
</ul>
|
||||
]]></description>
|
||||
<enclosure url="https://www.sitespeed.io/img/logos/sitespeed.io.png" length="0" type="image/png"/>
|
||||
</item>
|
||||
<item>
|
||||
<title><![CDATA[sitespeed.io 39.0.0]]></title>
|
||||
<link>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#39.0.0</link>
|
||||
<guid>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#39.0.0</guid>
|
||||
<pubDate>Mon, 15 Dec 2025 00:00:00 GMT</pubDate>
|
||||
<description><![CDATA[<h3>Added</h3>
|
||||
<ul>
|
||||
<li>Upgrade to support NodeJS 24 without warnings, include NodeJS 24 in the Docker container, and base the Docker container on Ubuntu 24.04. To make this work I needed to upgrade the Jimp library and then we lost the settings for png screenshots <code>--browsertime.screenshotParams.png.compressionLevel</code> <a href="https://github.com/sitespeedio/sitespeed.io/pull/4570">#4570</a>.</li>
|
||||
</ul>
|
||||
]]></description>
|
||||
<enclosure url="https://www.sitespeed.io/img/logos/sitespeed.io.png" length="0" type="image/png"/>
|
||||
</item>
|
||||
<item>
|
||||
<title><![CDATA[browsertime 26.1.0]]></title>
|
||||
<link>https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#26.1.0</link>
|
||||
<guid>https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#26.1.0</guid>
|
||||
<pubDate>Thu, 11 Dec 2025 00:00:00 GMT</pubDate>
|
||||
<description><![CDATA[<h3>Added</h3>
|
||||
<ul>
|
||||
<li>Firefox 146 in the Docker container <a href="https://github.com/sitespeedio/browsertime/pull/2351">#2351</a>.</li>
|
||||
</ul>
|
||||
<ul>
|
||||
<li>Chrome 143 in the Docker container <a href="https://github.com/sitespeedio/browsertime/pull/2350">#2350</a>.</li>
|
||||
</ul>
|
||||
<h3>Fixed</h3>
|
||||
<ul>
|
||||
<li>Make sure the user in the Docker container has the correct user rights <a href="https://github.com/sitespeedio/browsertime/pull/2349">#2349</a>.</li>
|
||||
</ul>
|
||||
]]></description>
|
||||
<enclosure url="https://www.sitespeed.io/img/logos/browsertime.png" length="0" type="image/png"/>
|
||||
</item>
|
||||
<item>
|
||||
<title><![CDATA[browsertime 26.0.1]]></title>
|
||||
<link>https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#26.0.1</link>
|
||||
<guid>https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#26.0.1</guid>
|
||||
<pubDate>Wed, 10 Dec 2025 00:00:00 GMT</pubDate>
|
||||
<description><![CDATA[<h3>Fixed</h3>
|
||||
<ul>
|
||||
<li>Remove extra console.log entry :)</li>
|
||||
</ul>
|
||||
]]></description>
|
||||
<enclosure url="https://www.sitespeed.io/img/logos/browsertime.png" length="0" type="image/png"/>
|
||||
</item>
|
||||
<item>
|
||||
<title><![CDATA[browsertime 26.0.0]]></title>
|
||||
<link>https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#26.0.0</link>
|
||||
<guid>https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#26.0.0</guid>
|
||||
<pubDate>Wed, 10 Dec 2025 00:00:00 GMT</pubDate>
|
||||
<description><![CDATA[<h3>Added</h3>
|
||||
<ul>
|
||||
<li>Upgrade to support NodeJS 24 without warnings, include NodeJS 24 in the Docker container, and base the Docker container on Ubuntu 24.04. To make this work I needed to upgrade the Jimp library and then we lost the settings for png screenshots <code>--screenshotParams.png.compressionLevel</code> <a href="https://github.com/sitespeedio/browsertime/pull/2342">#2342</a>.</li>
|
||||
</ul>
|
||||
]]></description>
|
||||
<enclosure url="https://www.sitespeed.io/img/logos/browsertime.png" length="0" type="image/png"/>
|
||||
</item>
|
||||
<item>
|
||||
<title><![CDATA[sitespeed.io 38.6.0]]></title>
|
||||
<link>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#38.6.0</link>
|
||||
|
|
@ -42,6 +164,17 @@
|
|||
]]></description>
|
||||
<enclosure url="https://www.sitespeed.io/img/logos/browsertime.png" length="0" type="image/png"/>
|
||||
</item>
|
||||
<item>
|
||||
<title><![CDATA[testrunner 1.2.1]]></title>
|
||||
<link>https://github.com/sitespeedio/testrunner/blob/main/CHANGELOG.md#1.2.1</link>
|
||||
<guid>https://github.com/sitespeedio/testrunner/blob/main/CHANGELOG.md#1.2.1</guid>
|
||||
<pubDate>Fri, 31 Oct 2025 00:00:00 GMT</pubDate>
|
||||
<description><![CDATA[<h3>Fixed</h3>
|
||||
<ul>
|
||||
<li>Tests running in the Docker container has the wrong path to the scripting file <a href="https://github.com/sitespeedio/onlinetest/pull/167">#167</a>.</li>
|
||||
</ul>
|
||||
]]></description>
|
||||
</item>
|
||||
<item>
|
||||
<title><![CDATA[sitespeed.io 38.5.2]]></title>
|
||||
<link>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#38.5.2</link>
|
||||
|
|
@ -183,24 +316,6 @@
|
|||
<ul>
|
||||
<li>Set max width 400 pixel of the screenshot showing in the Grafana annotation (Grafana changed how they render the annotation long time ago) <a href="https://github.com/sitespeedio/sitespeed.io/pull/4553">#4553</a> and <a href="https://github.com/sitespeedio/sitespeed.io/commit/dbcdc72bedd0a2be5c9031675783fe3f3b73f288">the fix</a>.</li>
|
||||
</ul>
|
||||
]]></description>
|
||||
<enclosure url="https://www.sitespeed.io/img/logos/sitespeed.io.png" length="0" type="image/png"/>
|
||||
</item>
|
||||
<item>
|
||||
<title><![CDATA[sitespeed.io 38.4.0]]></title>
|
||||
<link>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#38.4.0</link>
|
||||
<guid>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#38.4.0</guid>
|
||||
<pubDate>Sun, 12 Oct 2025 00:00:00 GMT</pubDate>
|
||||
<description><![CDATA[<h3>Added</h3>
|
||||
<ul>
|
||||
<li>Upgraded to Chrome/Edge 141 <a href="https://github.com/sitespeedio/sitespeed.io/pull/4551">#4551</a>.</li>
|
||||
</ul>
|
||||
<ul>
|
||||
<li>+1 container users will get Lighthouse 13.</li>
|
||||
</ul>
|
||||
<ul>
|
||||
<li>Browsertime 25.2 with latest Chrome/Edgedrivers <a href="https://github.com/sitespeedio/sitespeed.io/pull/4552">#4552</a>.</li>
|
||||
</ul>
|
||||
]]></description>
|
||||
<enclosure url="https://www.sitespeed.io/img/logos/sitespeed.io.png" length="0" type="image/png"/>
|
||||
</item>
|
||||
|
|
@ -222,18 +337,6 @@
|
|||
]]></description>
|
||||
<enclosure url="https://www.sitespeed.io/img/logos/browsertime.png" length="0" type="image/png"/>
|
||||
</item>
|
||||
<item>
|
||||
<title><![CDATA[sitespeed.io 38.3.0]]></title>
|
||||
<link>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#38.3.0</link>
|
||||
<guid>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#38.3.0</guid>
|
||||
<pubDate>Sun, 07 Sep 2025 00:00:00 GMT</pubDate>
|
||||
<description><![CDATA[<h3>Added</h3>
|
||||
<ul>
|
||||
<li>Upgraded to Chrome/Chromedriver 140 <a href="https://github.com/sitespeedio/sitespeed.io/pull/4549">#4549</a> and <a href="https://github.com/sitespeedio/sitespeed.io/pull/4548">#4548</a>.</li>
|
||||
</ul>
|
||||
]]></description>
|
||||
<enclosure url="https://www.sitespeed.io/img/logos/sitespeed.io.png" length="0" type="image/png"/>
|
||||
</item>
|
||||
<item>
|
||||
<title><![CDATA[browsertime 25.1.0]]></title>
|
||||
<link>https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#25.1.0</link>
|
||||
|
|
@ -249,42 +352,6 @@
|
|||
]]></description>
|
||||
<enclosure url="https://www.sitespeed.io/img/logos/browsertime.png" length="0" type="image/png"/>
|
||||
</item>
|
||||
<item>
|
||||
<title><![CDATA[sitespeed.io 38.2.0]]></title>
|
||||
<link>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#38.2.0</link>
|
||||
<guid>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#38.2.0</guid>
|
||||
<pubDate>Sun, 31 Aug 2025 00:00:00 GMT</pubDate>
|
||||
<description><![CDATA[<h3>Added</h3>
|
||||
<ul>
|
||||
<li>Upgraded to Firefox 142 <a href="https://github.com/sitespeedio/sitespeed.io/pull/4545">#4545</a> and Chrome/Edge 139 in the Docker container <a href="https://github.com/sitespeedio/sitespeed.io/pull/4542">#4552</a>.</li>
|
||||
</ul>
|
||||
]]></description>
|
||||
<enclosure url="https://www.sitespeed.io/img/logos/sitespeed.io.png" length="0" type="image/png"/>
|
||||
</item>
|
||||
<item>
|
||||
<title><![CDATA[sitespeed.io 38.1.2]]></title>
|
||||
<link>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#38.1.2</link>
|
||||
<guid>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#38.1.2</guid>
|
||||
<pubDate>Mon, 04 Aug 2025 00:00:00 GMT</pubDate>
|
||||
<description><![CDATA[<h3>Fixed</h3>
|
||||
<ul>
|
||||
<li>Upgraded to coach core 8.1.3 <a href="https://github.com/sitespeedio/sitespeed.io/pull/4541">#4551</a> (there was a bug introduced in 8.1.2).</li>
|
||||
</ul>
|
||||
]]></description>
|
||||
<enclosure url="https://www.sitespeed.io/img/logos/sitespeed.io.png" length="0" type="image/png"/>
|
||||
</item>
|
||||
<item>
|
||||
<title><![CDATA[sitespeed.io 38.1.1]]></title>
|
||||
<link>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#38.1.1</link>
|
||||
<guid>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#38.1.1</guid>
|
||||
<pubDate>Fri, 01 Aug 2025 00:00:00 GMT</pubDate>
|
||||
<description><![CDATA[<h3>Fixed</h3>
|
||||
<ul>
|
||||
<li>Upgraded to coach core 8.1.2 <a href="https://github.com/sitespeedio/sitespeed.io/pull/4540">#4540</a>.</li>
|
||||
</ul>
|
||||
]]></description>
|
||||
<enclosure url="https://www.sitespeed.io/img/logos/sitespeed.io.png" length="0" type="image/png"/>
|
||||
</item>
|
||||
<item>
|
||||
<title><![CDATA[coach-core 8.1.2]]></title>
|
||||
<link>https://github.com/sitespeedio/coach-core/blob/main/CHANGELOG.md#8.1.2</link>
|
||||
|
|
@ -319,80 +386,6 @@
|
|||
<ul>
|
||||
<li>Updated Edge dependency so it uses the new Microsoft domain for downloading <a href="https://github.com/sitespeedio/browsertime/pull/2312">#2312</a>.</li>
|
||||
</ul>
|
||||
]]></description>
|
||||
<enclosure url="https://www.sitespeed.io/img/logos/browsertime.png" length="0" type="image/png"/>
|
||||
</item>
|
||||
<item>
|
||||
<title><![CDATA[browsertime 24.9.0]]></title>
|
||||
<link>https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#24.9.0</link>
|
||||
<guid>https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#24.9.0</guid>
|
||||
<pubDate>Mon, 30 Jun 2025 00:00:00 GMT</pubDate>
|
||||
<description><![CDATA[<h3>Added</h3>
|
||||
<ul>
|
||||
<li>Update Docker container to use Chrome/edge 138, Firefox 140. Add Edgedriver and Chromedrinver 138 <a href="https://github.com/sitespeedio/browsertime/pull/2303">#2303</a>.</li>
|
||||
</ul>
|
||||
<h3>Fixed</h3>
|
||||
<ul>
|
||||
<li>Update Selenium webdriver to 4.34.0 <a href="https://github.com/sitespeedio/browsertime/pull/2304">#2304</a>.</li>
|
||||
</ul>
|
||||
<ul>
|
||||
<li>Add extra try/catch if main document timings is missing when generating the HAR <a href="https://github.com/sitespeedio/browsertime/pull/2302">#2302</a>.</li>
|
||||
</ul>
|
||||
]]></description>
|
||||
<enclosure url="https://www.sitespeed.io/img/logos/browsertime.png" length="0" type="image/png"/>
|
||||
</item>
|
||||
<item>
|
||||
<title><![CDATA[browsertime 24.8.2]]></title>
|
||||
<link>https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#24.8.2</link>
|
||||
<guid>https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#24.8.2</guid>
|
||||
<pubDate>Sun, 22 Jun 2025 00:00:00 GMT</pubDate>
|
||||
<description><![CDATA[<h3>Fixed</h3>
|
||||
<ul>
|
||||
<li>Fix for serverTiming - thank you <a href="https://github.com/gmierz">Gregory Mierzwinski</a> for PR <a href="https://github.com/sitespeedio/browsertime/pull/2301">#2301</a>.</li>
|
||||
</ul>
|
||||
<ul>
|
||||
<li>Cleanup how we get the navigation timing metrics <a href="https://github.com/sitespeedio/browsertime/pull/2300">#2300</a>.</li>
|
||||
</ul>
|
||||
<ul>
|
||||
<li>Fix depercation warnings in visual metrics. Thank you <a href="https://github.com/emmanuel-ferdman">Emmanuel Ferdman</a> for PR <a href="https://github.com/sitespeedio/browsertime/pull/2297">#2297</a>.</li>
|
||||
</ul>
|
||||
]]></description>
|
||||
<enclosure url="https://www.sitespeed.io/img/logos/browsertime.png" length="0" type="image/png"/>
|
||||
</item>
|
||||
<item>
|
||||
<title><![CDATA[browsertime 24.8.1]]></title>
|
||||
<link>https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#24.8.1</link>
|
||||
<guid>https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#24.8.1</guid>
|
||||
<pubDate>Sun, 01 Jun 2025 00:00:00 GMT</pubDate>
|
||||
<description><![CDATA[<h3>Fixed</h3>
|
||||
<ul>
|
||||
<li>[Visual Elements] Fix split for selector to include full value with ':'` - thank you <a href="https://github.com/Amerousful">Pavel Bairov</a> for PR <a href="https://github.com/sitespeedio/browsertime/pull/2298">#2298</a>.</li>
|
||||
</ul>
|
||||
]]></description>
|
||||
<enclosure url="https://www.sitespeed.io/img/logos/browsertime.png" length="0" type="image/png"/>
|
||||
</item>
|
||||
<item>
|
||||
<title><![CDATA[browsertime 24.8.0]]></title>
|
||||
<link>https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#24.8.0</link>
|
||||
<guid>https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#24.8.0</guid>
|
||||
<pubDate>Fri, 30 May 2025 00:00:00 GMT</pubDate>
|
||||
<description><![CDATA[<h3>Added</h3>
|
||||
<ul>
|
||||
<li>Updated to Chrome/Chromedriver 137 and Firefox 139 in the Docker container <a href="https://github.com/sitespeedio/browsertime/pull/2284">#2284</a>.</li>
|
||||
</ul>
|
||||
<ul>
|
||||
<li>Updated to Edge/Edgedriver 137 in the Docker container <a href="https://github.com/sitespeedio/browsertime/pull/2289">#2289</a>.</li>
|
||||
</ul>
|
||||
<ul>
|
||||
<li>New command: <code>wait.byXpathAndVisible(...)</code> - thank you <a href="https://github.com/Amerousful">Pavel Bairov</a> for PR <a href="https://github.com/sitespeedio/browsertime/pull/2286">#2286</a>.</li>
|
||||
</ul>
|
||||
<ul>
|
||||
<li>New command: <code>wait.bySelectorAndVisible(...)</code> PR <a href="https://github.com/sitespeedio/browsertime/pull/2288">#2288</a>.</li>
|
||||
</ul>
|
||||
<h3>Fixed</h3>
|
||||
<ul>
|
||||
<li>Updated dependencies: selenium, usb-power-profiling, execa and dev dependencies <a href="https://github.com/sitespeedio/browsertime/pull/2290">#2290</a>, <a href="https://github.com/sitespeedio/browsertime/pull/2291">#2291</a>, <a href="https://github.com/sitespeedio/browsertime/pull/2294">#2294</a> and <a href="https://github.com/sitespeedio/browsertime/pull/2295">#2295</a>.</li>
|
||||
</ul>
|
||||
]]></description>
|
||||
<enclosure url="https://www.sitespeed.io/img/logos/browsertime.png" length="0" type="image/png"/>
|
||||
</item>
|
||||
|
|
@ -615,17 +608,6 @@
|
|||
<ul>
|
||||
<li>Fixed the release flow so the Docker containers get the correct tag.</li>
|
||||
</ul>
|
||||
]]></description>
|
||||
</item>
|
||||
<item>
|
||||
<title><![CDATA[testrunner 1.0.0]]></title>
|
||||
<link>https://github.com/sitespeedio/testrunner/blob/main/CHANGELOG.md#1.0.0</link>
|
||||
<guid>https://github.com/sitespeedio/testrunner/blob/main/CHANGELOG.md#1.0.0</guid>
|
||||
<pubDate>Fri, 06 Dec 2024 00:00:00 GMT</pubDate>
|
||||
<description><![CDATA[<h3>Added</h3>
|
||||
<ul>
|
||||
<li>A new Docker setup <a href="https://github.com/sitespeedio/onlinetest/pull/95">#95</a></li>
|
||||
</ul>
|
||||
]]></description>
|
||||
</item>
|
||||
<item>
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
<feed xmlns="http://www.w3.org/2005/Atom">
|
||||
<id>server-release-feed</id>
|
||||
<title>server release feed</title>
|
||||
<updated>2025-10-25T17:02:07.343Z</updated>
|
||||
<updated>2025-10-22T22:03:43.179Z</updated>
|
||||
<generator>https://github.com/jpmonette/feed</generator>
|
||||
<author>
|
||||
<name>Peter Hedenskog</name>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
<title>server release feed</title>
|
||||
<link>https://www.sitespeed.io</link>
|
||||
<description>New releases and changelog feed of server</description>
|
||||
<lastBuildDate>Sat, 25 Oct 2025 17:02:07 GMT</lastBuildDate>
|
||||
<lastBuildDate>Wed, 22 Oct 2025 22:03:43 GMT</lastBuildDate>
|
||||
<docs>https://validator.w3.org/feed/docs/rss2.html</docs>
|
||||
<generator>https://github.com/jpmonette/feed</generator>
|
||||
<language>en</language>
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
<feed xmlns="http://www.w3.org/2005/Atom">
|
||||
<id>sitespeed.io-release-feed</id>
|
||||
<title>sitespeed.io release feed</title>
|
||||
<updated>2025-12-15T04:36:00.438Z</updated>
|
||||
<updated>2025-12-18T09:22:06.219Z</updated>
|
||||
<generator>https://github.com/jpmonette/feed</generator>
|
||||
<author>
|
||||
<name>Peter Hedenskog</name>
|
||||
|
|
@ -16,6 +16,66 @@
|
|||
<icon>http://www.sitespeed.io/favicon.ico</icon>
|
||||
<rights>All rights reserved 2022, Peter Hedenskog and team</rights>
|
||||
<category term="Web Performance"/>
|
||||
<entry>
|
||||
<title type="html"><![CDATA[sitespeed.io 39.2.0]]></title>
|
||||
<id>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#39.2.0</id>
|
||||
<link href="https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#39.2.0"/>
|
||||
<updated>2025-12-18T00:00:00.000Z</updated>
|
||||
<summary type="html"><![CDATA[<h3>Added</h3>
|
||||
<ul>
|
||||
<li>Updated to Browsertime 26.2 with latest Chromedriver and Edgedriver and a small XVFB fix <a href="https://github.com/sitespeedio/sitespeed.io/pull/4575">#4575</a>.</li>
|
||||
</ul>
|
||||
]]></summary>
|
||||
<author>
|
||||
<name>Sitespeed.io</name>
|
||||
<uri>https://www.sitespeed.io</uri>
|
||||
</author>
|
||||
</entry>
|
||||
<entry>
|
||||
<title type="html"><![CDATA[sitespeed.io 39.1.2]]></title>
|
||||
<id>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#39.1.2</id>
|
||||
<link href="https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#39.1.2"/>
|
||||
<updated>2025-12-17T00:00:00.000Z</updated>
|
||||
<summary type="html"><![CDATA[<h3>Fixed</h3>
|
||||
<ul>
|
||||
<li>Fix a bug introduced in 39.0.0 where alias was missing when creating some file structure <a href="https://github.com/sitespeedio/sitespeed.io/pull/4574">#4574</a>.</li>
|
||||
</ul>
|
||||
]]></summary>
|
||||
<author>
|
||||
<name>Sitespeed.io</name>
|
||||
<uri>https://www.sitespeed.io</uri>
|
||||
</author>
|
||||
</entry>
|
||||
<entry>
|
||||
<title type="html"><![CDATA[sitespeed.io 39.1.1]]></title>
|
||||
<id>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#39.1.1</id>
|
||||
<link href="https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#39.1.1"/>
|
||||
<updated>2025-12-16T00:00:00.000Z</updated>
|
||||
<summary type="html"><![CDATA[<h3>Fixed</h3>
|
||||
<ul>
|
||||
<li>Safer handling for broken URLs. This logs the actual root cause <a href="https://github.com/sitespeedio/sitespeed.io/pull/4573">#4573</a>.</li>
|
||||
</ul>
|
||||
]]></summary>
|
||||
<author>
|
||||
<name>Sitespeed.io</name>
|
||||
<uri>https://www.sitespeed.io</uri>
|
||||
</author>
|
||||
</entry>
|
||||
<entry>
|
||||
<title type="html"><![CDATA[sitespeed.io 39.1.0]]></title>
|
||||
<id>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#39.1.0</id>
|
||||
<link href="https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#39.1.0"/>
|
||||
<updated>2025-12-15T00:00:00.000Z</updated>
|
||||
<summary type="html"><![CDATA[<h3>Added</h3>
|
||||
<ul>
|
||||
<li>Upgrade the Docker container: Chrome and Edge 143, Firefox 146 <a href="https://github.com/sitespeedio/sitespeed.io/pull/4572">#4572</a>.</li>
|
||||
</ul>
|
||||
]]></summary>
|
||||
<author>
|
||||
<name>Sitespeed.io</name>
|
||||
<uri>https://www.sitespeed.io</uri>
|
||||
</author>
|
||||
</entry>
|
||||
<entry>
|
||||
<title type="html"><![CDATA[sitespeed.io 39.0.0]]></title>
|
||||
<id>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#39.0.0</id>
|
||||
|
|
@ -119,72 +179,6 @@
|
|||
<ul>
|
||||
<li>Set max width 400 pixel of the screenshot showing in the Grafana annotation (Grafana changed how they render the annotation long time ago) <a href="https://github.com/sitespeedio/sitespeed.io/pull/4553">#4553</a> and <a href="https://github.com/sitespeedio/sitespeed.io/commit/dbcdc72bedd0a2be5c9031675783fe3f3b73f288">the fix</a>.</li>
|
||||
</ul>
|
||||
]]></summary>
|
||||
<author>
|
||||
<name>Sitespeed.io</name>
|
||||
<uri>https://www.sitespeed.io</uri>
|
||||
</author>
|
||||
</entry>
|
||||
<entry>
|
||||
<title type="html"><![CDATA[sitespeed.io 38.4.0]]></title>
|
||||
<id>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#38.4.0</id>
|
||||
<link href="https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#38.4.0"/>
|
||||
<updated>2025-10-12T00:00:00.000Z</updated>
|
||||
<summary type="html"><![CDATA[<h3>Added</h3>
|
||||
<ul>
|
||||
<li>Upgraded to Chrome/Edge 141 <a href="https://github.com/sitespeedio/sitespeed.io/pull/4551">#4551</a>.</li>
|
||||
</ul>
|
||||
<ul>
|
||||
<li>+1 container users will get Lighthouse 13.</li>
|
||||
</ul>
|
||||
<ul>
|
||||
<li>Browsertime 25.2 with latest Chrome/Edgedrivers <a href="https://github.com/sitespeedio/sitespeed.io/pull/4552">#4552</a>.</li>
|
||||
</ul>
|
||||
]]></summary>
|
||||
<author>
|
||||
<name>Sitespeed.io</name>
|
||||
<uri>https://www.sitespeed.io</uri>
|
||||
</author>
|
||||
</entry>
|
||||
<entry>
|
||||
<title type="html"><![CDATA[sitespeed.io 38.3.0]]></title>
|
||||
<id>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#38.3.0</id>
|
||||
<link href="https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#38.3.0"/>
|
||||
<updated>2025-09-07T00:00:00.000Z</updated>
|
||||
<summary type="html"><![CDATA[<h3>Added</h3>
|
||||
<ul>
|
||||
<li>Upgraded to Chrome/Chromedriver 140 <a href="https://github.com/sitespeedio/sitespeed.io/pull/4549">#4549</a> and <a href="https://github.com/sitespeedio/sitespeed.io/pull/4548">#4548</a>.</li>
|
||||
</ul>
|
||||
]]></summary>
|
||||
<author>
|
||||
<name>Sitespeed.io</name>
|
||||
<uri>https://www.sitespeed.io</uri>
|
||||
</author>
|
||||
</entry>
|
||||
<entry>
|
||||
<title type="html"><![CDATA[sitespeed.io 38.2.0]]></title>
|
||||
<id>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#38.2.0</id>
|
||||
<link href="https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#38.2.0"/>
|
||||
<updated>2025-08-31T00:00:00.000Z</updated>
|
||||
<summary type="html"><![CDATA[<h3>Added</h3>
|
||||
<ul>
|
||||
<li>Upgraded to Firefox 142 <a href="https://github.com/sitespeedio/sitespeed.io/pull/4545">#4545</a> and Chrome/Edge 139 in the Docker container <a href="https://github.com/sitespeedio/sitespeed.io/pull/4542">#4552</a>.</li>
|
||||
</ul>
|
||||
]]></summary>
|
||||
<author>
|
||||
<name>Sitespeed.io</name>
|
||||
<uri>https://www.sitespeed.io</uri>
|
||||
</author>
|
||||
</entry>
|
||||
<entry>
|
||||
<title type="html"><![CDATA[sitespeed.io 38.1.2]]></title>
|
||||
<id>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#38.1.2</id>
|
||||
<link href="https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#38.1.2"/>
|
||||
<updated>2025-08-04T00:00:00.000Z</updated>
|
||||
<summary type="html"><![CDATA[<h3>Fixed</h3>
|
||||
<ul>
|
||||
<li>Upgraded to coach core 8.1.3 <a href="https://github.com/sitespeedio/sitespeed.io/pull/4541">#4551</a> (there was a bug introduced in 8.1.2).</li>
|
||||
</ul>
|
||||
]]></summary>
|
||||
<author>
|
||||
<name>Sitespeed.io</name>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
<title>sitespeed.io release feed</title>
|
||||
<link>https://www.sitespeed.io</link>
|
||||
<description>New releases and changelog feed of sitespeed.io</description>
|
||||
<lastBuildDate>Mon, 15 Dec 2025 04:36:00 GMT</lastBuildDate>
|
||||
<lastBuildDate>Thu, 18 Dec 2025 09:22:06 GMT</lastBuildDate>
|
||||
<docs>https://validator.w3.org/feed/docs/rss2.html</docs>
|
||||
<generator>https://github.com/jpmonette/feed</generator>
|
||||
<language>en</language>
|
||||
|
|
@ -16,6 +16,54 @@
|
|||
<copyright>All rights reserved 2022, Peter Hedenskog and team</copyright>
|
||||
<category>Web Performance</category>
|
||||
<atom:link href="https://www.sitespeed.io/feed/rss.xml" rel="self" type="application/rss+xml"/>
|
||||
<item>
|
||||
<title><![CDATA[sitespeed.io 39.2.0]]></title>
|
||||
<link>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#39.2.0</link>
|
||||
<guid>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#39.2.0</guid>
|
||||
<pubDate>Thu, 18 Dec 2025 00:00:00 GMT</pubDate>
|
||||
<description><![CDATA[<h3>Added</h3>
|
||||
<ul>
|
||||
<li>Updated to Browsertime 26.2 with latest Chromedriver and Edgedriver and a small XVFB fix <a href="https://github.com/sitespeedio/sitespeed.io/pull/4575">#4575</a>.</li>
|
||||
</ul>
|
||||
]]></description>
|
||||
<enclosure url="https://www.sitespeed.io/img/logos/sitespeed.io.png" length="0" type="image/png"/>
|
||||
</item>
|
||||
<item>
|
||||
<title><![CDATA[sitespeed.io 39.1.2]]></title>
|
||||
<link>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#39.1.2</link>
|
||||
<guid>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#39.1.2</guid>
|
||||
<pubDate>Wed, 17 Dec 2025 00:00:00 GMT</pubDate>
|
||||
<description><![CDATA[<h3>Fixed</h3>
|
||||
<ul>
|
||||
<li>Fix a bug introduced in 39.0.0 where alias was missing when creating some file structure <a href="https://github.com/sitespeedio/sitespeed.io/pull/4574">#4574</a>.</li>
|
||||
</ul>
|
||||
]]></description>
|
||||
<enclosure url="https://www.sitespeed.io/img/logos/sitespeed.io.png" length="0" type="image/png"/>
|
||||
</item>
|
||||
<item>
|
||||
<title><![CDATA[sitespeed.io 39.1.1]]></title>
|
||||
<link>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#39.1.1</link>
|
||||
<guid>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#39.1.1</guid>
|
||||
<pubDate>Tue, 16 Dec 2025 00:00:00 GMT</pubDate>
|
||||
<description><![CDATA[<h3>Fixed</h3>
|
||||
<ul>
|
||||
<li>Safer handling for broken URLs. This logs the actual root cause <a href="https://github.com/sitespeedio/sitespeed.io/pull/4573">#4573</a>.</li>
|
||||
</ul>
|
||||
]]></description>
|
||||
<enclosure url="https://www.sitespeed.io/img/logos/sitespeed.io.png" length="0" type="image/png"/>
|
||||
</item>
|
||||
<item>
|
||||
<title><![CDATA[sitespeed.io 39.1.0]]></title>
|
||||
<link>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#39.1.0</link>
|
||||
<guid>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#39.1.0</guid>
|
||||
<pubDate>Mon, 15 Dec 2025 00:00:00 GMT</pubDate>
|
||||
<description><![CDATA[<h3>Added</h3>
|
||||
<ul>
|
||||
<li>Upgrade the Docker container: Chrome and Edge 143, Firefox 146 <a href="https://github.com/sitespeedio/sitespeed.io/pull/4572">#4572</a>.</li>
|
||||
</ul>
|
||||
]]></description>
|
||||
<enclosure url="https://www.sitespeed.io/img/logos/sitespeed.io.png" length="0" type="image/png"/>
|
||||
</item>
|
||||
<item>
|
||||
<title><![CDATA[sitespeed.io 39.0.0]]></title>
|
||||
<link>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#39.0.0</link>
|
||||
|
|
@ -104,60 +152,6 @@
|
|||
<ul>
|
||||
<li>Set max width 400 pixel of the screenshot showing in the Grafana annotation (Grafana changed how they render the annotation long time ago) <a href="https://github.com/sitespeedio/sitespeed.io/pull/4553">#4553</a> and <a href="https://github.com/sitespeedio/sitespeed.io/commit/dbcdc72bedd0a2be5c9031675783fe3f3b73f288">the fix</a>.</li>
|
||||
</ul>
|
||||
]]></description>
|
||||
<enclosure url="https://www.sitespeed.io/img/logos/sitespeed.io.png" length="0" type="image/png"/>
|
||||
</item>
|
||||
<item>
|
||||
<title><![CDATA[sitespeed.io 38.4.0]]></title>
|
||||
<link>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#38.4.0</link>
|
||||
<guid>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#38.4.0</guid>
|
||||
<pubDate>Sun, 12 Oct 2025 00:00:00 GMT</pubDate>
|
||||
<description><![CDATA[<h3>Added</h3>
|
||||
<ul>
|
||||
<li>Upgraded to Chrome/Edge 141 <a href="https://github.com/sitespeedio/sitespeed.io/pull/4551">#4551</a>.</li>
|
||||
</ul>
|
||||
<ul>
|
||||
<li>+1 container users will get Lighthouse 13.</li>
|
||||
</ul>
|
||||
<ul>
|
||||
<li>Browsertime 25.2 with latest Chrome/Edgedrivers <a href="https://github.com/sitespeedio/sitespeed.io/pull/4552">#4552</a>.</li>
|
||||
</ul>
|
||||
]]></description>
|
||||
<enclosure url="https://www.sitespeed.io/img/logos/sitespeed.io.png" length="0" type="image/png"/>
|
||||
</item>
|
||||
<item>
|
||||
<title><![CDATA[sitespeed.io 38.3.0]]></title>
|
||||
<link>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#38.3.0</link>
|
||||
<guid>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#38.3.0</guid>
|
||||
<pubDate>Sun, 07 Sep 2025 00:00:00 GMT</pubDate>
|
||||
<description><![CDATA[<h3>Added</h3>
|
||||
<ul>
|
||||
<li>Upgraded to Chrome/Chromedriver 140 <a href="https://github.com/sitespeedio/sitespeed.io/pull/4549">#4549</a> and <a href="https://github.com/sitespeedio/sitespeed.io/pull/4548">#4548</a>.</li>
|
||||
</ul>
|
||||
]]></description>
|
||||
<enclosure url="https://www.sitespeed.io/img/logos/sitespeed.io.png" length="0" type="image/png"/>
|
||||
</item>
|
||||
<item>
|
||||
<title><![CDATA[sitespeed.io 38.2.0]]></title>
|
||||
<link>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#38.2.0</link>
|
||||
<guid>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#38.2.0</guid>
|
||||
<pubDate>Sun, 31 Aug 2025 00:00:00 GMT</pubDate>
|
||||
<description><![CDATA[<h3>Added</h3>
|
||||
<ul>
|
||||
<li>Upgraded to Firefox 142 <a href="https://github.com/sitespeedio/sitespeed.io/pull/4545">#4545</a> and Chrome/Edge 139 in the Docker container <a href="https://github.com/sitespeedio/sitespeed.io/pull/4542">#4552</a>.</li>
|
||||
</ul>
|
||||
]]></description>
|
||||
<enclosure url="https://www.sitespeed.io/img/logos/sitespeed.io.png" length="0" type="image/png"/>
|
||||
</item>
|
||||
<item>
|
||||
<title><![CDATA[sitespeed.io 38.1.2]]></title>
|
||||
<link>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#38.1.2</link>
|
||||
<guid>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#38.1.2</guid>
|
||||
<pubDate>Mon, 04 Aug 2025 00:00:00 GMT</pubDate>
|
||||
<description><![CDATA[<h3>Fixed</h3>
|
||||
<ul>
|
||||
<li>Upgraded to coach core 8.1.3 <a href="https://github.com/sitespeedio/sitespeed.io/pull/4541">#4551</a> (there was a bug introduced in 8.1.2).</li>
|
||||
</ul>
|
||||
]]></description>
|
||||
<enclosure url="https://www.sitespeed.io/img/logos/sitespeed.io.png" length="0" type="image/png"/>
|
||||
</item>
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
<feed xmlns="http://www.w3.org/2005/Atom">
|
||||
<id>testrunner-release-feed</id>
|
||||
<title>testrunner release feed</title>
|
||||
<updated>2025-11-05T13:06:14.471Z</updated>
|
||||
<updated>2025-10-22T21:28:22.870Z</updated>
|
||||
<generator>https://github.com/jpmonette/feed</generator>
|
||||
<author>
|
||||
<name>Peter Hedenskog</name>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
<title>testrunner release feed</title>
|
||||
<link>https://www.sitespeed.io</link>
|
||||
<description>New releases and changelog feed of testrunner</description>
|
||||
<lastBuildDate>Wed, 05 Nov 2025 13:06:14 GMT</lastBuildDate>
|
||||
<lastBuildDate>Wed, 22 Oct 2025 21:28:22 GMT</lastBuildDate>
|
||||
<docs>https://validator.w3.org/feed/docs/rss2.html</docs>
|
||||
<generator>https://github.com/jpmonette/feed</generator>
|
||||
<language>en</language>
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ function normalizeFsPath(input) {
|
|||
return n;
|
||||
}
|
||||
|
||||
export function pathToFolder(input, options) {
|
||||
export function pathToFolder(input, options, alias) {
|
||||
if (options.useSameDir) return '';
|
||||
|
||||
let hostname = '';
|
||||
|
|
@ -53,6 +53,8 @@ export function pathToFolder(input, options) {
|
|||
|
||||
if (options.urlMetaData && options.urlMetaData[input]) {
|
||||
pathSegments.push(options.urlMetaData[input]);
|
||||
} else if (alias) {
|
||||
pathSegments.push(alias);
|
||||
} else {
|
||||
const parts = isUrl
|
||||
? pathname.split('/').filter(Boolean)
|
||||
|
|
|
|||
|
|
@ -95,7 +95,7 @@ export default class BrowsertimePlugin extends SitespeedioPlugin {
|
|||
async processMessage(message) {
|
||||
const options = this.options;
|
||||
switch (message.type) {
|
||||
// When sistespeed.io starts, a setup messages is posted on the queue
|
||||
// When sitespeed.io starts, a setup messages is posted on the queue
|
||||
// and all plugins can tell other plugins that they are alive and are ready
|
||||
// to receive configuration
|
||||
case 'sitespeedio.setup': {
|
||||
|
|
@ -105,12 +105,18 @@ export default class BrowsertimePlugin extends SitespeedioPlugin {
|
|||
if (this.options.urlMetaData) {
|
||||
for (let url of Object.keys(this.options.urlMetaData)) {
|
||||
const alias = this.options.urlMetaData[url];
|
||||
const group = new URL(url).hostname;
|
||||
this.allAlias[alias] = url;
|
||||
super.sendMessage('browsertime.alias', alias, {
|
||||
url,
|
||||
group
|
||||
});
|
||||
try {
|
||||
const group = new URL(url).hostname;
|
||||
this.allAlias[alias] = url;
|
||||
super.sendMessage('browsertime.alias', alias, {
|
||||
url,
|
||||
group
|
||||
});
|
||||
} catch (error) {
|
||||
log.error(
|
||||
'Could not get group for URL:' + url + ' with error' + error
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@ block content
|
|||
tr
|
||||
td Memory
|
||||
td #{h.size.format(memory)}
|
||||
- cpuPower = get(d, 'browsertime.run.cpuConsumption')
|
||||
- cpuConsumption = get(d, 'browsertime.run.cpuConsumption')
|
||||
if cpuConsumption
|
||||
tr
|
||||
td Firefox CPU power consumption
|
||||
|
|
|
|||
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "sitespeed.io",
|
||||
"version": "39.1.0",
|
||||
"version": "39.2.0",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "sitespeed.io",
|
||||
"version": "39.1.0",
|
||||
"version": "39.2.0",
|
||||
"hasInstallScript": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
|
|
@ -17,7 +17,7 @@
|
|||
"@slack/webhook": "7.0.6",
|
||||
"@tgwf/co2": "0.16.9",
|
||||
"axe-core": "4.11.0",
|
||||
"browsertime": "26.0.1",
|
||||
"browsertime": "26.3.0",
|
||||
"coach-core": "8.1.3",
|
||||
"dayjs": "1.11.18",
|
||||
"fast-crc32c": "2.0.0",
|
||||
|
|
@ -2678,9 +2678,9 @@
|
|||
}
|
||||
},
|
||||
"node_modules/@sitespeed.io/chromedriver": {
|
||||
"version": "142.0.7444-59",
|
||||
"resolved": "https://registry.npmjs.org/@sitespeed.io/chromedriver/-/chromedriver-142.0.7444-59.tgz",
|
||||
"integrity": "sha512-Nfsl35/mdZ5WrVo6gileOOWXdIvz/4azQVXJbOAKQtDlBWj2efPNGxLqWnwt7ynW1Lg69KV0KYUyaV9CwsDEdQ==",
|
||||
"version": "143.0.7499",
|
||||
"resolved": "https://registry.npmjs.org/@sitespeed.io/chromedriver/-/chromedriver-143.0.7499.tgz",
|
||||
"integrity": "sha512-vXfm0fxg7OAEfhQfbwuK9xlJGMzLto00OFCsEBWF3JHyIfwLIKtqsNdd/87nPXL4f8NvFgYY0zw8Q8Q4cXa/Aw==",
|
||||
"hasInstallScript": true,
|
||||
"dependencies": {
|
||||
"node-downloader-helper": "2.1.9",
|
||||
|
|
@ -2688,9 +2688,9 @@
|
|||
}
|
||||
},
|
||||
"node_modules/@sitespeed.io/edgedriver": {
|
||||
"version": "141.0.3537-71",
|
||||
"resolved": "https://registry.npmjs.org/@sitespeed.io/edgedriver/-/edgedriver-141.0.3537-71.tgz",
|
||||
"integrity": "sha512-YWVcIgU8BqMZGzrXprojQD1wCyFv0iA3krkuUyrk1rmi0DGuOom81hGu34EynSzUzsoX50aNjH95akX771MkTw==",
|
||||
"version": "143.0.3650",
|
||||
"resolved": "https://registry.npmjs.org/@sitespeed.io/edgedriver/-/edgedriver-143.0.3650.tgz",
|
||||
"integrity": "sha512-sOZjXoVBq5YDQtWz/h1fcP3X6BmOmxwtqc/vc3GI5xMPQjXJqgz7kHHjylDZQFkKI1jI4+YpmsTtIpq33Hkhyw==",
|
||||
"hasInstallScript": true,
|
||||
"dependencies": {
|
||||
"node-downloader-helper": "2.1.9",
|
||||
|
|
@ -3591,7 +3591,6 @@
|
|||
"resolved": "https://registry.npmjs.org/@types/markdown-it/-/markdown-it-14.1.1.tgz",
|
||||
"integrity": "sha512-4NpsnpYl2Gt1ljyBGrKMxFYAYvpqbnnkgP/i/g+NLpjEUa3obn1XJCur9YbEXKDAkaXqsR1LbDnGEJ0MmKFxfg==",
|
||||
"dev": true,
|
||||
"peer": true,
|
||||
"dependencies": {
|
||||
"@types/linkify-it": "^5",
|
||||
"@types/mdurl": "^2"
|
||||
|
|
@ -3664,7 +3663,6 @@
|
|||
"integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"peer": true,
|
||||
"bin": {
|
||||
"acorn": "bin/acorn"
|
||||
},
|
||||
|
|
@ -3772,7 +3770,6 @@
|
|||
"version": "7.4.1",
|
||||
"resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz",
|
||||
"integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==",
|
||||
"peer": true,
|
||||
"bin": {
|
||||
"acorn": "bin/acorn"
|
||||
},
|
||||
|
|
@ -4407,7 +4404,6 @@
|
|||
}
|
||||
],
|
||||
"license": "MIT",
|
||||
"peer": true,
|
||||
"dependencies": {
|
||||
"caniuse-lite": "^1.0.30001726",
|
||||
"electron-to-chromium": "^1.5.173",
|
||||
|
|
@ -4422,14 +4418,13 @@
|
|||
}
|
||||
},
|
||||
"node_modules/browsertime": {
|
||||
"version": "26.0.1",
|
||||
"resolved": "https://registry.npmjs.org/browsertime/-/browsertime-26.0.1.tgz",
|
||||
"integrity": "sha512-IveXYyh44aQiNArFOCDCEV7KVs4Lcoj/CikCDuNStskKvy3TWuXF+48gpJIaXcRsYvZ1GW1dI9l7ZWRY2MVPBA==",
|
||||
"license": "MIT",
|
||||
"version": "26.3.0",
|
||||
"resolved": "https://registry.npmjs.org/browsertime/-/browsertime-26.3.0.tgz",
|
||||
"integrity": "sha512-6nYPA22+aUzniwaGyq24fWA3YbDQy0/7KNzc7huLpdxECbsv6X2Ms/B3x22LhEddT2WORDLojPVYBFbUJcY/Hg==",
|
||||
"dependencies": {
|
||||
"@devicefarmer/adbkit": "3.3.8",
|
||||
"@sitespeed.io/chromedriver": "142.0.7444-59",
|
||||
"@sitespeed.io/edgedriver": "141.0.3537-71",
|
||||
"@sitespeed.io/chromedriver": "143.0.7499",
|
||||
"@sitespeed.io/edgedriver": "143.0.3650",
|
||||
"@sitespeed.io/geckodriver": "0.36.0",
|
||||
"@sitespeed.io/log": "1.0.0",
|
||||
"@sitespeed.io/throttle": "5.0.1",
|
||||
|
|
@ -4438,9 +4433,9 @@
|
|||
"chrome-remote-interface": "0.33.3",
|
||||
"execa": "9.6.0",
|
||||
"fast-stats": "0.0.7",
|
||||
"ff-test-bidi-har-export": "0.0.18",
|
||||
"ff-test-bidi-har-export": "0.0.20",
|
||||
"lodash.merge": "4.6.2",
|
||||
"selenium-webdriver": "4.38.0",
|
||||
"selenium-webdriver": "4.39.0",
|
||||
"yargs": "18.0.0"
|
||||
},
|
||||
"bin": {
|
||||
|
|
@ -5278,6 +5273,7 @@
|
|||
"resolved": "https://registry.npmjs.org/entities/-/entities-3.0.1.tgz",
|
||||
"integrity": "sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==",
|
||||
"dev": true,
|
||||
"peer": true,
|
||||
"engines": {
|
||||
"node": ">=0.12"
|
||||
},
|
||||
|
|
@ -5352,7 +5348,6 @@
|
|||
"integrity": "sha512-XyLmROnACWqSxiGYArdef1fItQd47weqB7iwtfr9JHwRrqIXZdcFMvvEcL9xHCmL0SNsOvF0c42lWyM1U5dgig==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"peer": true,
|
||||
"dependencies": {
|
||||
"@eslint-community/eslint-utils": "^4.8.0",
|
||||
"@eslint-community/regexpp": "^4.12.1",
|
||||
|
|
@ -5414,7 +5409,6 @@
|
|||
"integrity": "sha512-82GZUjRS0p/jganf6q1rEO25VSoHH0hKPCTrgillPjdI/3bgBhAE1QzHrHTizjpRvy6pGAvKjDJtk2pF9NDq8w==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"peer": true,
|
||||
"bin": {
|
||||
"eslint-config-prettier": "bin/cli.js"
|
||||
},
|
||||
|
|
@ -6011,9 +6005,9 @@
|
|||
}
|
||||
},
|
||||
"node_modules/ff-test-bidi-har-export": {
|
||||
"version": "0.0.18",
|
||||
"resolved": "https://registry.npmjs.org/ff-test-bidi-har-export/-/ff-test-bidi-har-export-0.0.18.tgz",
|
||||
"integrity": "sha512-9Id/mF6o0src/I4kCbLhkqSlLHMrbEi7cwI6yLpjsSK+xqdgo5J80tbkV7YkLV4NhNalJ5O+jPjZklz1pSurAQ=="
|
||||
"version": "0.0.20",
|
||||
"resolved": "https://registry.npmjs.org/ff-test-bidi-har-export/-/ff-test-bidi-har-export-0.0.20.tgz",
|
||||
"integrity": "sha512-1Mt6RwIAW5kNm6WXMBb4m3/YV2uK1V/zaACfGnRcJXJW0LQ4Erv2Vtu+C3ZbQVtCogtPBoD0mnqkjRA+GRJ6Kw=="
|
||||
},
|
||||
"node_modules/figures": {
|
||||
"version": "6.1.0",
|
||||
|
|
@ -7498,6 +7492,7 @@
|
|||
"resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-4.0.1.tgz",
|
||||
"integrity": "sha512-C7bfi1UZmoj8+PQx22XyeXCuBlokoyWQL5pWSP+EI6nzRylyThouddufc2c1NDIcP9k5agmN9fLpA7VNJfIiqw==",
|
||||
"dev": true,
|
||||
"peer": true,
|
||||
"dependencies": {
|
||||
"uc.micro": "^1.0.1"
|
||||
}
|
||||
|
|
@ -7586,6 +7581,7 @@
|
|||
"resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-13.0.1.tgz",
|
||||
"integrity": "sha512-lTlxriVoy2criHP0JKRhO2VDG9c2ypWCsT237eDiLqi09rmbKoUetyGHq2uOIRoRS//kfoJckS0eUzzkDR+k2Q==",
|
||||
"dev": true,
|
||||
"peer": true,
|
||||
"dependencies": {
|
||||
"argparse": "^2.0.1",
|
||||
"entities": "~3.0.1",
|
||||
|
|
@ -7611,7 +7607,8 @@
|
|||
"version": "2.0.1",
|
||||
"resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
|
||||
"integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
|
||||
"dev": true
|
||||
"dev": true,
|
||||
"peer": true
|
||||
},
|
||||
"node_modules/markdown/node_modules/nopt": {
|
||||
"version": "2.1.2",
|
||||
|
|
@ -7689,7 +7686,8 @@
|
|||
"version": "1.0.1",
|
||||
"resolved": "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz",
|
||||
"integrity": "sha1-/oWy7HWlkDfyrf7BAP1sYBdhFS4=",
|
||||
"dev": true
|
||||
"dev": true,
|
||||
"peer": true
|
||||
},
|
||||
"node_modules/memoize": {
|
||||
"version": "10.1.0",
|
||||
|
|
@ -8583,7 +8581,6 @@
|
|||
"integrity": "sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"peer": true,
|
||||
"bin": {
|
||||
"prettier": "bin/prettier.cjs"
|
||||
},
|
||||
|
|
@ -9289,9 +9286,9 @@
|
|||
"license": "BlueOak-1.0.0"
|
||||
},
|
||||
"node_modules/selenium-webdriver": {
|
||||
"version": "4.38.0",
|
||||
"resolved": "https://registry.npmjs.org/selenium-webdriver/-/selenium-webdriver-4.38.0.tgz",
|
||||
"integrity": "sha512-5/UXXFSQmn7FGQkbcpAqvfhzflUdMWtT7QqpEgkFD6Q6rDucxB5EUfzgjmr6JbUj30QodcW3mDXehzoeS/Vy5w==",
|
||||
"version": "4.39.0",
|
||||
"resolved": "https://registry.npmjs.org/selenium-webdriver/-/selenium-webdriver-4.39.0.tgz",
|
||||
"integrity": "sha512-NAs9jCU+UeZ/ZmRb8R6zOp7N8eMklefdBYASnaRmCNXdgFE8w3OCxxZmLixkwqnGDHY5VF7hCulfw1Mls43N/A==",
|
||||
"funding": [
|
||||
{
|
||||
"type": "github",
|
||||
|
|
@ -9303,7 +9300,7 @@
|
|||
}
|
||||
],
|
||||
"dependencies": {
|
||||
"@bazel/runfiles": "^6.3.1",
|
||||
"@bazel/runfiles": "^6.5.0",
|
||||
"jszip": "^3.10.1",
|
||||
"tmp": "^0.2.5",
|
||||
"ws": "^8.18.3"
|
||||
|
|
@ -10195,7 +10192,8 @@
|
|||
"version": "1.0.5",
|
||||
"resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-1.0.5.tgz",
|
||||
"integrity": "sha512-JoLI4g5zv5qNyT09f4YAvEZIIV1oOjqnewYg5D38dkQljIzpPT296dbIGvKro3digYI1bkb7W6EP1y4uDlmzLg==",
|
||||
"dev": true
|
||||
"dev": true,
|
||||
"peer": true
|
||||
},
|
||||
"node_modules/underscore": {
|
||||
"version": "1.13.2",
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
"sitespeed.io": "./bin/sitespeed.js",
|
||||
"sitespeed.io-wpr": "./bin/browsertimeWebPageReplay.js"
|
||||
},
|
||||
"version": "39.1.0",
|
||||
"version": "39.2.0",
|
||||
"description": "sitespeed.io is an open-source tool for comprehensive web performance analysis, enabling you to test, monitor, and optimize your website’s speed using real browsers in various environments.",
|
||||
"keywords": [
|
||||
"performance",
|
||||
|
|
@ -88,7 +88,7 @@
|
|||
"@tgwf/co2": "0.16.9",
|
||||
"@slack/webhook": "7.0.6",
|
||||
"axe-core": "4.11.0",
|
||||
"browsertime": "26.0.1",
|
||||
"browsertime": "26.3.0",
|
||||
"coach-core": "8.1.3",
|
||||
"dayjs": "1.11.18",
|
||||
"fast-crc32c": "2.0.0",
|
||||
|
|
|
|||
Loading…
Reference in New Issue