1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 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 144 145 146 147 148 149 150 151 152 153 154 155 156 157
|
---
stage: none
group: Documentation Guidelines
info: For assistance with this Style Guide page, see https://handbook.gitlab.com/handbook/product/ux/technical-writing/#assignments-to-other-projects-and-subjects.
---
# Backport documentation changes
There are two types of backports:
- **Current stable release:** Any maintainer can backport
changes, usually bug fixes but also important documentation changes, into the
current stable release.
- **Older stable releases:** To guarantee the
[maintenance policy](../../policy/maintenance.md) is respected, merging to
older stable releases is restricted to release managers.
## Backport documentation changes to current stable release
To backport documentation changes to the current stable release,
follow the [standard process to contribute to documentation](index.md).
## Backport documentation changes to older releases
WARNING:
You should only rarely consider backporting documentation to older stable releases. Legitimate reasons to backport documentation include legal issues, emergency security fixes, and fixes to content that might prevent users from upgrading or cause data loss.
To backport documentation changes in documentation releases older than the
current stable branch:
1. [Create an issue for the backport.](#create-an-issue)
1. [Create the merge request (MR) to backport the change.](#create-the-merge-request-to-backport-the-change)
1. [Deploy the backport change.](#deploy-the-backport-changes)
### Create an issue
Prerequisites:
- The person requesting the backport does this step. You must have at
least the Developer role for the [Technical Writing project](https://gitlab.com/gitlab-org/technical-writing).
1. Open an [issue in the Technical Writing project](https://gitlab.com/gitlab-org/technical-writing/-/issues/new)
using the [backport changes template](https://gitlab.com/gitlab-org/technical-writing/-/blob/main/.gitlab/issue_templates/backport_changes.md).
1. In the issue, state why the backport is needed. Include:
- The background to this change.
- Which specific documentation versions are changing.
- How the documentation will change.
- Links to any supporting issues or MRs.
1. Ask for the approval of technical writing leadership by creating a comment in
this issue with the following text:
```plaintext
@gitlab-org/tw-leadership could I get your approval for this documentation backport?
```
After the technical writing leadership approves the backport, you can create the
merge request to backport the change.
### Create the merge request to backport the change
Prerequisites:
- The person requesting the backport does this step. You must have at least the
Developer role on the project that needs the backport.
To backport a change, merge your changes into the stable branch of the version
where you want the changes to occur.
1. Open an MR with the backport by following the
[release docs guidelines](https://gitlab.com/gitlab-org/release/docs/-/blob/master/general/patch/engineers.md#backporting-a-bug-fix-in-the-gitlab-project),
and mention the issue you opened before so that they are linked.
1. Assign the MR to a technical writer for review.
1. After the technical writer approves the MR, assign the MR to a release manager
for review and merge.
Mention this issue to the release manager, and provide them with all the context
they need.
For the change to appear in:
- `docs.gitlab.com`, the release manager only has to merge the MR to the stable branch,
and the technical writer needs to [deploy the backport changes](#deploy-the-backport-changes).
- `gitlab.com/help`, the change needs to be part of a GitLab release. The release
manager can include the change in the next release they create. This is an optional step.
### Deploy the backport changes
Prerequisites:
- The technical writer assigned to the backport does this step. You must have at
least the Maintainer role for the [Technical Writing project](https://gitlab.com/gitlab-org/technical-writing).
After the changes are merged to the appropriate stable branch,
you must update the Docker image that holds that version's documentation.
The Docker image determines the contents that are displayed when you select the
version dropdown list in the upper-right corner of the documentation.
Run a [new pipeline](https://gitlab.com/gitlab-org/gitlab-docs/-/pipelines/new)
in the `gitlab-docs` repository for every version of the documentation that needs
an update.
Choose the branch name that matches the stable version, for example `16.11` or `17.0`.
The next step differs depending on which versions the backport change was made to.
#### Backport change made to one of the last three stable branches
If the backport change was made to one of the last three stable branches,
update the main docs site:
1. After the pipeline finishes and the Docker image is updated, go to the
[pipeline schedules](https://gitlab.com/gitlab-org/gitlab-docs/-/pipeline_schedules)
and run the **Build Docker images manually** schedule.
1. A dialog with a link to the **pipelines** page appears. Select that link.
1. Open the **Build Docker images** pipeline you just started, find the
**image:docs-latest** job, and start it manually.
You might have to wait for the
**test:image:docs-latest** job in the **test** stage to finish first.
1. When the **image:docs-latest** job is finished,
[run a new pipeline](https://gitlab.com/gitlab-org/gitlab-docs/-/pipelines/new)
that targets the main branch.
1. After the pipeline finishes, go to `https://docs.gitlab.com` and verify that
the changes are available for the correct version.
#### Backport change made to a version other than the last three stable branches
If the backport change was made to a version other than the last three stable
branches, update the docs archives site:
1. Run a [new pipeline](https://gitlab.com/gitlab-org/gitlab-docs-archives/-/pipelines/new)
in the `gitlab-docs-archives` repository.
1. After the pipeline finishes, go to `https://archives.docs.gitlab.com` and verify
that the changes are available for the correct version.
## View older documentation versions
Previous versions of the documentation are available on `docs.gitlab.com`.
To view a previous version, in the upper-right corner, select the version
number from the dropdown list.
To view versions that are not available on `docs.gitlab.com`:
- View the [documentation archives](https://docs.gitlab.com/archives/).
- Go to the GitLab repository and select the version-specific branch. For example,
the [13.2 branch](https://gitlab.com/gitlab-org/gitlab/-/tree/13-2-stable-ee/doc) has the
documentation for GitLab 13.2.
|