new version

This commit is contained in:
soulgalore 2023-05-26 18:08:32 +02:00
parent 8d467bd191
commit c7201c09cb
8 changed files with 128 additions and 155 deletions

View File

@ -1 +1 @@
27.6.4
27.6.5

View File

@ -296,6 +296,7 @@ API
--api.silent Set to true if you do not want to log anything from the communication [boolean] [default: false]
--api.port The port for the API
--api.id The id of the test. Use it when you want to get the test result. [string]
--api.priority The priority of the test. Highest priority is 1.
--api.json Output the result as JSON.
Options:

View File

@ -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>2023-05-20T00:00:00.000Z</updated>
<updated>2023-05-26T00:00:00.000Z</updated>
<generator>https://github.com/jpmonette/feed</generator>
<author>
<name>Peter Hedenskog</name>
@ -15,6 +15,24 @@
<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 27.6.5]]></title>
<id>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#27.6.5</id>
<link href="https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#27.6.5"/>
<updated>2023-05-26T00:00:00.000Z</updated>
<summary type="html"><![CDATA[<h3>Fixed</h3>
<ul>
<li>Bumped Browsertime with a fix for host-resolver-rules, thank you <a href="https://github.com/atuchin-m">Mikhail</a> for PR <a href="https://github.com/sitespeedio/browsertime/pull/1953">#1953</a>.</li>
</ul>
<ul>
<li>Hopefully fixed the broken manifest file for the Docker containers by updating the Docker build actions to latest versions and added provenance: false.</li>
</ul>
]]></summary>
<author>
<name>Sitespeed.io</name>
<uri>https://www.sitespeed.io</uri>
</author>
</entry>
<entry>
<title type="html"><![CDATA[sitespeed.io 27.6.4]]></title>
<id>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#27.6.4</id>
@ -164,24 +182,6 @@
<ul>
<li>Prepare to add support for the sitespeed.io API where you can launch tests on other servers. This is not ready yet but a makes it easier for me to test the upcoming functionality.</li>
</ul>
]]></summary>
<author>
<name>Sitespeed.io</name>
<uri>https://www.sitespeed.io</uri>
</author>
</entry>
<entry>
<title type="html"><![CDATA[sitespeed.io 27.3.1]]></title>
<id>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#27.3.1</id>
<link href="https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#27.3.1"/>
<updated>2023-04-28T00:00:00.000Z</updated>
<summary type="html"><![CDATA[<h3>Fixed</h3>
<ul>
<li>Fix broken --firstParty parameter as reported in <a href="https://github.com/sitespeedio/sitespeed.io/issues/3822">#3822</a> and fixed in <a href="https://github.com/sitespeedio/sitespeed.io/pull/3823">#3823</a></li>
</ul>
<ul>
<li>Fix broken crawler <a href="https://github.com/sitespeedio/sitespeed.io/pull/3820">#3820</a>.</li>
</ul>
]]></summary>
<author>
<name>Sitespeed.io</name>
@ -275,6 +275,21 @@
<ul>
<li>Removed the dependecy of route. Using <code>ip route</code> instead and we already have <code>ip</code> as a requirement.</li>
</ul>
]]></summary>
<author>
<name>Sitespeed.io</name>
<uri>https://www.sitespeed.io</uri>
</author>
</entry>
<entry>
<title type="html"><![CDATA[browsertime 17.10.2]]></title>
<id>https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#17.10.2</id>
<link href="https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#17.10.2"/>
<updated>2022-05-26T00:00:00.000Z</updated>
<summary type="html"><![CDATA[<h3>Fixed</h3>
<ul>
<li>Fix for--host-resolver-rules, thank you <a href="https://github.com/atuchin-m">Mikhail</a> for PR <a href="https://github.com/sitespeedio/browsertime/pull/1953">#1953</a>.</li>
</ul>
]]></summary>
<author>
<name>Sitespeed.io</name>
@ -542,28 +557,6 @@
<ul>
<li>In Chrome 111 some metrics become more instable when running on host with limited CPU. This change also exists in 112 beta. However we where missing out on a couple of command line magic to disable features in Chrome, this fixes that <a href="https://github.com/sitespeedio/browsertime/pull/1921">#1921</a>.</li>
</ul>
]]></summary>
<author>
<name>Sitespeed.io</name>
<uri>https://www.sitespeed.io</uri>
</author>
</entry>
<entry>
<title type="html"><![CDATA[browsertime 17.3.0]]></title>
<id>https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#17.3.0</id>
<link href="https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#17.3.0"/>
<updated>2022-03-26T00:00:00.000Z</updated>
<summary type="html"><![CDATA[<h3>Added</h3>
<ul>
<li>On Linux you can use taskset to assing FFMPEG to specific CPUs using <code>--videoParams.taskset &quot;0,5,7,9-11&quot; </code>. It will start FFMPEG with <code>taskset -c &lt;CPUS&gt;</code> to pin FFMPG to specific CPU(s). Specify a numerical list of processors. The list may contain multiple items, separated by comma, and ranges. For example, &quot;0,5,7,9-11&quot;. Use it together with isolcpus. Added in <a href="https://github.com/sitespeedio/browsertime/pull/1917">#1917</a>.</li>
</ul>
<ul>
<li>If you use a rooted Samsung A51 you can now choose the CPU speed (min/middle/max) using <code>--android.pinCPUSpeed min|middle|max</code> <a href="https://github.com/sitespeedio/browsertime/pull/1915">#1915</a>.</li>
</ul>
<h3>Fixed</h3>
<ul>
<li>Bumped Selenium-webdriver to 4.8.2 <a href="https://github.com/sitespeedio/browsertime/pull/1916">#1916</a>.</li>
</ul>
]]></summary>
<author>
<name>Sitespeed.io</name>

