browsertime 17.10.1 → 17.10.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
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Browsertime changelog (we do [semantic versioning](https://semver.org))
|
|
2
2
|
|
|
3
|
+
## 17.10.2 - 2022-05-26
|
|
4
|
+
### Fixed
|
|
5
|
+
* Fix for--host-resolver-rules, thank you [Mikhail](https://github.com/atuchin-m) for PR [#1953](https://github.com/sitespeedio/browsertime/pull/1953).
|
|
6
|
+
|
|
3
7
|
## 17.10.1 - 2022-05-19
|
|
4
8
|
### Fixed
|
|
5
9
|
* Updated code to collect Interaction To Next Paint [#1952](https://github.com/sitespeedio/browsertime/pull/1952). This new version follow updated version(s) of Google Web Vitals.
|
|
@@ -8,15 +8,15 @@ import { isAndroidConfigured } from '../../android/index.js';
|
|
|
8
8
|
const log = intel.getLogger('browsertime.chrome');
|
|
9
9
|
|
|
10
10
|
const CHROME_AMD_EDGE_INTERNAL_PHONE_HOME = [
|
|
11
|
-
'
|
|
12
|
-
'
|
|
13
|
-
'
|
|
14
|
-
'
|
|
15
|
-
'
|
|
16
|
-
'
|
|
17
|
-
'
|
|
18
|
-
'
|
|
19
|
-
'
|
|
11
|
+
'MAP cache.pack.google.com 127.0.0.1',
|
|
12
|
+
'MAP clients1.google.com 127.0.0.1',
|
|
13
|
+
'MAP update.googleapis.com 127.0.0.1',
|
|
14
|
+
'MAP content-autofill.googleapis.com 127.0.0.1',
|
|
15
|
+
'MAP redirector.gvt1.com 127.0.0.1',
|
|
16
|
+
'MAP laptop-updates.brave.com 127.0.0.1',
|
|
17
|
+
'MAP offlinepages-pa.googleapis.com 127.0.0.1',
|
|
18
|
+
'MAP edge.microsoft.com 127.0.0.1',
|
|
19
|
+
'MAP optimizationguide-pa.googleapis.com 127.0.0.1'
|
|
20
20
|
];
|
|
21
21
|
|
|
22
22
|
const CHROME_FEATURES_THAT_WE_DISABLES = [
|
|
@@ -107,7 +107,9 @@ export function setupChromiumOptions(
|
|
|
107
107
|
);
|
|
108
108
|
if (argumentsWithHostResolverRules.length === 0) {
|
|
109
109
|
seleniumOptions.addArguments(
|
|
110
|
-
|
|
110
|
+
`--host-resolver-rules="${CHROME_AMD_EDGE_INTERNAL_PHONE_HOME.join(
|
|
111
|
+
','
|
|
112
|
+
)}"`
|
|
111
113
|
);
|
|
112
114
|
}
|
|
113
115
|
}
|