summaryrefslogtreecommitdiff
path: root/data/deprecations/14-8-ci-build-variables.yml
diff options
context:
space:
mode:
Diffstat (limited to 'data/deprecations/14-8-ci-build-variables.yml')
-rw-r--r--data/deprecations/14-8-ci-build-variables.yml21
1 files changed, 18 insertions, 3 deletions
diff --git a/data/deprecations/14-8-ci-build-variables.yml b/data/deprecations/14-8-ci-build-variables.yml
index 52c7ecf6c52..a87c6a2fa17 100644
--- a/data/deprecations/14-8-ci-build-variables.yml
+++ b/data/deprecations/14-8-ci-build-variables.yml
@@ -1,12 +1,27 @@
- name: "`CI_BUILD_*` predefined variables"
announcement_milestone: "14.8"
announcement_date: "2021-02-22"
- removal_milestone: "15.0"
- removal_date: "2022-05-22"
+ removal_milestone: "16.0"
+ removal_date: "2023-04-22"
breaking_change: true
reporter: dhershkovitch
body: |
- The predefined CI/CD variables that start with `CI_BUILD_*` were deprecated in GitLab 9.0, and will be removed in GitLab 15.0. If you still use these variables, be sure to change to the current [`CI_JOB_*` predefined variables](https://docs.gitlab.com/ee/ci/variables/predefined_variables.html) which are identical (except for the updated name).
+ The predefined CI/CD variables that start with `CI_BUILD_*` were deprecated in GitLab 9.0, and will be removed in GitLab 16.0. If you still use these variables, be sure to change to the replacement [predefined variables](https://docs.gitlab.com/ee/ci/variables/predefined_variables.html) which are functionally identical:
+
+ | Removed variable | Replacement variable |
+ | --------------------- |------------------------ |
+ | `CI_BUILD_BEFORE_SHA` | `CI_COMMIT_BEFORE_SHA` |
+ | `CI_BUILD_ID` | `CI_JOB_ID` |
+ | `CI_BUILD_MANUAL` | `CI_JOB_MANUAL` |
+ | `CI_BUILD_NAME` | `CI_JOB_NAME` |
+ | `CI_BUILD_REF` | `CI_COMMIT_SHA` |
+ | `CI_BUILD_REF_NAME` | `CI_COMMIT_REF_NAME` |
+ | `CI_BUILD_REF_SLUG` | `CI_COMMIT_REF_SLUG` |
+ | `CI_BUILD_REPO` | `CI_REPOSITORY_URL` |
+ | `CI_BUILD_STAGE` | `CI_JOB_STAGE` |
+ | `CI_BUILD_TAG` | `CI_COMMIT_TAG` |
+ | `CI_BUILD_TOKEN` | `CI_JOB_TOKEN` |
+ | `CI_BUILD_TRIGGERED` | `CI_PIPELINE_TRIGGERED` |
# The following items are not published on the docs page, but may be used in the future.
stage: Verify
tiers: [Free, Premium, Ultimate]