browsertime 23.4.2 → 23.4.4
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/core/engine/index.js +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Browsertime changelog (we do [semantic versioning](https://semver.org))
|
|
2
2
|
|
|
3
|
+
## 23.4.4 - 2024-12-18
|
|
4
|
+
### Fixed
|
|
5
|
+
* A more robust gnirehtet check when you run your Android test [#2223](https://github.com/sitespeedio/browsertime/pull/2223).
|
|
6
|
+
|
|
7
|
+
## 23.4.3 - 2024-12-11
|
|
8
|
+
### Fixed
|
|
9
|
+
* Update to USB power profiling 1.5.0 [#2221](https://github.com/sitespeedio/browsertime/pull/2221).
|
|
10
|
+
|
|
3
11
|
## 23.4.2 - 2024-12-10
|
|
4
12
|
### Fixed
|
|
5
13
|
* Improve how we compute the power consumption numbers from the Firefox Profiler output PR by [Nazım Can Altınova](https://github.com/canova) [#2220](https://github.com/sitespeedio/browsertime/pull/2220)
|
package/lib/core/engine/index.js
CHANGED
|
@@ -93,7 +93,7 @@ export class Engine {
|
|
|
93
93
|
await android._init();
|
|
94
94
|
this.android = android;
|
|
95
95
|
|
|
96
|
-
if (options.gnirehtet) {
|
|
96
|
+
if (options.gnirehtet === true) {
|
|
97
97
|
this.gnirehtet = new Gnirehtet(options);
|
|
98
98
|
await this.gnirehtet.start();
|
|
99
99
|
}
|
|
@@ -520,7 +520,7 @@ export class Engine {
|
|
|
520
520
|
}
|
|
521
521
|
}
|
|
522
522
|
|
|
523
|
-
if (options.gnirehtet && this.gnirehtet) {
|
|
523
|
+
if (options.gnirehtet === true && this.gnirehtet) {
|
|
524
524
|
await this.gnirehtet.stop();
|
|
525
525
|
}
|
|
526
526
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "browsertime",
|
|
3
3
|
"description": "Get performance metrics from your web page using Browsertime.",
|
|
4
|
-
"version": "23.4.
|
|
4
|
+
"version": "23.4.4",
|
|
5
5
|
"bin": "./bin/browsertime.js",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"types": "./types/scripting.d.ts",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"lodash.pick": "4.4.0",
|
|
32
32
|
"lodash.set": "4.3.2",
|
|
33
33
|
"selenium-webdriver": "4.26.0",
|
|
34
|
-
"usb-power-profiling": "1.
|
|
34
|
+
"usb-power-profiling": "1.5.0",
|
|
35
35
|
"yargs": "17.7.2"
|
|
36
36
|
},
|
|
37
37
|
"optionalDependencies": {
|