diff --git a/.gitlab/ci/rules.gitlab-ci.yml b/.gitlab/ci/rules.gitlab-ci.yml index 18b1cb69d99..83262e15f55 100644 --- a/.gitlab/ci/rules.gitlab-ci.yml +++ b/.gitlab/ci/rules.gitlab-ci.yml @@ -265,6 +265,14 @@ - "GITALY_SERVER_VERSION" - "lib/gitlab/setup_helper.rb" +# versions of all these components can affect cloud native deployment +.cng-dependency-patterns: &cng-dependency-patterns + - GITLAB_WORKHORSE_VERSION + - GITLAB_SHELL_VERSION + - GITLAB_KAS_VERSION + - GITLAB_PAGES_VERSION + - GITALY_SERVER_VERSION + .workhorse-patterns: &workhorse-patterns - ".gitlab/ci/version.yml" - ".gitlab/ci/workhorse.gitlab-ci.yml" @@ -1318,6 +1326,8 @@ - <<: *if-merge-request-labels-run-review-app - <<: *if-merge-request changes: *qa-patterns + - <<: *if-merge-request + changes: *cng-dependency-patterns - <<: *if-merge-request-targeting-stable-branch changes: *setup-test-env-patterns - <<: *if-default-refs @@ -1887,14 +1897,14 @@ when: never - <<: *if-security-schedule when: never + - <<: *if-merge-request + changes: *cng-dependency-patterns - !reference [".qa:rules:e2e-blocking-base-before", rules] - !reference [".prevent-tier-2-and-below", rules] - !reference [".qa:rules:e2e-blocking-base-after", rules] - !reference [".qa:rules:e2e-schedule-nightly", rules] - <<: *if-dot-com-gitlab-org-schedule - variables: - <<: *qa-e2e-test-schedule-variables - QA_RUN_IN_PARALLEL: "true" + variables: *qa-e2e-test-schedule-variables .qa:rules:test-on-omnibus-nightly: rules: diff --git a/CHANGELOG.md b/CHANGELOG.md index ed93579a464..35be130f23f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1083,6 +1083,13 @@ entry. - [Quarantine a flaky test](https://gitlab.com/gitlab-org/gitlab/-/commit/c932e35efdc0e3c6f316a3c2d37045e115ce8cd5) ([merge request](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/176452)) - [Finalize migration BackfillRemoteDevelopmentAgentConfigsProjectId](https://gitlab.com/gitlab-org/gitlab/-/commit/da4c63d7aab3685c3fbe9d1e48f68ba2162a0b5e) ([merge request](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/172769)) +## 17.8.3 (2025-02-21) + +### Fixed (2 changes) + +- [Use primary DB when authenticating via job token in jobs API](https://gitlab.com/gitlab-org/gitlab/-/commit/6eee5c6811cac82981252280f1b08316ae8c1fd5) ([merge request](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/181872)) +- [Revert stricter workhorse route regexes](https://gitlab.com/gitlab-org/gitlab/-/commit/aba07e94e0587dd378dccbdf18dfe839f09078bf) ([merge request](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/181358)) + ## 17.8.2 (2025-02-11) ### Fixed (3 changes) @@ -1567,6 +1574,12 @@ entry. - [Remove default on `group_saved_replies_flag feature flag](https://gitlab.com/gitlab-org/gitlab/-/commit/75d49fe13646e1e0d3b68233ac4a965c86853917) ([merge request](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/175647)) - [Remove use_actual_plan_in_license_check flag](https://gitlab.com/gitlab-org/gitlab/-/commit/b8c3fe16aedb69c82ff52d1c695d72e933c4b946) ([merge request](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/175649)) +## 17.7.5 (2025-02-21) + +### Fixed (1 change) + +- [Revert stricter workhorse route regexes](https://gitlab.com/gitlab-org/gitlab/-/commit/9f1a05217022094de570ca4e4afd5b96b9b68c56) ([merge request](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/181359)) + ## 17.7.4 (2025-02-11) ### Security (8 changes) diff --git a/app/assets/javascripts/ci/job_details/job_app.vue b/app/assets/javascripts/ci/job_details/job_app.vue index 1e4e255c19e..758f61e4970 100644 --- a/app/assets/javascripts/ci/job_details/job_app.vue +++ b/app/assets/javascripts/ci/job_details/job_app.vue @@ -330,10 +330,7 @@ export default { class="rca-bar-component gl-fixed gl-left-0 gl-flex gl-w-full gl-items-center" data-testid="rca-bar-component" > -
+
{ diff --git a/app/assets/javascripts/ml/experiment_tracking/components/candidate_list.vue b/app/assets/javascripts/ml/experiment_tracking/components/candidate_list.vue index a23455bd1fc..8a548a463c2 100644 --- a/app/assets/javascripts/ml/experiment_tracking/components/candidate_list.vue +++ b/app/assets/javascripts/ml/experiment_tracking/components/candidate_list.vue @@ -1,6 +1,6 @@