Skip to content
代码片段 群组 项目
未验证 提交 3748716e 编辑于 作者: Andrejs Cunskis's avatar Andrejs Cunskis 提交者: GitLab
浏览文件

Bump chrome version to 119

上级 51fc0a72
No related branches found
No related tags found
无相关合并请求
...@@ -183,7 +183,7 @@ variables: ...@@ -183,7 +183,7 @@ variables:
CI_FETCH_REPO_GIT_STRATEGY: "none" CI_FETCH_REPO_GIT_STRATEGY: "none"
DEBIAN_VERSION: "bullseye" DEBIAN_VERSION: "bullseye"
UBI_VERSION: "8.6" UBI_VERSION: "8.6"
CHROME_VERSION: "113" CHROME_VERSION: "119"
DOCKER_VERSION: "24.0.5" DOCKER_VERSION: "24.0.5"
RUBYGEMS_VERSION: "3.4" RUBYGEMS_VERSION: "3.4"
GO_VERSION: "1.20" GO_VERSION: "1.20"
......
...@@ -87,7 +87,6 @@ start-review-app-pipeline: ...@@ -87,7 +87,6 @@ start-review-app-pipeline:
# https://gitlab.com/gitlab-org/gitlab/-/issues/387183 # https://gitlab.com/gitlab-org/gitlab/-/issues/387183
inherit: inherit:
variables: variables:
- CHROME_VERSION
- REGISTRY_GROUP - REGISTRY_GROUP
- REGISTRY_HOST - REGISTRY_HOST
- REVIEW_APPS_DOMAIN - REVIEW_APPS_DOMAIN
...@@ -96,6 +95,8 @@ start-review-app-pipeline: ...@@ -96,6 +95,8 @@ start-review-app-pipeline:
- REVIEW_APPS_IMAGE - REVIEW_APPS_IMAGE
- RUBY_VERSION - RUBY_VERSION
- DEBIAN_VERSION - DEBIAN_VERSION
- DOCKER_VERSION
- CHROME_VERSION
# These variables are set in the pipeline schedules. # These variables are set in the pipeline schedules.
# They need to be explicitly passed on to the child pipeline. # They need to be explicitly passed on to the child pipeline.
......
...@@ -129,7 +129,7 @@ ...@@ -129,7 +129,7 @@
create(:project, :with_ci_minutes, amount_used: 300, namespace: subgroup, shared_runners_enabled: true) create(:project, :with_ci_minutes, amount_used: 300, namespace: subgroup, shared_runners_enabled: true)
end end
it 'shows projects inside the subgroup' do it 'shows projects inside the subgroup', quarantine: "https://gitlab.com/gitlab-org/gitlab/-/issues/437680" do
visit_usage_quotas_page visit_usage_quotas_page
expect(page).to have_content(project.full_name) expect(page).to have_content(project.full_name)
...@@ -205,7 +205,8 @@ ...@@ -205,7 +205,8 @@
visit_usage_quotas_page('pipelines-quota-tab') visit_usage_quotas_page('pipelines-quota-tab')
end end
it 'sorts projects list by compute used in descending order' do it 'sorts projects list by compute used in descending order',
quarantine: "https://gitlab.com/gitlab-org/gitlab/-/issues/437680" do
within_testid('pipelines-quota-tab-project-table') do within_testid('pipelines-quota-tab-project-table') do
expect(page).to have_content("Project") expect(page).to have_content("Project")
expect(page).to have_content("Shared runner duration") expect(page).to have_content("Shared runner duration")
...@@ -224,7 +225,7 @@ ...@@ -224,7 +225,7 @@
end end
end end
context 'with pagination' do context 'with pagination', quarantine: "https://gitlab.com/gitlab-org/gitlab/-/issues/437680" do
include_context 'when user is allowed to see usage quotas' include_context 'when user is allowed to see usage quotas'
let(:per_page) { 1 } let(:per_page) { 1 }
......
ARG DOCKER_VERSION=24.0.5 ARG DOCKER_VERSION=24.0.5
ARG CHROME_VERSION=113 ARG CHROME_VERSION=119
ARG RUBY_VERSION=3.0 ARG RUBY_VERSION=3.0
ARG QA_BUILD_TARGET=ee ARG QA_BUILD_TARGET=ee
......
...@@ -205,7 +205,10 @@ ...@@ -205,7 +205,10 @@
describe 'not showing personalization questions on group creation when it is enabled' do describe 'not showing personalization questions on group creation when it is enabled' do
before do before do
stub_application_setting(hide_third_party_offers: true) stub_application_setting(hide_third_party_offers: true)
visit new_group_path(anchor: 'create-group-pane')
# If visiting directly via path, personalization setting is not being picked up correctly
visit new_group_path
click_link 'Create group'
end end
it 'does not render personalization questions' do it 'does not render personalization questions' do
...@@ -350,10 +353,16 @@ ...@@ -350,10 +353,16 @@
visit path visit path
end end
it_behaves_like 'dirty submit form', [{ form: '.js-general-settings-form', input: 'input[name="group[name]"]', submit: 'button[type="submit"]' }, it_behaves_like 'dirty submit form', [
{ form: '.js-general-settings-form', input: '#group_visibility_level_0', submit: 'button[type="submit"]' }, { form: '.js-general-settings-form', input: 'input[name="group[name]"]', submit: 'button[type="submit"]' },
{ form: '.js-general-permissions-form', input: '#group_request_access_enabled', submit: 'button[type="submit"]' }, { form: '.js-general-settings-form', input: '#group_visibility_level_0', submit: 'button[type="submit"]' },
{ form: '.js-general-permissions-form', input: 'input[name="group[two_factor_grace_period]"]', submit: 'button[type="submit"]' }] { form: '.js-general-permissions-form', input: '#group_request_access_enabled', submit: 'button[type="submit"]' },
{
form: '.js-general-permissions-form',
input: 'input[name="group[two_factor_grace_period]"]',
submit: 'button[type="submit"]'
}
]
it 'saves new settings' do it 'saves new settings' do
page.within('.gs-general') do page.within('.gs-general') do
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册