browsertime 22.5.0 → 22.5.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 +8 -0
- package/index.js +3 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Browsertime changelog (we do [semantic versioning](https://semver.org))
|
|
2
2
|
|
|
3
|
+
## 22.5.2 - 2024-06-24
|
|
4
|
+
### Fixed
|
|
5
|
+
* Updated Selenium dependencies [#2146](https://github.com/sitespeedio/browsertime/pull/2146).
|
|
6
|
+
|
|
7
|
+
## 22.5.1 - 2024-06-24
|
|
8
|
+
### Fixed
|
|
9
|
+
* Fixed exporting to make IntelliSense/Code completion work again [#2145](https://github.com/sitespeedio/browsertime/pull/2145).
|
|
10
|
+
|
|
3
11
|
## 22.5.0 - 2024-06-14
|
|
4
12
|
### Added
|
|
5
13
|
* Updated the Docker container to include Chrome 126 and Firefox 127. Chromedriver has been updated to 126 [#2141](https://github.com/sitespeedio/browsertime/pull/2141).
|
package/index.js
CHANGED
|
@@ -14,3 +14,6 @@ export const browserScripts = {
|
|
|
14
14
|
|
|
15
15
|
export { Engine as BrowsertimeEngine } from './lib/core/engine/index.js';
|
|
16
16
|
export { configure as configureLogging } from './lib/support/logging.js';
|
|
17
|
+
|
|
18
|
+
export { Commands as BrowsertimeCommands } from './lib/core/engine/commands.js';
|
|
19
|
+
export { Context as BrowsertimeContext } from './lib/core/engine/context.js';
|
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": "22.5.
|
|
4
|
+
"version": "22.5.2",
|
|
5
5
|
"bin": "./bin/browsertime.js",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"types": "./types/scripting.d.ts",
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"@cypress/xvfb": "1.2.4",
|
|
10
10
|
"@devicefarmer/adbkit": "3.2.6",
|
|
11
|
-
"@sitespeed.io/chromedriver": "126.0.6478-55",
|
|
11
|
+
"@sitespeed.io/chromedriver": "126.0.6478-55 ",
|
|
12
12
|
"@sitespeed.io/edgedriver": "125.0.2535-47",
|
|
13
13
|
"@sitespeed.io/geckodriver": "0.34.0",
|
|
14
14
|
"@sitespeed.io/throttle": "5.0.0",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"lodash.merge": "4.6.2",
|
|
31
31
|
"lodash.pick": "4.4.0",
|
|
32
32
|
"lodash.set": "4.3.2",
|
|
33
|
-
"selenium-webdriver": "4.
|
|
33
|
+
"selenium-webdriver": "4.22.0",
|
|
34
34
|
"usb-power-profiling": "^1.2.0",
|
|
35
35
|
"yargs": "17.7.2"
|
|
36
36
|
},
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"jimp": "0.22.12"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@types/selenium-webdriver": "4.1.
|
|
41
|
+
"@types/selenium-webdriver": "4.1.23",
|
|
42
42
|
"ava": "6.1.2",
|
|
43
43
|
"clean-jsdoc-theme": "4.2.17",
|
|
44
44
|
"eslint": "8.57.0",
|