View File

@ -2,7 +2,7 @@
<feed xmlns="http://www.w3.org/2005/Atom">
<id>browsertime-release-feed</id>
<title>browsertime release feed</title>
<updated>2023-05-19T14:55:04.406Z</updated>
<updated>2023-05-26T13:14:56.986Z</updated>
<generator>https://github.com/jpmonette/feed</generator>
<author>
<name>Peter Hedenskog</name>
@ -16,6 +16,21 @@
<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 17.10.2]]></title>
<id>https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#17.10.2</id>
<link href="https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#17.10.2"/>
<updated>2022-05-26T00:00:00.000Z</updated>
<summary type="html"><![CDATA[<h3>Fixed</h3>
<ul>
<li>Fix for--host-resolver-rules, thank you <a href="https://github.com/atuchin-m">Mikhail</a> for PR <a href="https://github.com/sitespeedio/browsertime/pull/1953">#1953</a>.</li>
</ul>
]]></summary>
<author>
<name>Sitespeed.io</name>
<uri>https://www.sitespeed.io</uri>
</author>
</entry>
<entry>
<title type="html"><![CDATA[browsertime 17.10.1]]></title>
<id>https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#17.10.1</id>
@ -183,28 +198,6 @@
<ul>
<li>In Chrome 111 some metrics become more instable when running on host with limited CPU. This change also exists in 112 beta. However we where missing out on a couple of command line magic to disable features in Chrome, this fixes that <a href="https://github.com/sitespeedio/browsertime/pull/1921">#1921</a>.</li>
</ul>
]]></summary>
<author>
<name>Sitespeed.io</name>
<uri>https://www.sitespeed.io</uri>
</author>
</entry>
<entry>
<title type="html"><![CDATA[browsertime 17.3.0]]></title>
<id>https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#17.3.0</id>
<link href="https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#17.3.0"/>
<updated>2022-03-26T00:00:00.000Z</updated>
<summary type="html"><![CDATA[<h3>Added</h3>
<ul>
<li>On Linux you can use taskset to assing FFMPEG to specific CPUs using <code>--videoParams.taskset &quot;0,5,7,9-11&quot; </code>. It will start FFMPEG with <code>taskset -c &lt;CPUS&gt;</code> to pin FFMPG to specific CPU(s). Specify a numerical list of processors. The list may contain multiple items, separated by comma, and ranges. For example, &quot;0,5,7,9-11&quot;. Use it together with isolcpus. Added in <a href="https://github.com/sitespeedio/browsertime/pull/1917">#1917</a>.</li>
</ul>
<ul>
<li>If you use a rooted Samsung A51 you can now choose the CPU speed (min/middle/max) using <code>--android.pinCPUSpeed min|middle|max</code> <a href="https://github.com/sitespeedio/browsertime/pull/1915">#1915</a>.</li>
</ul>
<h3>Fixed</h3>
<ul>
<li>Bumped Selenium-webdriver to 4.8.2 <a href="https://github.com/sitespeedio/browsertime/pull/1916">#1916</a>.</li>
</ul>
]]></summary>
<author>
<name>Sitespeed.io</name>

