Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_removal_template.md.erb « templates « removals « data - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c3d7bc499d0ff5a4980d7b23ee34827ba5a03c91 (plain)
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
---
stage: none
group: none
info: "See the Technical Writers assigned to Development Guidelines: https://about.gitlab.com/handbook/product/ux/technical-writing/#assignments-to-development-guidelines"
---

# Removals by version

In each release, GitLab removes features that were [deprecated](deprecations.md) in an earlier release.
Some features cause breaking changes when they are removed.

**{rss}** **To be notified of upcoming breaking changes**,
add this URL to your RSS feed reader: `https://about.gitlab.com/breaking-changes.xml`

<!-- vale off -->

<!--
DO NOT EDIT THIS PAGE DIRECTLY

This page is automatically generated from the YAML files in `/data/removals` by the rake task
located at `lib/tasks/gitlab/docs/compile_removals.rake`.

For removal authors (usually Product Managers and Engineering Managers):

- To add a removal, use the example.yml file in `/data/removals/templates` as a template.
- For more information about authoring removals, check the the removal item guidance:
  https://about.gitlab.com/handbook/marketing/blog/release-posts/#creating-a-removal-entry

For removal reviewers (Technical Writers only):

- To update the removal doc, run: `bin/rake gitlab:docs:compile_removals`
- To verify the removals doc is up to date, run: `bin/rake gitlab:docs:check_removals`
- For more information about updating the removal doc, see the removal doc update guidance:
  https://about.gitlab.com/handbook/marketing/blog/release-posts/#update-the-removals-doc
-->

{::options parse_block_html="true" /}
<% if milestones.any? -%>
  <%- milestones.each do |milestone| %>
## Removed in <%= milestone %>
    <%- entries.select{|entry| entry["removal_milestone"] == milestone}.each do |removal| %>
### <%= removal["title"]%>

<div class="deprecation-notes">
- Announced in: GitLab <span class="milestone"><%= removal["announcement_milestone"]%></span>
<% if removal["breaking_change"] -%>
- This is a [breaking change](https://docs.gitlab.com/ee/update/terminology.html#breaking-change). Review the details carefully before upgrading.
<%- end -%>
<% if removal["issue_url"] -%>
- To discuss this change or learn more, see the [deprecation issue](<%= removal["issue_url"]%>).
<%- end -%>
</div>

<%= removal["body"] -%><%- end -%><%- end -%>
<%- else -%>
Features scheduled for removal will be listed here, sorted by GitLab version.
<% end -%>