📦 Update dependency chromedriver to v130
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| chromedriver | 119.0.1 -> 130.0.0 |
See all other Renovate PRs on the Dependency Dashboard
How to resolve breaking changes
This PR may introduce breaking changes that require manual intervention. In such cases, you will need to check out this branch, fix the cause of the breakage, and commit the fix to ensure a green CI build. To check out and update this PR, follow the steps below:
# Check out the PR branch
git checkout -b renovate/major-chrome-and-chromedriver main
git pull https://github.com/ampproject/amphtml.git renovate/major-chrome-and-chromedriver
# Directly make fixes and commit them
amp lint --fix # For lint errors in JS files
amp prettify --fix # For prettier errors in non-JS files
# Edit source code in case of new compiler warnings / errors
# Push the changes to the branch
git push [email protected]:ampproject/amphtml.git renovate/major-chrome-and-chromedriver:renovate/major-chrome-and-chromedriver
Release Notes
giggio/node-chromedriver (chromedriver)
v130.0.0
v129.0.4
v129.0.3
v129.0.2
v129.0.1
v129.0.0
v128.0.3
v128.0.2
v128.0.1
v128.0.0
v127.0.3
v127.0.2
v127.0.1
v127.0.0
v126.0.5
v126.0.4
v126.0.3
v126.0.2
v126.0.1
v126.0.0
v125.0.3
v125.0.2
v125.0.1
v125.0.0
v124.0.4
v124.0.3
v124.0.2
v124.0.1
v124.0.0
v123.0.4
v123.0.3
v123.0.2
v123.0.1
v123.0.0
v122.0.6
v122.0.5
v122.0.4
v122.0.3
v122.0.2
v122.0.1
v122.0.0
v121.0.2
v121.0.1
v121.0.0
v120.0.2
v120.0.1
v120.0.0
Configuration
📅 Schedule: Branch creation - "after 12am every weekday" in timezone America/Los_Angeles, Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
â™» Rebasing: Never, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
- [ ] If you want to rebase/retry this PR, check this box
This PR was generated by Mend Renovate. View the repository job log.
Looks like there was a change in Chrome that breaks some of these tests. The breakage results from a difference here:
https://github.com/ampproject/amphtml/blob/main/extensions/amp-skimlinks/0.1/test/helpers.js#L13-L18
In Chrome 119, creating an <a> element inside the FakeWindow's Document, then setting its anchor.href to a schema-agnostic URL (e.g., anchor.href = '//a.com/';, ancho.href = 'a.com';) correctly changes the anchor.hostname field as well.
In Chrome 120, these URLs result in an empty string in anchor.hostname.
This issue only manifests itself inside the FakeWindow, it works as expected in a real window.
The one thing I noticed is that win.document.baseURI is set to http://localhost:6789/path/to/test/file.html in 119, and to about:blank in 120. I'm not sure if this is relevant, or how to continue this investigation
Help! @ychsieh @erwinmombay