sitespeed.io 38.4.0 → 38.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,6 +1,21 @@
1
1
 
2
2
  # CHANGELOG - sitespeed.io (we use [semantic versioning](https://semver.org))
3
3
 
4
+ ## 38.5.0 - 2025-10-18
5
+ ### Added
6
+ * Updated the Docker container to use Firefox 144 [#4554](https://github.com/sitespeedio/sitespeed.io/pull/4554).
7
+ * Added Browsertime 25.3 [#4559](https://github.com/sitespeedio/sitespeed.io/pull/4559) with support for removing some headers in the HAR file (more info about that soon).
8
+
9
+ ### Fixed
10
+ * Updated dev dependencies [#4556](https://github.com/sitespeedio/sitespeed.io/pull/4556).
11
+ * Updated to Axe-core 4.11.0 [#4555)](https://github.com/sitespeedio/sitespeed.io/pull/4555).
12
+ * Updated Ora dependency [#4557](https://github.com/sitespeedio/sitespeed.io/pull/4557).
13
+ * Updated the log dependency [#4558](https://github.com/sitespeedio/sitespeed.io/pull/4558). The new version remove the color for error logs.
14
+
15
+ ## 38.4.1 - 2025-10-14
16
+ ### Fixed
17
+ * Set max width 400 pixel of the screenshot showing in the Grafana annotation (Grafana changed how they render the annotation long time ago) [#4553](https://github.com/sitespeedio/sitespeed.io/pull/4553) and [the fix](https://github.com/sitespeedio/sitespeed.io/commit/dbcdc72bedd0a2be5c9031675783fe3f3b73f288).
18
+
4
19
  ## 38.4.0 - 2025-10-12
5
20
  ### Added
6
21
  * Upgraded to Chrome/Edge 141 [#4551](https://github.com/sitespeedio/sitespeed.io/pull/4551).
package/Dockerfile CHANGED
@@ -1,4 +1,4 @@
1
- FROM sitespeedio/webbrowsers:chrome-141.0-firefox-143.0-edge-141.0
1
+ FROM sitespeedio/webbrowsers:chrome-141.0-firefox-144.0-edge-141.0
2
2
 
3
3
  ARG TARGETPLATFORM=linux/amd64
4
4
 
@@ -6,7 +6,6 @@ export function getAnnotationMessage(
6
6
  usingBrowsertime,
7
7
  options
8
8
  ) {
9
- const screenshotSize = options.mobile ? 'height=200px' : 'width=100%';
10
9
  const resultPageUrl = absolutePagePath + 'index.html';
11
10
  let screenshotPath;
12
11
  if (screenShotsEnabledInBrowsertime) {
@@ -36,7 +35,7 @@ export function getAnnotationMessage(
36
35
 
37
36
  let message =
38
37
  screenShotsEnabledInBrowsertime && screenshotsEnabledForDatasource
39
- ? `<a href='${resultPageUrl}' target='_blank'><img src='${screenshotPath}' ${screenshotSize}></a><p><a href='${resultPageUrl}'>Result</a> - <a href='${harPath}'>Download HAR</a></p>`
38
+ ? `<a href='${resultPageUrl}' target='_blank'><img src='${screenshotPath}' style='max-width:400px'></a><p><a href='${resultPageUrl}'>Result</a> - <a href='${harPath}'>Download HAR</a></p>`
40
39
  : `<a href='${resultPageUrl}' target='_blank'>Result ${options.browsertime.iterations} run${s}</a>`;
41
40
 
42
41
  if (extraMessage) {