sitespeed.io 36.0.3 → 36.1.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 +8 -0
- package/lib/plugins/html/assets/img/gpsi64.png +0 -0
- package/lib/plugins/html/assets/img/ico/sitespeed.io-114.png +0 -0
- package/lib/plugins/html/assets/img/ico/sitespeed.io-144.png +0 -0
- package/lib/plugins/html/assets/img/ico/sitespeed.io-72.png +0 -0
- package/lib/plugins/html/assets/img/pagexray64.png +0 -0
- package/lib/plugins/html/templates/settings.pug +4 -0
- package/lib/plugins/html/templates/url/metrics/lcp.pug +16 -1
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
- package/lib/plugins/html/assets/img/webpagetest64.png +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# CHANGELOG - sitespeed.io (we use [semantic versioning](https://semver.org))
|
|
2
2
|
|
|
3
|
+
## 36.1.0 - 2025-01-25
|
|
4
|
+
### Added
|
|
5
|
+
* Display more LCP information: elementRenderDelay, ttfb, resourceLoadDelay, resourceLoadDuration [#4413](https://github.com/sitespeedio/sitespeed.io/pull/4413).
|
|
6
|
+
* In runtime settings: Show if gnirehtet is used [#4412](https://github.com/sitespeedio/sitespeed.io/pull/4412).
|
|
7
|
+
|
|
8
|
+
### Fixed
|
|
9
|
+
* Tune image size for result images [#4411](https://github.com/sitespeedio/sitespeed.io/pull/4411).
|
|
10
|
+
|
|
3
11
|
## 36.0.3 - 2025-01-23
|
|
4
12
|
### Fixed
|
|
5
13
|
* Fix for uploading files to GCS/S3 that was partly broken in 36.0.0 [#4410](https://github.com/sitespeedio/sitespeed.io/pull/4410).
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -21,7 +21,22 @@ if timings.largestContentfulPaint
|
|
|
21
21
|
td
|
|
22
22
|
b Render time
|
|
23
23
|
td #{h.time.ms(timings.largestContentfulPaint.renderTime)}
|
|
24
|
-
|
|
24
|
+
tr
|
|
25
|
+
td
|
|
26
|
+
b Element render delay
|
|
27
|
+
td #{h.time.ms(timings.largestContentfulPaint.elementRenderDelay)}
|
|
28
|
+
tr
|
|
29
|
+
td
|
|
30
|
+
b TTFB
|
|
31
|
+
td #{h.time.ms(timings.largestContentfulPaint.ttfb)}
|
|
32
|
+
tr
|
|
33
|
+
td
|
|
34
|
+
b Resource delay
|
|
35
|
+
td #{h.time.ms(timings.largestContentfulPaint.resourceLoadDelay)}
|
|
36
|
+
tr
|
|
37
|
+
td
|
|
38
|
+
b Resource load duration
|
|
39
|
+
td #{h.time.ms(timings.largestContentfulPaint.resourceLoadDuration)}
|
|
25
40
|
if renderBlocking && renderBlocking.recalculateStyle.beforeLCP
|
|
26
41
|
tr
|
|
27
42
|
td
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sitespeed.io",
|
|
3
|
-
"version": "36.0
|
|
3
|
+
"version": "36.1.0",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "sitespeed.io",
|
|
9
|
-
"version": "36.0
|
|
9
|
+
"version": "36.1.0",
|
|
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": "36.0
|
|
8
|
+
"version": "36.1.0",
|
|
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",
|
|
Binary file
|