sitespeed.io 21.2.1 → 21.2.2
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 -0
- package/lib/sitespeed.js +1 -1
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# CHANGELOG - sitespeed.io (we use [semantic versioning](https://semver.org))
|
|
2
2
|
|
|
3
|
+
## 21.2.2 - 2021-12-23
|
|
4
|
+
### Fixed
|
|
5
|
+
* Fix the error introduced in 21.2.0 for "Include page summary URL in the result JSON"
|
|
6
|
+
[#3525](https://github.com/sitespeedio/sitespeed.io/pull/3525).
|
|
7
|
+
|
|
3
8
|
## 21.2.1 - 2021-12-22
|
|
4
9
|
### Fixed
|
|
5
10
|
* It turns out that Firefox 95 doesn't work with the HAR export trigger and the workaround that worked in Firefox 94 seems to not work in 95 see https://github.com/sitespeedio/browsertime/issues/1671#issuecomment-999412035. That's why we are reverting to Firefox 94 in the Docker containers.
|
package/lib/sitespeed.js
CHANGED
|
@@ -164,7 +164,7 @@ module.exports = {
|
|
|
164
164
|
? resultUrls.reportSummaryUrl() + '/index.html'
|
|
165
165
|
: '',
|
|
166
166
|
pageSummaryUrl:
|
|
167
|
-
url && resultUrls.hasBaseUrl()
|
|
167
|
+
url && resultUrls.hasBaseUrl() && !options.multi
|
|
168
168
|
? resultUrls.absoluteSummaryPageUrl(url) + 'index.html'
|
|
169
169
|
: '',
|
|
170
170
|
localPath: storageManager.getBaseDir()
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sitespeed.io",
|
|
3
|
-
"version": "21.2.
|
|
3
|
+
"version": "21.2.2",
|
|
4
4
|
"lockfileVersion": 2,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "sitespeed.io",
|
|
9
|
-
"version": "21.2.
|
|
9
|
+
"version": "21.2.2",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@google-cloud/storage": "5.8.3",
|
package/package.json
CHANGED