Skip to content

Bump version 4.28.1 for Java and Python #2150

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/dotnet/SeleniumDocs/BaseTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class BaseTest
protected IWebDriver driver;
protected Uri GridUrl;
private Process _webserverProcess;
private const string ServerJarName = "selenium-server-4.28.0.jar";
private const string ServerJarName = "selenium-server-4.28.1.jar";
private static readonly string BaseDirectory = AppContext.BaseDirectory;
private const string RelativePathToGrid = "../../../../../";
private readonly string _examplesDirectory = Path.GetFullPath(Path.Combine(BaseDirectory, RelativePathToGrid));
Expand Down
6 changes: 3 additions & 3 deletions examples/python/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def server_old(request):
os.path.abspath(__file__)
)
),
"selenium-server-4.28.0.jar",
"selenium-server-4.28.1.jar",
)

def wait_for_server(url, timeout):
Expand Down Expand Up @@ -200,7 +200,7 @@ def server():
)
)
),
"selenium-server-4.28.0.jar",
"selenium-server-4.28.1.jar",
)

args = [
Expand Down Expand Up @@ -273,7 +273,7 @@ def grid_server():
)
)
),
"selenium-server-4.28.0.jar",
"selenium-server-4.28.1.jar",
)

args = [
Expand Down
Binary file not shown.
2 changes: 1 addition & 1 deletion website_and_docs/layouts/downloads/list.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<div class="card-body">
<p class="card-text">
Latest stable version
<a href="https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.28.0/selenium-server-4.28.0.jar">4.28.0</a>
<a href="https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.28.0/selenium-server-4.28.1.jar">4.28.1</a>
</p>
<p class="card-text">
To use the Selenium Server in a Grid configuration see the
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ <h2 id="bindings" class="card-title">Selenium Clients and WebDriver Language Bin
</p>
<p class="card-text m-0 pb-1">
Stable:
<a href="https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.28.0/selenium-java-4.28.0.zip" class="card-link">
4.28.0 (January 20, 2025)
<a href="https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.28.0/selenium-java-4.28.1.zip" class="card-link">
4.28.1 (January 23, 2025)
</a>
</p>
<p class="card-text m-0 pb-1">
Expand Down Expand Up @@ -111,7 +111,7 @@ <h2 id="bindings" class="card-title">Selenium Clients and WebDriver Language Bin
<p class="card-text m-0 pb-1">
Stable:
<a href="https://pypi.python.org/pypi/selenium" class="card-link">
4.28.0 (January 20, 2024)
4.28.1 (January 23, 2024)
</a>
</p>
<p class="card-text m-0 pb-1">
Expand Down
Loading