View File

@ -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>Fri, 19 May 2023 14:55:04 GMT</lastBuildDate>
<lastBuildDate>Fri, 26 May 2023 13:14:56 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,18 @@
<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 17.10.2]]></title>
<link>https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#17.10.2</link>
<guid>https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#17.10.2</guid>
<pubDate>Thu, 26 May 2022 00:00:00 GMT</pubDate>
<description><![CDATA[<h3>Fixed</h3>
<ul>
<li>Fix for--host-resolver-rules, thank you <a href="https://github.com/atuchin-m">Mikhail</a> for PR <a href="https://github.com/sitespeedio/browsertime/pull/1953">#1953</a>.</li>
</ul>
]]></description>
<enclosure url="https://www.sitespeed.io/img/logos/browsertime.png" length="0" type="image/png"/>
</item>
<item>
<title><![CDATA[browsertime 17.10.1]]></title>
<link>https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#17.10.1</link>
@ -159,25 +171,6 @@
<ul>
<li>In Chrome 111 some metrics become more instable when running on host with limited CPU. This change also exists in 112 beta. However we where missing out on a couple of command line magic to disable features in Chrome, this fixes that <a href="https://github.com/sitespeedio/browsertime/pull/1921">#1921</a>.</li>
</ul>
]]></description>
<enclosure url="https://www.sitespeed.io/img/logos/browsertime.png" length="0" type="image/png"/>
</item>
<item>
<title><![CDATA[browsertime 17.3.0]]></title>
<link>https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#17.3.0</link>
<guid>https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#17.3.0</guid>
<pubDate>Sat, 26 Mar 2022 00:00:00 GMT</pubDate>
<description><![CDATA[<h3>Added</h3>
<ul>
<li>On Linux you can use taskset to assing FFMPEG to specific CPUs using <code>--videoParams.taskset &quot;0,5,7,9-11&quot; </code>. It will start FFMPEG with <code>taskset -c &lt;CPUS&gt;</code> to pin FFMPG to specific CPU(s). Specify a numerical list of processors. The list may contain multiple items, separated by comma, and ranges. For example, &quot;0,5,7,9-11&quot;. Use it together with isolcpus. Added in <a href="https://github.com/sitespeedio/browsertime/pull/1917">#1917</a>.</li>
</ul>
<ul>
<li>If you use a rooted Samsung A51 you can now choose the CPU speed (min/middle/max) using <code>--android.pinCPUSpeed min|middle|max</code> <a href="https://github.com/sitespeedio/browsertime/pull/1915">#1915</a>.</li>
</ul>
<h3>Fixed</h3>
<ul>
<li>Bumped Selenium-webdriver to 4.8.2 <a href="https://github.com/sitespeedio/browsertime/pull/1916">#1916</a>.</li>
</ul>
]]></description>
<enclosure url="https://www.sitespeed.io/img/logos/browsertime.png" length="0" type="image/png"/>
</item>

View File

@ -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>Sat, 20 May 2023 00:00:00 GMT</lastBuildDate>
<lastBuildDate>Fri, 26 May 2023 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,21 @@
</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 27.6.5]]></title>
<link>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#27.6.5</link>
<guid>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#27.6.5</guid>
<pubDate>Fri, 26 May 2023 00:00:00 GMT</pubDate>
<description><![CDATA[<h3>Fixed</h3>
<ul>
<li>Bumped Browsertime with a fix for host-resolver-rules, thank you <a href="https://github.com/atuchin-m">Mikhail</a> for PR <a href="https://github.com/sitespeedio/browsertime/pull/1953">#1953</a>.</li>
</ul>
<ul>
<li>Hopefully fixed the broken manifest file for the Docker containers by updating the Docker build actions to latest versions and added provenance: false.</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 27.6.4]]></title>
<link>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#27.6.4</link>
@ -140,21 +155,6 @@
<ul>
<li>Prepare to add support for the sitespeed.io API where you can launch tests on other servers. This is not ready yet but a makes it easier for me to test the upcoming functionality.</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 27.3.1]]></title>
<link>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#27.3.1</link>
<guid>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#27.3.1</guid>
<pubDate>Fri, 28 Apr 2023 00:00:00 GMT</pubDate>
<description><![CDATA[<h3>Fixed</h3>
<ul>
<li>Fix broken --firstParty parameter as reported in <a href="https://github.com/sitespeedio/sitespeed.io/issues/3822">#3822</a> and fixed in <a href="https://github.com/sitespeedio/sitespeed.io/pull/3823">#3823</a></li>
</ul>
<ul>
<li>Fix broken crawler <a href="https://github.com/sitespeedio/sitespeed.io/pull/3820">#3820</a>.</li>
</ul>
]]></description>
<enclosure url="https://www.sitespeed.io/img/logos/sitespeed.io.png" length="0" type="image/png"/>
</item>
@ -228,6 +228,18 @@
</ul>
]]></description>
</item>
<item>
<title><![CDATA[browsertime 17.10.2]]></title>
<link>https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#17.10.2</link>
<guid>https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#17.10.2</guid>
<pubDate>Thu, 26 May 2022 00:00:00 GMT</pubDate>
<description><![CDATA[<h3>Fixed</h3>
<ul>
<li>Fix for--host-resolver-rules, thank you <a href="https://github.com/atuchin-m">Mikhail</a> for PR <a href="https://github.com/sitespeedio/browsertime/pull/1953">#1953</a>.</li>
</ul>
]]></description>
<enclosure url="https://www.sitespeed.io/img/logos/browsertime.png" length="0" type="image/png"/>
</item>
<item>
<title><![CDATA[browsertime 17.10.1]]></title>
<link>https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#17.10.1</link>
@ -445,25 +457,6 @@
<ul>
<li>In Chrome 111 some metrics become more instable when running on host with limited CPU. This change also exists in 112 beta. However we where missing out on a couple of command line magic to disable features in Chrome, this fixes that <a href="https://github.com/sitespeedio/browsertime/pull/1921">#1921</a>.</li>
</ul>
]]></description>
<enclosure url="https://www.sitespeed.io/img/logos/browsertime.png" length="0" type="image/png"/>
</item>
<item>
<title><![CDATA[browsertime 17.3.0]]></title>
<link>https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#17.3.0</link>
<guid>https://github.com/sitespeedio/browsertime/blob/main/CHANGELOG.md#17.3.0</guid>
<pubDate>Sat, 26 Mar 2022 00:00:00 GMT</pubDate>
<description><![CDATA[<h3>Added</h3>
<ul>
<li>On Linux you can use taskset to assing FFMPEG to specific CPUs using <code>--videoParams.taskset &quot;0,5,7,9-11&quot; </code>. It will start FFMPEG with <code>taskset -c &lt;CPUS&gt;</code> to pin FFMPG to specific CPU(s). Specify a numerical list of processors. The list may contain multiple items, separated by comma, and ranges. For example, &quot;0,5,7,9-11&quot;. Use it together with isolcpus. Added in <a href="https://github.com/sitespeedio/browsertime/pull/1917">#1917</a>.</li>
</ul>
<ul>
<li>If you use a rooted Samsung A51 you can now choose the CPU speed (min/middle/max) using <code>--android.pinCPUSpeed min|middle|max</code> <a href="https://github.com/sitespeedio/browsertime/pull/1915">#1915</a>.</li>
</ul>
<h3>Fixed</h3>
<ul>
<li>Bumped Selenium-webdriver to 4.8.2 <a href="https://github.com/sitespeedio/browsertime/pull/1916">#1916</a>.</li>
</ul>
]]></description>
<enclosure url="https://www.sitespeed.io/img/logos/browsertime.png" length="0" type="image/png"/>
</item>

View File

