browsertime 17.9.0 → 17.10.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 CHANGED
@@ -1,11 +1,23 @@
1
1
  # Browsertime changelog (we do [semantic versioning](https://semver.org))
2
2
 
3
+ ## 17.10.0 - 2022-05-19
4
+
5
+ ### Added
6
+ * Chrome, Edge and Firefox 113 [#1946](https://github.com/sitespeedio/browsertime/pull/1946), Chromedriver 113 [#1947](https://github.com/sitespeedio/browsertime/pull/1947) and Edgedriver 113 [#1949](https://github.com/sitespeedio/browsertime/pull/1949).
7
+
8
+ ### Fixed
9
+ * Bugfix for running iPhone Siumlator (and run tests on latest Mac OS) [#1945](https://github.com/sitespeedio/browsertime/pull/1945).
10
+ * Bumped dependencies for Selenium, yargs and jimp [#1950](https://github.com/sitespeedio/browsertime/pull/1950).
11
+
3
12
  ## 17.9.0 - 2022-04-19
4
13
  ### Added
5
14
  * New command to start geckoprofiling when scripting using Firefox. Thank you [KS](https://github.com/92kns) for PR [#1934](https://github.com/sitespeedio/browsertime/pull/1934). This is probably only something you need if you work at Mozilla. There's also a follow PR [#1940](https://github.com/sitespeedio/browsertime/pull/1940) that fixes some of the issues I've been wanted to fix with the Geckoprofiler code.
6
15
 
7
16
  * Use `--enableProfileRun` to make one extra run where metrics aren't collected but Geckoprofiler or Chromes timeline log is turned on. This useful if you are worrying about the trace causing overhead, but you still wan trace from the test/journey. It's a little rough at the moment so it will a follow up in the future [#1943](https://github.com/sitespeedio/browsertime/pull/1943).
8
17
 
18
+ ### Fixed
19
+ * Bump Chrome remote interface and execa [#1941](https://github.com/sitespeedio/browsertime/pull/1941).
20
+
9
21
  ## 17.8.1 - 2022-04-12
10
22
  ### Fixed
11
23
  * Upgraded to Firefox HAR 0.0.10 [#1939](https://github.com/sitespeedio/browsertime/pull/1939).
@@ -1,7 +1,7 @@
1
1
  import path from 'node:path';
2
2
  import util from 'node:util';
3
3
  import fs from 'node:fs';
4
- import { execa } from 'execa';
4
+ import { execaCommand } from 'execa';
5
5
  import intel from 'intel';
6
6
  import { convert } from './convertToMp4.js';
7
7
  const unlink = util.promisify(fs.unlink);
@@ -17,7 +17,7 @@ export class IOSSimulatorRecorder {
17
17
  async start() {
18
18
  log.info('Start IOS Simulator recorder.');
19
19
 
20
- this.xcrunProcess = execa.command(
20
+ this.xcrunProcess = execaCommand(
21
21
  'xcrun simctl io ' +
22
22
  this.options.safari.deviceUDID +
23
23
  ' recordVideo --code=h264 --mask=black --force ' +
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": "17.9.0",
4
+ "version": "17.10.0",
5
5
  "bin": "./bin/browsertime.js",
6
6
  "type": "module",
7
7
  "dependencies": {
8
8
  "@cypress/xvfb": "1.2.4",
9
9
  "@devicefarmer/adbkit": "2.11.3",
10
- "@sitespeed.io/chromedriver": "112.0.5615-28",
11
- "@sitespeed.io/edgedriver": "112.0.1722-34",
10
+ "@sitespeed.io/chromedriver": "113.0.5672-63",
11
+ "@sitespeed.io/edgedriver": "113.0.1774-9",
12
12
  "@sitespeed.io/geckodriver": "0.33.0",
13
13
  "@sitespeed.io/throttle": "5.0.0",
14
14
  "@sitespeed.io/tracium": "0.3.3",
@@ -29,11 +29,11 @@
29
29
  "lodash.merge": "4.6.2",
30
30
  "lodash.pick": "4.4.0",
31
31
  "lodash.set": "4.3.2",
32
- "selenium-webdriver": "4.8.2",
33
- "yargs": "17.7.1"
32
+ "selenium-webdriver": "4.9.2",
33
+ "yargs": "17.7.2"
34
34
  },
35
35
  "optionalDependencies": {
36
- "jimp": "0.22.7"
36
+ "jimp": "0.22.8"
37
37
  },
38
38
  "devDependencies": {
39
39
  "ava": "5.1.0",