debian-mirror-gitlab/data/removals/templates/_removal_template.md.erb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

49 lines
1.9 KiB
Text
Raw Normal View History

2022-03-02 08:16:31 +05:30
---
stage: none
group: none
info: "See the Technical Writers assigned to Development Guidelines: https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments-to-development-guidelines"
---
2022-07-23 23:45:48 +05:30
# Removals by version
In each release, GitLab removes features that were deprecated in an earlier release.
Some features cause breaking changes when they are removed.
2022-03-02 08:16:31 +05:30
<!-- 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
-->
<% if milestones.any? -%>
<%- milestones.each do |milestone| %>
2022-07-23 23:45:48 +05:30
## Removed in <%= milestone %>
2022-03-02 08:16:31 +05:30
<%- entries.select{|entry| entry["removal_milestone"] == milestone}.each do |removal| %>
### <%= removal["name"]%>
<% if removal["breaking_change"] -%>
2022-04-04 11:22:00 +05:30
2022-03-02 08:16:31 +05:30
WARNING:
2022-07-23 23:45:48 +05:30
This is a [breaking change](https://docs.gitlab.com/ee/development/contributing/#breaking-changes).
Review the details carefully before upgrading.
2022-03-02 08:16:31 +05:30
<%= removal["body"] -%><% else %>
<%= removal["body"] -%><% end %><%- end -%><%- end -%>
<%- else -%>
2022-07-23 23:45:48 +05:30
Features scheduled for removal will be listed here, sorted by GitLab version.
2022-03-02 08:16:31 +05:30
<% end -%>