@ -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>2023-05-20T03:33:06.771Z</updated>
<updated>2023-05-26T16:07:54.619Z</updated>
<generator>https://github.com/jpmonette/feed</generator>
<author>
<name>Peter Hedenskog</name>
@ -16,6 +16,24 @@
<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 27.6.5]]></title>
<id>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#27.6.5</id>
<link href="https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#27.6.5"/>
<updated>2023-05-26T00:00:00.000Z</updated>
<summary type="html"><![CDATA[<h3>Fixed</h3>
<ul>
<li>Bumped Browsertime with a fix for host-resolver-rules, thank you <a href="https://github.com/atuchin-m">Mikhail</a> for PR <a href="https://github.com/sitespeedio/browsertime/pull/1953">#1953</a>.</li>
</ul>
<ul>
<li>Hopefully fixed the broken manifest file for the Docker containers by updating the Docker build actions to latest versions and added provenance: false.</li>
</ul>
]]></summary>
<author>
<name>Sitespeed.io</name>
<uri>https://www.sitespeed.io</uri>
</author>
</entry>
<entry>
<title type="html"><![CDATA[sitespeed.io 27.6.4]]></title>
<id>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#27.6.4</id>
@ -165,24 +183,6 @@
<ul>
<li>Prepare to add support for the sitespeed.io API where you can launch tests on other servers. This is not ready yet but a makes it easier for me to test the upcoming functionality.</li>
</ul>
]]></summary>
<author>
<name>Sitespeed.io</name>
<uri>https://www.sitespeed.io</uri>
</author>
</entry>
<entry>
<title type="html"><![CDATA[sitespeed.io 27.3.1]]></title>
<id>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#27.3.1</id>
<link href="https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#27.3.1"/>
<updated>2023-04-28T00:00:00.000Z</updated>
<summary type="html"><![CDATA[<h3>Fixed</h3>
<ul>
<li>Fix broken --firstParty parameter as reported in <a href="https://github.com/sitespeedio/sitespeed.io/issues/3822">#3822</a> and fixed in <a href="https://github.com/sitespeedio/sitespeed.io/pull/3823">#3823</a></li>
</ul>
<ul>
<li>Fix broken crawler <a href="https://github.com/sitespeedio/sitespeed.io/pull/3820">#3820</a>.</li>
</ul>
]]></summary>
<author>
<name>Sitespeed.io</name>

View File

@ -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>Sat, 20 May 2023 03:33:06 GMT</lastBuildDate>
<lastBuildDate>Fri, 26 May 2023 16:07:54 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,21 @@
<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 27.6.5]]></title>
<link>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#27.6.5</link>
<guid>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#27.6.5</guid>
<pubDate>Fri, 26 May 2023 00:00:00 GMT</pubDate>
<description><![CDATA[<h3>Fixed</h3>
<ul>
<li>Bumped Browsertime with a fix for host-resolver-rules, thank you <a href="https://github.com/atuchin-m">Mikhail</a> for PR <a href="https://github.com/sitespeedio/browsertime/pull/1953">#1953</a>.</li>
</ul>
<ul>
<li>Hopefully fixed the broken manifest file for the Docker containers by updating the Docker build actions to latest versions and added provenance: false.</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 27.6.4]]></title>
<link>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#27.6.4</link>
@ -141,21 +156,6 @@
<ul>
<li>Prepare to add support for the sitespeed.io API where you can launch tests on other servers. This is not ready yet but a makes it easier for me to test the upcoming functionality.</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 27.3.1]]></title>
<link>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#27.3.1</link>
<guid>https://github.com/sitespeedio/sitespeed.io/blob/main/CHANGELOG.md#27.3.1</guid>
<pubDate>Fri, 28 Apr 2023 00:00:00 GMT</pubDate>
<description><![CDATA[<h3>Fixed</h3>
<ul>
<li>Fix broken --firstParty parameter as reported in <a href="https://github.com/sitespeedio/sitespeed.io/issues/3822">#3822</a> and fixed in <a href="https://github.com/sitespeedio/sitespeed.io/pull/3823">#3823</a></li>
</ul>
<ul>
<li>Fix broken crawler <a href="https://github.com/sitespeedio/sitespeed.io/pull/3820">#3820</a>.</li>
</ul>
]]></description>
<enclosure url="https://www.sitespeed.io/img/logos/sitespeed.io.png" length="0" type="image/png"/>
</item>