Skip to content

docker: bump selenium/standalone-edge from 145.0 to 147.0#9

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/docker/selenium/standalone-edge-147.0
Open

docker: bump selenium/standalone-edge from 145.0 to 147.0#9
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/docker/selenium/standalone-edge-147.0

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Apr 13, 2026

Bumps selenium/standalone-edge from 145.0 to 147.0.

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Summary by CodeRabbit

  • Chores
    • Updated testing infrastructure with a newer version of the Selenium Edge browser automation tools.

Bumps selenium/standalone-edge from 145.0 to 147.0.

---
updated-dependencies:
- dependency-name: selenium/standalone-edge
  dependency-version: '147.0'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Apr 13, 2026

Labels

The following labels could not be found: automated, docker. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@coderabbitai
Copy link
Copy Markdown

coderabbitai Bot commented Apr 13, 2026

📝 Walkthrough

Walkthrough

Updated the Docker base image from selenium/standalone-edge:145.0 to selenium/standalone-edge:147.0 in the Dockerfile. No other build steps, runtime configuration, or commands were modified.

Changes

Cohort / File(s) Summary
Base image version update
Dockerfile
Bumped Selenium Edge base image version from 145.0 to 147.0.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

🚥 Pre-merge checks | ✅ 3
✅ Passed checks (3 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title directly and specifically describes the main change: bumping the selenium/standalone-edge Docker image from version 145.0 to 147.0, which matches the Dockerfile modification.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch dependabot/docker/selenium/standalone-edge-147.0

Comment @coderabbitai help to get the list of available commands and usage tips.

@codecov-commenter
Copy link
Copy Markdown

Welcome to Codecov 🎉

Once you merge this PR into your default branch, you're all set! Codecov will compare coverage reports and display results in all future pull requests.

Thanks for integrating Codecov - We've got you covered ☂️

Copy link
Copy Markdown

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🧹 Nitpick comments (1)
Dockerfile (1)

1-1: Use a digest-pinned base image instead of floating tags for reproducible builds.

Floating version tags like :147.0 can change if the image is rebuilt, causing unexpected drift in builds. Pin to a digest to ensure the exact same image is always used:

-FROM selenium/standalone-edge:147.0
+FROM selenium/standalone-edge:147.0@sha256:<digest>

To find the digest: docker pull selenium/standalone-edge:147.0 && docker inspect --format='{{index .RepoDigests 0}}' selenium/standalone-edge:147.0

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@Dockerfile` at line 1, Replace the floating base image tag in the Dockerfile
(the line "FROM selenium/standalone-edge:147.0") with a digest-pinned reference
(sha256 digest) so the build is reproducible; obtain the digest by running the
suggested commands (docker pull selenium/standalone-edge:147.0 && docker inspect
--format='{{index .RepoDigests 0}}' selenium/standalone-edge:147.0) and update
the FROM line to use the returned repo@sha256:... value.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Inline comments:
In `@Dockerfile`:
- Line 1: The Dockerfile uses a non-existent image tag
"selenium/standalone-edge:147.0" in its FROM line; change that tag to a
published version such as "selenium/standalone-edge:145.0" (or another available
tag) so the image can be pulled successfully, or hold the current tag until the
official 147.0 release is published and then update the FROM reference
accordingly.

---

Nitpick comments:
In `@Dockerfile`:
- Line 1: Replace the floating base image tag in the Dockerfile (the line "FROM
selenium/standalone-edge:147.0") with a digest-pinned reference (sha256 digest)
so the build is reproducible; obtain the digest by running the suggested
commands (docker pull selenium/standalone-edge:147.0 && docker inspect
--format='{{index .RepoDigests 0}}' selenium/standalone-edge:147.0) and update
the FROM line to use the returned repo@sha256:... value.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: aa349cc4-0093-4b11-990e-d7d8e2f49390

📥 Commits

Reviewing files that changed from the base of the PR and between ec01323 and a25775a.

📒 Files selected for processing (1)
  • Dockerfile

Comment thread Dockerfile
@@ -1,4 +1,4 @@
FROM selenium/standalone-edge:145.0
FROM selenium/standalone-edge:147.0
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

🧩 Analysis chain

🌐 Web query:

Selenium standalone-edge 147.0 release notes and breaking changes

💡 Result:

No official Selenium standalone-edge Docker image tagged with exactly "147.0" exists as of 2026-04-13. The highest Edge version available is 145.0 (tags like selenium/standalone-edge:145.0-20260222, 145.0-edgedriver-145.0-grid-4.41.0-20260222). Current nightly images use Edge 146.0.3856.97. Microsoft Edge 147 (e.g., 147.0.3912.60 stable as of April 10, 2026) and matching EdgeDriver (beta/dev channels) are available, but no corresponding Selenium Docker release notes or images for 147.0 have been published yet. Selenium Grid 4.41.0 supports CDP v143-v145, with no specific mention of Edge 147 compatibility or breaking changes.

Citations:


🌐 Web query:

Selenium Python 4.43.0 compatibility with Microsoft Edge 147 WebDriver

💡 Result:

Yes, Selenium Python 4.43.0 is compatible with Microsoft Edge version 147 using the corresponding msedgedriver.

Citations:


Docker image selenium/standalone-edge:147.0 does not exist.

The tag is not published in the Selenium Docker registry as of April 2026. The highest available version is 145.0. Use selenium/standalone-edge:145.0 or wait for the official 147.0 release. Selenium Python 4.43.0 is compatible with Edge 147, so version alignment is not a concern once a valid image tag is available.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@Dockerfile` at line 1, The Dockerfile uses a non-existent image tag
"selenium/standalone-edge:147.0" in its FROM line; change that tag to a
published version such as "selenium/standalone-edge:145.0" (or another available
tag) so the image can be pulled successfully, or hold the current tag until the
official 147.0 release is published and then update the FROM reference
accordingly.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant