From 5cf50495c61a1e67d1d7251ef8c5ad482c708c7f Mon Sep 17 00:00:00 2001
From: GoZ <goz@226961.no-reply.drupal.org>
Date: Mon, 13 Mar 2017 14:35:30 +0100
Subject: [PATCH] Issue #2860096: Remove api doc groups for updates eg.
 updates-8.2.x-to-8.3.x

---
 core/modules/aggregator/aggregator.install         | 18 --------
 core/modules/block/block.install                   |  9 ----
 core/modules/block/block.post_update.php           | 18 --------
 core/modules/comment/comment.install               | 27 -----------
 core/modules/contact/contact.post_update.php       |  8 ----
 .../content_translation.install                    | 18 --------
 .../datetime_range/datetime_range.post_update.php  |  8 ----
 core/modules/editor/editor.post_update.php         |  8 ----
 core/modules/field/field.post_update.php           | 17 -------
 core/modules/hal/hal.install                       |  8 ----
 core/modules/history/history.install               | 10 ----
 core/modules/language/language.post_update.php     |  9 ----
 core/modules/locale/locale.install                 |  9 ----
 core/modules/migrate/migrate.install               |  8 ----
 core/modules/node/node.install                     |  9 ----
 core/modules/path/path.install                     |  8 ----
 .../responsive_image.post_update.php               |  9 ----
 core/modules/rest/rest.install                     | 10 ----
 core/modules/rest/rest.post_update.php             | 10 ----
 core/modules/serialization/serialization.install   | 10 ----
 core/modules/system/system.install                 | 54 ----------------------
 core/modules/system/system.post_update.php         | 18 --------
 core/modules/update/update.install                 |  9 ----
 core/modules/user/user.install                     |  9 ----
 core/modules/user/user.post_update.php             |  9 ----
 core/modules/views/views.install                   | 45 ------------------
 core/modules/views/views.post_update.php           | 54 ----------------------
 27 files changed, 429 deletions(-)

diff --git a/core/modules/aggregator/aggregator.install b/core/modules/aggregator/aggregator.install
index 9e05400..84e9614 100644
--- a/core/modules/aggregator/aggregator.install
+++ b/core/modules/aggregator/aggregator.install
@@ -23,11 +23,6 @@ function aggregator_requirements($phase) {
 }
 
 /**
- * @addtogroup updates-8.0.0-rc
- * @{
- */
-
-/**
  * The simple presence of this update function clears cached field definitions.
  */
 function aggregator_update_8001() {
@@ -35,15 +30,6 @@ function aggregator_update_8001() {
 }
 
 /**
- * @} End of "addtogroup updates-8.0.0-rc".
- */
-
-/**
- * @addtogroup updates-8.2.x
- * @{
- */
-
-/**
  * Make the 'Source feed' field for aggregator items required.
  */
 function aggregator_update_8200() {
@@ -54,7 +40,3 @@ function aggregator_update_8200() {
   $field_definition->setRequired(TRUE);
   $definition_update_manager->updateFieldStorageDefinition($field_definition);
 }
-
-/**
- * @} End of "addtogroup updates-8.2.x".
- */
diff --git a/core/modules/block/block.install b/core/modules/block/block.install
index 106815c..6545a19 100644
--- a/core/modules/block/block.install
+++ b/core/modules/block/block.install
@@ -18,11 +18,6 @@ function block_install() {
 }
 
 /**
- * @addtogroup updates-8.0.0-beta
- * @{
- */
-
-/**
  * Update block visibility context mapping.
  */
 function block_update_8001() {
@@ -122,7 +117,3 @@ function block_update_8003() {
 
   return t('Block settings updated.');
 }
-
-/**
- * @} End of "addtogroup updates-8.0.0-beta".
- */
diff --git a/core/modules/block/block.post_update.php b/core/modules/block/block.post_update.php
index bd0a67c..d5f0852 100644
--- a/core/modules/block/block.post_update.php
+++ b/core/modules/block/block.post_update.php
@@ -6,11 +6,6 @@
  */
 
 /**
- * @addtogroup updates-8.0.0-beta
- * @{
- */
-
-/**
  * Disable all blocks with missing context IDs in block_update_8001().
  */
 function block_post_update_disable_blocks_with_missing_contexts() {
@@ -82,15 +77,6 @@ function block_post_update_disabled_region_update() {
 }
 
 /**
- * @} End of "addtogroup updates-8.0.0-beta".
- */
-
-/**
- * @addtogroup updates-8.2.x
- * @{
- */
-
-/**
  * Fix invalid 'negate' values in block visibility conditions.
  */
 function block_post_update_fix_negate_in_conditions() {
@@ -113,7 +99,3 @@ function block_post_update_fix_negate_in_conditions() {
     }
   }
 }
-
-/**
- * @} End of "addtogroup updates-8.2.x".
- */
diff --git a/core/modules/comment/comment.install b/core/modules/comment/comment.install
index a0d819e..47241c2 100644
--- a/core/modules/comment/comment.install
+++ b/core/modules/comment/comment.install
@@ -114,11 +114,6 @@ function comment_schema() {
 }
 
 /**
- * @addtogroup updates-8.0.0-rc
- * @{
- */
-
-/**
  * Clear caches to fix Comment entity list builder and operations Views field.
  */
 function comment_update_8001() {
@@ -127,10 +122,6 @@ function comment_update_8001() {
 }
 
 /**
- * @} End of "addtogroup updates-8.0.0-rc".
- */
-
-/**
  * Clear caches to fix Comment Views context filter.
  */
 function comment_update_8002() {
@@ -138,11 +129,6 @@ function comment_update_8002() {
 }
 
 /**
- * @addtogroup updates-8.2.x
- * @{
- */
-
-/**
  * Add the 'view_mode' setting to displays having 'comment_default' formatter.
  */
 function comment_update_8200() {
@@ -177,15 +163,6 @@ function comment_update_8200() {
 }
 
 /**
- * @} End of "addtogroup updates-8.2.x".
- */
-
-/**
- * @addtogroup updates-8.3.x
- * @{
- */
-
-/**
  * Update status field.
  */
 function comment_update_8300() {
@@ -207,7 +184,3 @@ function comment_update_8301() {
   $entity_type->set('entity_keys', $keys);
   $definition_update_manager->updateEntityType($entity_type);
 }
-
-/**
- * @} End of "addtogroup updates-8.3.x".
- */
diff --git a/core/modules/contact/contact.post_update.php b/core/modules/contact/contact.post_update.php
index 32469a5..7b3b766 100644
--- a/core/modules/contact/contact.post_update.php
+++ b/core/modules/contact/contact.post_update.php
@@ -7,10 +7,6 @@
 
 use Drupal\contact\Entity\ContactForm;
 
-/**
- * @addtogroup updates-8.1.x-to-8.2.x
- * @{
- */
 
 /**
  * Initialize 'message' and 'redirect' field values to 'contact_form' entities.
@@ -24,7 +20,3 @@ function contact_post_update_add_message_redirect_field_to_contact_form() {
       ->save();
   }
 }
-
-/**
- * @} End of "addtogroup updates-8.1.x-to-8.2.x".
- */
diff --git a/core/modules/content_translation/content_translation.install b/core/modules/content_translation/content_translation.install
index 0f8a184..dc12d9f 100644
--- a/core/modules/content_translation/content_translation.install
+++ b/core/modules/content_translation/content_translation.install
@@ -32,11 +32,6 @@ function content_translation_install() {
 }
 
 /**
- * @addtogroup updates-8.0.0-rc
- * @{
- */
-
-/**
  * Rebuild the routes as the content translation routes have now new names.
  */
 function content_translation_update_8001() {
@@ -44,21 +39,8 @@ function content_translation_update_8001() {
 }
 
 /**
- * @} End of "addtogroup updates-8.0.0-rc".
- */
-
-/**
- * @addtogroup updates-8.0.x
- * @{
- */
-
-/**
  * Clear field type plugin caches to fix image field translatability.
  */
 function content_translation_update_8002() {
   \Drupal::service('plugin.manager.field.field_type')->clearCachedDefinitions();
 }
-
-/**
- * @} End of "addtogroup updates-8.0.x".
- */
diff --git a/core/modules/datetime_range/datetime_range.post_update.php b/core/modules/datetime_range/datetime_range.post_update.php
index 48a866b..180a158 100644
--- a/core/modules/datetime_range/datetime_range.post_update.php
+++ b/core/modules/datetime_range/datetime_range.post_update.php
@@ -5,10 +5,6 @@
  * Post-update functions for Datetime Range module.
  */
 
-/**
- * @addtogroup updates-8.2.x
- * @{
- */
 
 /**
  * Clear caches to ensure schema changes are read.
@@ -16,7 +12,3 @@
 function datetime_range_post_update_translatable_separator() {
   // Empty post-update hook to cause a cache rebuild.
 }
-
-/**
- * @} End of "addtogroup updates-8.2.x".
- */
diff --git a/core/modules/editor/editor.post_update.php b/core/modules/editor/editor.post_update.php
index 3715b6d..9bef620 100644
--- a/core/modules/editor/editor.post_update.php
+++ b/core/modules/editor/editor.post_update.php
@@ -5,17 +5,9 @@
  * Post update functions for Editor.
  */
 
-/**
- * @addtogroup updates-8.2.x
- * @{
- */
 
 /**
  * Clear the render cache to fix file references added by Editor.
  */
 function editor_post_update_clear_cache_for_file_reference_filter() {
 }
-
-/**
- * @} End of "addtogroup updates-8.2.x".
- */
diff --git a/core/modules/field/field.post_update.php b/core/modules/field/field.post_update.php
index 4d0c80b..d6a809e 100644
--- a/core/modules/field/field.post_update.php
+++ b/core/modules/field/field.post_update.php
@@ -9,10 +9,6 @@
 use Drupal\field\Entity\FieldStorageConfig;
 use Drupal\field\Entity\FieldConfig;
 
-/**
- * @addtogroup updates-8.0.0-beta
- * @{
- */
 
 /**
  * Re-save all field storage config objects to add 'custom_storage' property.
@@ -43,15 +39,6 @@ function field_post_update_entity_reference_handler_setting() {
 }
 
 /**
- * @} End of "addtogroup updates-8.0.0-beta".
- */
-
-/**
- * @addtogroup updates-8.1.0
- * @{
- */
-
-/**
  * Adds the 'size' setting for email widgets.
  */
 function field_post_update_email_widget_size_setting() {
@@ -72,7 +59,3 @@ function field_post_update_email_widget_size_setting() {
 
   return t('The new size setting for email widgets has been added.');
 }
-
-/**
- * @} End of "addtogroup updates-8.1.0".
- */
diff --git a/core/modules/hal/hal.install b/core/modules/hal/hal.install
index 6d43112..ea75dcf 100644
--- a/core/modules/hal/hal.install
+++ b/core/modules/hal/hal.install
@@ -5,10 +5,6 @@
  * Update functions for the HAL module.
  */
 
-/**
- * @addtogroup updates-8.2.x-to-8.3.x
- * @{
- */
 
 /**
  * Move 'link_domain' from 'rest.settings' to 'hal.settings'.
@@ -36,7 +32,3 @@ function hal_update_8301() {
   $hal_settings->set('link_domain', $link_domain);
   $hal_settings->save(TRUE);
 }
-
-/**
- * @} End of "addtogroup updates-8.2.x-to-8.3.x".
- */
diff --git a/core/modules/history/history.install b/core/modules/history/history.install
index 8af53fe..85e2fda 100644
--- a/core/modules/history/history.install
+++ b/core/modules/history/history.install
@@ -44,12 +44,6 @@ function history_schema() {
 }
 
 /**
- * @defgroup updates-8.0.x-to-8.1.x Updates from 8.0.x to 8.1.x
- * @{
- * Update functions from 8.0.x to 8.1.x.
- */
-
-/**
  * Change {history}.nid to an unsigned int in order to match {node}.nid.
  */
 function history_update_8101() {
@@ -94,7 +88,3 @@ function history_update_8101() {
   ];
   $schema->addIndex('history', 'nid', ['nid'], $spec);
 }
-
-/**
- * @} End of "defgroup updates-8.0.x-to-8.1.x".
- */
diff --git a/core/modules/language/language.post_update.php b/core/modules/language/language.post_update.php
index d1138d0..f7f9c29 100644
--- a/core/modules/language/language.post_update.php
+++ b/core/modules/language/language.post_update.php
@@ -8,11 +8,6 @@
 use Drupal\Core\Entity\Entity\EntityFormDisplay;
 
 /**
- * @addtogroup updates-8.4.0
- * @{
- */
-
-/**
  * Add the 'include_locked' settings to the 'language_select' widget.
  */
 function language_post_update_language_select_widget() {
@@ -31,7 +26,3 @@ function language_post_update_language_select_widget() {
     }
   }
 }
-
-/**
- * @} End of "addtogroup updates-8.4.0".
- */
diff --git a/core/modules/locale/locale.install b/core/modules/locale/locale.install
index f225a62..225e952 100644
--- a/core/modules/locale/locale.install
+++ b/core/modules/locale/locale.install
@@ -296,11 +296,6 @@ function locale_requirements($phase) {
 }
 
 /**
- * @addtogroup updates-8.3.x
- * @{
- */
-
-/**
  * Delete translation status data in state.
  */
 function locale_update_8300() {
@@ -308,7 +303,3 @@ function locale_update_8300() {
   // the new key value collection.
   \Drupal::state()->delete('locale.translation_status');
 }
-
-/**
- * @} End of "addtogroup updates-8.3.x".
- */
diff --git a/core/modules/migrate/migrate.install b/core/modules/migrate/migrate.install
index 5044726..60fb095 100644
--- a/core/modules/migrate/migrate.install
+++ b/core/modules/migrate/migrate.install
@@ -5,10 +5,6 @@
  * Contains install and update functions for Migrate.
  */
 
-/**
- * @addtogroup updates-8.0.0-beta
- * @{
- */
 
 /**
  * Remove load plugin references from existing migrations.
@@ -21,7 +17,3 @@ function migrate_update_8001() {
     $migration->save(TRUE);
   }
 }
-
-/**
- * @} End of "addtogroup updates-8.0.0-beta".
- */
diff --git a/core/modules/node/node.install b/core/modules/node/node.install
index 3aeff41..4e2c240 100644
--- a/core/modules/node/node.install
+++ b/core/modules/node/node.install
@@ -222,11 +222,6 @@ function node_update_8003() {
 }
 
 /**
- * @addtogroup updates-8.3.x
- * @{
- */
-
-/**
  * Change {node_access}.fallback from an int to a tinyint as it is a boolean.
  */
 function node_update_8300() {
@@ -251,7 +246,3 @@ function node_update_8301() {
   $entity_type->set('entity_keys', $keys);
   $definition_update_manager->updateEntityType($entity_type);
 }
-
-/**
- * @} End of "addtogroup updates-8.3.x".
- */
diff --git a/core/modules/path/path.install b/core/modules/path/path.install
index 7d454a0..f53c799 100644
--- a/core/modules/path/path.install
+++ b/core/modules/path/path.install
@@ -5,10 +5,6 @@
  * Update functions for the path module.
  */
 
-/**
- * @addtogroup updates-8.2.0
- * @{
- */
 
 /**
  * Change the path field to computed for node and taxonomy_term.
@@ -26,7 +22,3 @@ function path_update_8200() {
     }
   }
 }
-
-/**
- * @} End of "addtogroup updates-8.2.0".
- */
diff --git a/core/modules/responsive_image/responsive_image.post_update.php b/core/modules/responsive_image/responsive_image.post_update.php
index d6767f7..33fec71 100644
--- a/core/modules/responsive_image/responsive_image.post_update.php
+++ b/core/modules/responsive_image/responsive_image.post_update.php
@@ -9,11 +9,6 @@
 use Drupal\Core\Entity\Entity\EntityViewDisplay;
 
 /**
- * @addtogroup updates-8.1.x
- * @{
- */
-
-/**
  * Make responsive image formatters dependent on responsive image styles.
  */
 function responsive_image_post_update_recreate_dependencies() {
@@ -26,7 +21,3 @@ function responsive_image_post_update_recreate_dependencies() {
     }
   });
 }
-
-/**
- * @} End of "addtogroup updates-8.1.x".
- */
diff --git a/core/modules/rest/rest.install b/core/modules/rest/rest.install
index ca507ce..32c5b1d 100644
--- a/core/modules/rest/rest.install
+++ b/core/modules/rest/rest.install
@@ -26,12 +26,6 @@ function rest_requirements($phase) {
 }
 
 /**
- * @defgroup updates-8.1.x-to-8.2.x Updates from 8.1.x to 8.2.x
- * @{
- * Update functions from 8.1.x to 8.2.x.
- */
-
-/**
  * Install the REST config entity type and fix old settings-based config.
  *
  * @see rest_post_update_create_rest_resource_config_entities()
@@ -90,7 +84,3 @@ function rest_update_8203() {
   $rest_settings->set('bc_entity_resource_permissions', TRUE)
     ->save(TRUE);
 }
-
-/**
- * @} End of "defgroup updates-8.1.x-to-8.2.x".
- */
diff --git a/core/modules/rest/rest.post_update.php b/core/modules/rest/rest.post_update.php
index ecbc73c..6d45178 100644
--- a/core/modules/rest/rest.post_update.php
+++ b/core/modules/rest/rest.post_update.php
@@ -9,11 +9,6 @@
 use Drupal\rest\RestResourceConfigInterface;
 
 /**
- * @addtogroup updates-8.1.x-to-8.2.x
- * @{
- */
-
-/**
  * Create REST resource configuration entities.
  *
  * @see rest_update_8201()
@@ -66,8 +61,3 @@ function rest_post_update_resource_granularity() {
     }
   }
 }
-
-
-/**
- * @} End of "addtogroup updates-8.1.x-to-8.2.x".
- */
diff --git a/core/modules/serialization/serialization.install b/core/modules/serialization/serialization.install
index 6d45f3c..6c67f75 100644
--- a/core/modules/serialization/serialization.install
+++ b/core/modules/serialization/serialization.install
@@ -31,12 +31,6 @@ function serialization_requirements($phase) {
 }
 
 /**
- * @defgroup updates-8.2.x-to-8.3.x Updates from 8.2.x to 8.3.x
- * @{
- * Update functions from 8.2.x to 8.3.x.
- */
-
-/**
  * @see hal_update_8301()
  */
 function serialization_update_8301() {}
@@ -52,7 +46,3 @@ function serialization_update_8302() {
 
   return t('The REST API will no longer output all values as strings. Integers/booleans will be used where appropriate. If your site depends on these value being strings, <a href="https://www.drupal.org/node/2837696">read the change record to learn how to enable the BC mode.</a>');
 }
-
-/**
- * @} End of "defgroup updates-8.2.x-to-8.3.x".
- */
diff --git a/core/modules/system/system.install b/core/modules/system/system.install
index f9c72f7..614ad9e 100644
--- a/core/modules/system/system.install
+++ b/core/modules/system/system.install
@@ -1091,11 +1091,6 @@ function system_schema() {
 }
 
 /**
- * @addtogroup updates-8.0.0-beta
- * @{
- */
-
-/**
  * Change two fields on the default menu link storage to be serialized data.
  */
 function system_update_8001(&$sandbox = NULL) {
@@ -1725,15 +1720,6 @@ function system_update_8013() {
 }
 
 /**
- * @} End of "addtogroup updates-8.0.0-beta".
- */
-
-/**
- * @addtogroup updates-8.0.0-rc
- * @{
- */
-
-/**
  * Install the Stable base theme if needed.
  */
 function system_update_8014() {
@@ -1753,15 +1739,6 @@ function system_update_8014() {
 }
 
 /**
- * @} End of "addtogroup updates-8.0.0-rc".
- */
-
-/**
- * @addtogroup updates-8.2.0
- * @{
- */
-
-/**
  * Fix configuration overrides to not override non existing keys.
  */
 function system_update_8200(&$sandbox) {
@@ -1792,15 +1769,6 @@ function system_update_8201() {
 }
 
 /**
- * @} End of "addtogroup updates-8.2.0".
- */
-
-/**
- * @addtogroup updates-8.2.3
- * @{
- */
-
-/**
  * Clear caches due to behavior change in MachineName element.
  */
 function system_update_8202() {
@@ -1808,15 +1776,6 @@ function system_update_8202() {
 }
 
 /**
- * @} End of "addtogroup updates-8.2.3".
- */
-
-/**
- * @addtogroup updates-8.3.0
- * @{
- */
-
-/**
  * Add detailed cron logging configuration.
  */
 function system_update_8300() {
@@ -1835,15 +1794,6 @@ function system_update_8301() {
 }
 
 /**
- * @} End of "addtogroup updates-8.3.0".
- */
-
-/**
- * @addtogroup updates-8.4.x
- * @{
- */
-
-/**
  * Move revision metadata fields to the revision table.
  */
 function system_update_8400(&$sandbox) {
@@ -1977,7 +1927,3 @@ function system_update_8400(&$sandbox) {
 
   $sandbox['#finished'] = $sandbox['current'] == $sandbox['max'];
 }
-
-/**
- * @} End of "addtogroup updates-8.4.x".
- */
diff --git a/core/modules/system/system.post_update.php b/core/modules/system/system.post_update.php
index e123f91..b96d3e3 100644
--- a/core/modules/system/system.post_update.php
+++ b/core/modules/system/system.post_update.php
@@ -10,11 +10,6 @@
 use Drupal\Core\Entity\Entity\EntityViewDisplay;
 
 /**
- * @addtogroup updates-8.0.0-beta
- * @{
- */
-
-/**
  * Re-save all configuration entities to recalculate dependencies.
  */
 function system_post_update_recalculate_configuration_entity_dependencies(&$sandbox = NULL) {
@@ -43,10 +38,6 @@ function system_post_update_recalculate_configuration_entity_dependencies(&$sand
 }
 
 /**
- * @} End of "addtogroup updates-8.0.0-beta".
- */
-
-/**
  * Update entity displays to contain the region for each field.
  */
 function system_post_update_add_region_to_entity_displays() {
@@ -67,11 +58,6 @@ function system_post_update_hashes_clear_cache() {
 }
 
 /**
- * @addtogroup updates-8.3.x
- * @{
- */
-
-/**
  * Force plugin definitions to be cleared.
  *
  * @see https://www.drupal.org/node/2802663
@@ -79,7 +65,3 @@ function system_post_update_hashes_clear_cache() {
 function system_post_update_timestamp_plugins() {
   // Empty post-update hook.
 }
-
-/**
- * @} End of "addtogroup uupdates-8.3.x".
- */
diff --git a/core/modules/update/update.install b/core/modules/update/update.install
index d76d09e..c616412 100644
--- a/core/modules/update/update.install
+++ b/core/modules/update/update.install
@@ -150,18 +150,9 @@ function _update_requirement_check($project, $type) {
 }
 
 /**
- * @addtogroup updates-8.1.x
- * @{
- */
-
-/**
  * Rebuild the router to ensure admin/reports/updates/check has CSRF protection.
  */
 function update_update_8001() {
   // Empty update forces a call to drupal_flush_all_caches() which rebuilds the
   // router.
 }
-
-/**
- * @} End of "addtogroup updates-8.1.x".
- */
diff --git a/core/modules/user/user.install b/core/modules/user/user.install
index 330ad14..0af797a 100644
--- a/core/modules/user/user.install
+++ b/core/modules/user/user.install
@@ -87,11 +87,6 @@ function user_install() {
 }
 
 /**
- * @addtogroup updates-8.1.0-beta
- * @{
- */
-
-/**
  * Fix invalid token in the status_blocked email body.
  */
 function user_update_8100() {
@@ -103,7 +98,3 @@ function user_update_8100() {
     $config->set('status_blocked', $mail)->save(TRUE);
   }
 }
-
-/**
- * @} End of "addtogroup updates-8.1.0-beta".
- */
diff --git a/core/modules/user/user.post_update.php b/core/modules/user/user.post_update.php
index cdfa758..3f19b0c 100644
--- a/core/modules/user/user.post_update.php
+++ b/core/modules/user/user.post_update.php
@@ -8,11 +8,6 @@
 use Drupal\user\Entity\Role;
 
 /**
- * @addtogroup updates-8.3.x
- * @{
- */
-
-/**
  * Enforce order of role permissions.
  */
 function user_post_update_enforce_order_of_permissions() {
@@ -25,7 +20,3 @@ function user_post_update_enforce_order_of_permissions() {
   };
   array_map($entity_save, Role::loadMultiple());
 }
-
-/**
- * @} End of "addtogroup updates-8.3.x".
- */
diff --git a/core/modules/views/views.install b/core/modules/views/views.install
index 8801a93..f542416 100644
--- a/core/modules/views/views.install
+++ b/core/modules/views/views.install
@@ -13,11 +13,6 @@ function views_install() {
 }
 
 /**
- * @addtogroup updates-8.0.0-beta
- * @{
- */
-
-/**
  * Update views field plugins.
  */
 function views_update_8001(&$sandbox) {
@@ -311,15 +306,6 @@ function _views_update_argument_map($displays) {
 }
 
 /**
- * @} End of "addtogroup updates-8.0.0-beta".
- */
-
-/**
- * @addtogroup updates-8.0.0-rc
- * @{
- */
-
-/**
  * Clear caches to fix entity operations field.
  */
 function views_update_8003() {
@@ -329,15 +315,6 @@ function views_update_8003() {
 }
 
 /**
- * @} End of "addtogroup updates-8.0.0-rc".
- */
-
-/**
- * @addtogroup updates-8.0.x
- * @{
- */
-
-/**
  * Clear caches due to updated entity views data.
  */
 function views_update_8004() {
@@ -345,15 +322,6 @@ function views_update_8004() {
 }
 
 /**
- * @} End of "addtogroup updates-8.0.x".
- */
-
-/**
- * @addtogroup updates-8.1.0
- * @{
- */
-
-/**
  * Clear views data cache.
  */
 function views_update_8005() {
@@ -390,15 +358,6 @@ function views_update_8101() {
 }
 
 /**
- * @} End of "addtogroup updates-8.1.0".
- */
-
-/**
- * @addtogroup updates-8.2.0
- * @{
- */
-
-/**
  * Rebuild the container to add a new container parameter.
  */
 function views_update_8200() {
@@ -411,7 +370,3 @@ function views_update_8200() {
 function views_update_8201() {
   // Empty update to cause a cache rebuild so that config schema get refreshed.
 }
-
-/**
- * @} End of "addtogroup updates-8.2.0".
- */
diff --git a/core/modules/views/views.post_update.php b/core/modules/views/views.post_update.php
index 49d73c1..e09159e 100644
--- a/core/modules/views/views.post_update.php
+++ b/core/modules/views/views.post_update.php
@@ -10,11 +10,6 @@
 use Drupal\views\Views;
 
 /**
- * @addtogroup updates-8.0.0-beta
- * @{
- */
-
-/**
  * Update the cacheability metadata for all views.
  */
 function views_post_update_update_cacheability_metadata() {
@@ -36,15 +31,6 @@ function views_post_update_update_cacheability_metadata() {
 }
 
 /**
- * @} End of "addtogroup updates-8.0.0-beta".
- */
-
-/**
- * @addtogroup updates-8.0.0-rc
- * @{
- */
-
-/**
  * Update some views fields that were previously duplicated.
  */
 function views_post_update_cleanup_duplicate_views_data() {
@@ -138,15 +124,6 @@ function views_post_update_cleanup_duplicate_views_data() {
 }
 
 /**
- * @} End of "addtogroup updates-8.0.0-rc".
- */
-
-/**
- * @addtogroup updates-8.0.x
- * @{
- */
-
-/**
  * Include field formatter dependencies in a view when the formatter is used.
  */
 function views_post_update_field_formatter_dependencies() {
@@ -157,15 +134,6 @@ function views_post_update_field_formatter_dependencies() {
 }
 
 /**
- * @} End of "addtogroup updates-8.0.x".
- */
-
-/**
- * @addtogroup updates-8.1.x
- * @{
- */
-
-/**
  * Fix views with dependencies on taxonomy terms that don't exist.
  */
 function views_post_update_taxonomy_index_tid() {
@@ -180,15 +148,6 @@ function views_post_update_taxonomy_index_tid() {
 }
 
 /**
- * @} End of "addtogroup updates-8.1.x".
- */
-
-/**
- * @addtogroup updates-8.2.x
- * @{
- */
-
-/**
  * Fix views with serializer dependencies.
  */
 function views_post_update_serializer_dependencies() {
@@ -244,15 +203,6 @@ function views_post_update_grouped_filters() {
 }
 
 /**
- * @} End of "addtogroup updates-8.2.x".
- */
-
-/**
- * @addtogroup updates-8.3.x
- * @{
- */
-
-/**
  * Fix table names for revision metadata fields.
  */
 function views_post_update_revision_metadata_fields() {
@@ -263,7 +213,3 @@ function views_post_update_revision_metadata_fields() {
     $view->save();
   });
 }
-
-/**
- * @} End of "addtogroup updates-8.3.x".
- */
-- 
2.8.1

