sitespeed.io 37.4.0 → 37.4.1
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 +5 -1
- package/lib/plugins/html/renderer.js +1 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
|
|
2
2
|
# CHANGELOG - sitespeed.io (we use [semantic versioning](https://semver.org))
|
|
3
3
|
|
|
4
|
+
## 37.4.1 - 2025-04-10
|
|
5
|
+
### Fixed
|
|
6
|
+
* If testing one page fails, make sure that we still can genereate the HTML [#4495](https://github.com/sitespeedio/sitespeed.io/pull/4495).
|
|
7
|
+
|
|
4
8
|
## 37.4.0 - 2025-04-09
|
|
5
9
|
### Added
|
|
6
|
-
* Updated
|
|
10
|
+
* Updated Docker container with Firefox 137, Chrome 135 and Edge 135 [#4494](https://github.com/sitespeedio/sitespeed.io/pull/4494).
|
|
7
11
|
|
|
8
12
|
## 37.3.2 - 2025-03-21
|
|
9
13
|
### Fixed
|
|
@@ -30,6 +30,7 @@ export function renderTemplate(templateName, locals) {
|
|
|
30
30
|
return getTemplate(templateName)(locals);
|
|
31
31
|
} catch (error) {
|
|
32
32
|
log.error('Could not generate %s, %s', templateName, error.message);
|
|
33
|
+
return `Could not generate ${templateName} error: ${error.message}`;
|
|
33
34
|
}
|
|
34
35
|
}
|
|
35
36
|
export function addTemplate(templateName, templateString) {
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sitespeed.io",
|
|
3
|
-
"version": "37.4.
|
|
3
|
+
"version": "37.4.1",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "sitespeed.io",
|
|
9
|
-
"version": "37.4.
|
|
9
|
+
"version": "37.4.1",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"dependencies": {
|
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"sitespeed.io": "./bin/sitespeed.js",
|
|
6
6
|
"sitespeed.io-wpr": "./bin/browsertimeWebPageReplay.js"
|
|
7
7
|
},
|
|
8
|
-
"version": "37.4.
|
|
8
|
+
"version": "37.4.1",
|
|
9
9
|
"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.",
|
|
10
10
|
"keywords": [
|
|
11
11
|
"performance",
|