browsertime 24.0.0-alpha.5 → 24.0.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 +4 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Browsertime changelog (we do [semantic versioning](https://semver.org))
|
|
2
2
|
|
|
3
|
-
## 24.0.0
|
|
3
|
+
## 24.0.0 - 2025-01-20
|
|
4
4
|
|
|
5
5
|
The 24.0.0 release remove a lot of dependencies. Since we implemented Browsertime the first time, there are many things that are easy to do in modern NodeJS. Those things have now been implemented in Browsertime.
|
|
6
6
|
|
|
@@ -10,7 +10,9 @@ This release would work exactly as before, the only thing that changed is that u
|
|
|
10
10
|
* Moved usb-power-profiling to be an optional package [#2249](https://github.com/sitespeedio/browsertime/pull/2249).
|
|
11
11
|
|
|
12
12
|
### Added
|
|
13
|
-
* Edgedriver
|
|
13
|
+
* Edgedriver 132 [#2236](https://github.com/sitespeedio/browsertime/pull/2254).
|
|
14
|
+
* Chromedriver 132 [#2236](https://github.com/sitespeedio/browsertime/pull/2253).
|
|
15
|
+
* Chrome and Edge 132, Firefox 134 in the Docker container + NodeJS 22 [#2255](https://github.com/sitespeedio/browsertime/pull/2255).
|
|
14
16
|
|
|
15
17
|
### Fixed
|
|
16
18
|
* Replace dependencies with local implementation:
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "browsertime",
|
|
3
3
|
"description": "Get performance metrics from your web page using Browsertime.",
|
|
4
|
-
"version": "24.0.0
|
|
4
|
+
"version": "24.0.0",
|
|
5
5
|
"bin": "./bin/browsertime.js",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"types": "./types/scripting.d.ts",
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"@devicefarmer/adbkit": "3.3.8",
|
|
10
|
-
"@sitespeed.io/chromedriver": "
|
|
11
|
-
"@sitespeed.io/edgedriver": "
|
|
10
|
+
"@sitespeed.io/chromedriver": "132.0.6834-83",
|
|
11
|
+
"@sitespeed.io/edgedriver": "132.0.2957-115",
|
|
12
12
|
"@sitespeed.io/geckodriver": "0.35.0-1",
|
|
13
13
|
"@sitespeed.io/log": "0.2.4",
|
|
14
14
|
"@sitespeed.io/throttle": "5.0.1",
|