Skip to content

Commit ab1f199

Browse files
committed
[ci] Update tag 4.34.0-20250727 in docs and files
[skip test]
1 parent c705c8b commit ab1f199

38 files changed

+308
-312
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ body:
5656
attributes:
5757
label: Docker Selenium version (image tag)
5858
description: What version of Docker Selenium are you using?
59-
placeholder: 4.34.0-20250717? Please use the full tag, avoid "latest"
59+
placeholder: 4.34.0-20250727? Please use the full tag, avoid "latest"
6060
validations:
6161
required: true
6262
- type: input

.github/workflows/release-chrome-versions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ on:
2222
description: 'Build date in format YYYYMMDD. Must provide if reusing base image'
2323
required: false
2424
type: string
25-
default: '20250717'
25+
default: '20250727'
2626
browser-name:
2727
description: 'Browser name to build. E.g: chrome'
2828
required: true

.github/workflows/release-edge-versions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ on:
2222
description: 'Build date in format YYYYMMDD. Must provide if reusing base image'
2323
required: false
2424
type: string
25-
default: '20250717'
25+
default: '20250727'
2626
browser-name:
2727
description: 'Browser name to build. E.g: edge'
2828
required: true

.github/workflows/release-firefox-versions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ on:
2222
description: 'Build date in format YYYYMMDD. Must provide if reusing base image'
2323
required: false
2424
type: string
25-
default: '20250717'
25+
default: '20250727'
2626
browser-name:
2727
description: 'Browser name to build. E.g: firefox'
2828
required: true

.keda/scalers/selenium-grid-scaler.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ triggers:
2828
nodeMaxSessions: 1 # Optional.
2929
enableManagedDownloads: true # Optional.
3030
capabilities: '' # Optional.
31-
overProvisionRatio: '' # Optional.
3231
```
3332
3433
**Parameter list:**
@@ -43,16 +42,13 @@ triggers:
4342
- `nodeMaxSessions` - Number of maximum sessions that can run in parallel on a Node. Update this parameter align with node config `--max-sessions` (`SE_NODE_MAX_SESSIONS`) to have the correct scaling behavior. (Default: `1`, Optional).
4443
- `enableManagedDownloads`- Set this for Node enabled to auto manage files downloaded for a given session on the Node. When the client requests enabling this feature, it can only be assigned to the Node that also enabled it. Otherwise, the request will wait until it timed out. (Default: `true`, Optional).
4544
- `capabilities` - Add more custom capabilities for matching specific Nodes. It should be in JSON string, see [example](https://www.selenium.dev/documentation/grid/configuration/toml_options/#setting-custom-capabilities-for-matching-specific-nodes) (Optional)
46-
- `overProvisionRatio` - The number of overprovisioning ratio to scale more than the actual number of requests. For example, if there are 20 requests for the browser instead of scaling to 20 Nodes, it is able to scale 20% more than the requested, in this case is 24, in this case input value is `0.2` (Optional)
4745

4846
**Trigger Authentication**
4947
- `username` - Username for basic authentication in GraphQL endpoint instead of embedding in the URL. (Optional)
5048
- `password` - Password for basic authentication in GraphQL endpoint instead of embedding in the URL. (Optional)
5149
- `authType` - Type of authentication to be used. This can be set to `Bearer` or `OAuth2` in case Selenium Grid behind an Ingress proxy with other authentication types. (Optional)
5250
- `accessToken` - Access token. This is required when `authType` is set a value. (Optional)
5351

54-
Noted that trigger authentication parameters are able to set in either trigger metadata or trigger authentication. However, if both are set, the trigger authentication will take precedence.
55-
5652
### Example
5753

5854
---

NodeDocker/config.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
# Configs have a mapping between the Docker image to use and the capabilities that need to be matched to
33
# start a container with the given image.
44
configs = [
5-
"selenium/standalone-firefox:4.34.0-20250717", '{"browserName": "firefox", "platformName": "linux"}',
6-
"selenium/standalone-chrome:4.34.0-20250717", '{"browserName": "chrome", "platformName": "linux"}',
7-
"selenium/standalone-edge:4.34.0-20250717", '{"browserName": "MicrosoftEdge", "platformName": "linux"}'
5+
"selenium/standalone-firefox:4.34.0-20250727", '{"browserName": "firefox", "platformName": "linux"}',
6+
"selenium/standalone-chrome:4.34.0-20250727", '{"browserName": "chrome", "platformName": "linux"}',
7+
"selenium/standalone-edge:4.34.0-20250727", '{"browserName": "MicrosoftEdge", "platformName": "linux"}'
88
]
99
# Share configs of volumes, DNS, extra hosts between node-docker and node browser containers
1010
host-config-keys = ["Dns", "DnsOptions", "DnsSearch", "ExtraHosts", "Binds"]
@@ -16,7 +16,7 @@ host-config-keys = ["Dns", "DnsOptions", "DnsSearch", "ExtraHosts", "Binds"]
1616
# socat -4 TCP-LISTEN:2375,fork UNIX-CONNECT:/var/run/docker.sock
1717
url = "http://127.0.0.1:2375"
1818
# Docker image used for video recording
19-
video-image = "selenium/video:ffmpeg-7.1-20250717"
19+
video-image = "selenium/video:ffmpeg-7.1-20250727"
2020

2121
# Uncomment the following section if you are running the node on a separate VM
2222
# Fill out the placeholders with appropriate values

0 commit comments

Comments
 (0)