Skip to content

Commit 260e9e8

Browse files
authored
[build] Upload Selenium Grid 4.39.0 (#3038)
Co-authored-by: Selenium CI Bot <[email protected]>
1 parent 4526158 commit 260e9e8

File tree

8 files changed

+27
-13
lines changed

8 files changed

+27
-13
lines changed

‎.github/workflows/release-chrome-for-testing-versions.yml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ on:
3131
browser-versions:
3232
description: 'List browser version to build. E.g: [130, 131]'
3333
required: true
34-
default: '[113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142]'
34+
default: '[113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143]'
3535
push-image:
3636
description: 'Push image after testing successfully'
3737
required: true

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ on:
3131
browser-versions:
3232
description: 'List browser version to build. E.g: [130, 131]'
3333
required: true
34-
default: '[95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142]'
34+
default: '[95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143]'
3535
push-image:
3636
description: 'Push image after testing successfully'
3737
required: true

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ on:
3131
browser-versions:
3232
description: 'List browser version to build. E.g: [130, 131]'
3333
required: true
34-
default: '[114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142]'
34+
default: '[114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143]'
3535
push-image:
3636
description: 'Push image after testing successfully'
3737
required: true

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ on:
3131
browser-versions:
3232
description: 'List browser version to build. E.g: [130, 131]'
3333
required: true
34-
default: '[98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144]'
34+
default: '[98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145]'
3535
push-image:
3636
description: 'Push image after testing successfully'
3737
required: true

‎Makefile‎

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
NAME := $(or $(NAME),$(NAME),selenium)
22
CURRENT_DATE := $(shell date '+%Y%m%d')
33
BUILD_DATE := $(or $(BUILD_DATE),$(BUILD_DATE),$(CURRENT_DATE))
4-
BASE_RELEASE := $(or $(BASE_RELEASE),$(BASE_RELEASE),selenium-4.38.0)
5-
BASE_VERSION := $(or $(BASE_VERSION),$(BASE_VERSION),4.38.0)
6-
BINDING_VERSION := $(or $(BINDING_VERSION),$(BINDING_VERSION),4.38.0)
4+
BASE_RELEASE := $(or $(BASE_RELEASE),$(BASE_RELEASE),selenium-4.39.0)
5+
BASE_VERSION := $(or $(BASE_VERSION),$(BASE_VERSION),4.39.0)
6+
BINDING_VERSION := $(or $(BINDING_VERSION),$(BINDING_VERSION),4.39.0)
77
BASE_RELEASE_NIGHTLY := $(or $(BASE_RELEASE_NIGHTLY),$(BASE_RELEASE_NIGHTLY),nightly)
8-
BASE_VERSION_NIGHTLY := $(or $(BASE_VERSION_NIGHTLY),$(BASE_VERSION_NIGHTLY),4.39.0-SNAPSHOT)
9-
VERSION := $(or $(VERSION),$(VERSION),4.38.0)
10-
MVN_SELENIUM_VERSION := $(or $(MVN_SELENIUM_VERSION),$(MVN_SELENIUM_VERSION),4.38.0)
8+
BASE_VERSION_NIGHTLY := $(or $(BASE_VERSION_NIGHTLY),$(BASE_VERSION_NIGHTLY),4.40.0-SNAPSHOT)
9+
VERSION := $(or $(VERSION),$(VERSION),4.39.0)
10+
MVN_SELENIUM_VERSION := $(or $(MVN_SELENIUM_VERSION),$(MVN_SELENIUM_VERSION),4.39.0)
1111
TAG_VERSION := $(VERSION)-$(BUILD_DATE)
1212
CHART_VERSION_NIGHTLY := $(or $(CHART_VERSION_NIGHTLY),$(CHART_VERSION_NIGHTLY),1.0.0-nightly)
1313
NAMESPACE := $(or $(NAMESPACE),$(NAMESPACE),$(NAME))

‎tests/build-backward-compatible/browser-matrix.yml‎

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,23 @@
11
matrix:
22
browser:
3+
'145':
4+
FIREFOX_VERSION: 145.0.2
5+
FIREFOX_PLATFORMS: linux/amd64,linux/arm64
36
'144':
47
FIREFOX_VERSION: 144.0.2
58
FIREFOX_PLATFORMS: linux/amd64,linux/arm64
69
'143':
710
FIREFOX_VERSION: 143.0.4
811
FIREFOX_PLATFORMS: linux/amd64,linux/arm64
12+
CFT_VERSION: 143.0.7499.40
13+
CHROME_VERSION: google-chrome-stable=143.0.7499.40-1
14+
EDGE_VERSION: microsoft-edge-stable=143.0.3650.66-1
915
'142':
1016
FIREFOX_VERSION: 142.0.1
1117
FIREFOX_PLATFORMS: linux/amd64,linux/arm64
12-
CHROME_VERSION: google-chrome-stable=142.0.7444.59-1
13-
CFT_VERSION: 142.0.7444.59
14-
EDGE_VERSION: microsoft-edge-stable=142.0.3595.53-1
18+
CHROME_VERSION: google-chrome-stable=142.0.7444.175-1
19+
CFT_VERSION: 142.0.7444.175
20+
EDGE_VERSION: microsoft-edge-stable=142.0.3595.94-1
1521
'141':
1622
EDGE_VERSION: microsoft-edge-stable=141.0.3537.99-1
1723
CHROME_VERSION: google-chrome-stable=141.0.7390.122-1

‎tests/build-backward-compatible/firefox-matrix.yml‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
matrix:
22
browser:
3+
'145':
4+
FIREFOX_VERSION: 145.0.2
35
'144':
46
FIREFOX_VERSION: 144.0.2
57
'143':

‎tests/build-backward-compatible/selenium-matrix.yml‎

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ matrix:
55
BASE_VERSION: 4.35.0-SNAPSHOT
66
VERSION: 4.35.0-SNAPSHOT
77
BINDING_VERSION: nightly
8+
4.39.0:
9+
BASE_RELEASE: selenium-4.39.0
10+
BASE_VERSION: 4.39.0
11+
VERSION: 4.39.0
12+
BINDING_VERSION: 4.39.0
13+
browser: []
814
4.38.0:
915
BASE_RELEASE: selenium-4.38.0
1016
BASE_VERSION: 4.38.0

0 commit comments

Comments
 (0)