diff --git a/doc/api/packages/composer.md b/doc/api/packages/composer.md
index 98c75586c82605456b6e02c9b518d09037b06146..e2b2e5d2a63c64bc4b4d8c578b32f96eea1f3827 100644
--- a/doc/api/packages/composer.md
+++ b/doc/api/packages/composer.md
@@ -266,8 +266,6 @@ Example response:
 
 ## Download a package archive
 
-> - Authorization for this endpoint was [introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/331601) in GitLab 14.10.
-
 Download a Composer package. This URL is provided in the [v1](#v1-package-metadata)
 or [v2 package metadata](#v2-package-metadata)
 response. A `.zip` file extension must be in the request.
@@ -293,6 +291,3 @@ curl --user <username>:<personal_access_token> "https://gitlab.example.com/api/v
 ```
 
 This writes the downloaded file to `package.tar.gz` in the current directory.
-
-NOTE:
-This endpoint requires authorization in GitLab 14.10 and later. In GitLab 14.9 and earlier, it was publicly accessible.
diff --git a/doc/api/packages/conan.md b/doc/api/packages/conan.md
index 1f1ed881af9e67eb1fa3096d59701d390aaa19ff..657211e84be260a4279302a83e1e7f28505161a9 100644
--- a/doc/api/packages/conan.md
+++ b/doc/api/packages/conan.md
@@ -58,8 +58,6 @@ for Conan recipes.
 
 ## Ping
 
-> - Introduced in GitLab 12.2.
-
 Ping the GitLab Conan repository to verify availability:
 
 ```plaintext
@@ -78,8 +76,6 @@ Example response:
 
 ## Search
 
-> - Introduced in GitLab 12.4.
-
 Search the instance for Conan packages by name:
 
 ```plaintext
@@ -112,8 +108,6 @@ Example response:
 
 ## Authenticate
 
-> - Introduced in GitLab 12.2.
-
 Returns a JWT to be used for Conan requests in a Bearer header:
 
 ```shell
@@ -138,8 +132,6 @@ eyJhbGciOiJIUzI1NiIiheR5cCI6IkpXVCJ9.eyJhY2Nlc3NfdG9rZW4iOjMyMTQyMzAsqaVzZXJfaWQ
 
 ## Check Credentials
 
-> - Introduced in GitLab 12.4.
-
 Checks the validity of Basic Auth credentials or a Conan JWT generated from [`/authenticate`](#authenticate).
 
 ```plaintext
@@ -158,8 +150,6 @@ ok
 
 ## Recipe Snapshot
 
-> - Introduced in GitLab 12.5.
-
 This returns the snapshot of the recipe files for the specified Conan recipe. The snapshot is a list
 of filenames with their associated md5 hash.
 
@@ -190,8 +180,6 @@ Example response:
 
 ## Package Snapshot
 
-> - Introduced in GitLab 12.5.
-
 This returns the snapshot of the package files for the specified Conan recipe with the specified
 Conan reference. The snapshot is a list of filenames with their associated md5 hash.
 
@@ -223,8 +211,6 @@ Example response:
 
 ## Recipe Manifest
 
-> - Introduced in GitLab 12.5.
-
 The manifest is a list of recipe filenames with their associated download URLs.
 
 ```plaintext
@@ -257,8 +243,6 @@ the project-level route, the returned URLs contain `/projects/:id`.
 
 ## Package Manifest
 
-> - Introduced in GitLab 12.5.
-
 The manifest is a list of package filenames with their associated download URLs.
 
 ```plaintext
@@ -292,8 +276,6 @@ the project-level route, the returned URLs contain `/projects/:id`.
 
 ## Recipe Download URLs
 
-> - Introduced in GitLab 12.5.
-
 Recipe download URLs return a list of recipe filenames with their associated download URLs.
 This attribute is the same payload as the [recipe manifest](#recipe-manifest) endpoint.
 
@@ -327,8 +309,6 @@ the project-level route, the returned URLs contain `/projects/:id`.
 
 ## Package Download URLs
 
-> - Introduced in GitLab 12.5.
-
 Package download URLs return a list of package filenames with their associated download URLs.
 This URL is the same payload as the [package manifest](#package-manifest) endpoint.
 
@@ -363,8 +343,6 @@ the project-level route, the returned URLs contain `/projects/:id`.
 
 ## Recipe Upload URLs
 
-> - Introduced in GitLab 12.5.
-
 Given a list of recipe filenames and file sizes, a list of URLs to upload each file is returned.
 
 ```plaintext
@@ -409,8 +387,6 @@ the project-level route, the returned URLs contain `/projects/:id`.
 
 ## Package Upload URLs
 
-> - Introduced in GitLab 12.5.
-
 Given a list of package filenames and file sizes, a list of URLs to upload each file is returned.
 
 ```plaintext
@@ -458,8 +434,6 @@ the project-level route, the returned URLs contain `/projects/:id`.
 
 ## Download a Recipe file
 
-> - Introduced in GitLab 12.6.
-
 Download a recipe file to the package registry. You must use a download URL that the
 [recipe download URLs endpoint](#recipe-download-urls)
 returned.
@@ -491,8 +465,6 @@ This example writes to `conanfile.py` in the current directory.
 
 ## Upload a Recipe file
 
-> - Introduced in GitLab 12.6.
-
 Upload a recipe file to the package registry. You must use an upload URL that the
 [recipe upload URLs endpoint](#recipe-upload-urls)
 returned.
@@ -521,8 +493,6 @@ curl --request PUT \
 
 ## Download a Package file
 
-> - Introduced in GitLab 12.6.
-
 Download a package file to the package registry. You must use a download URL that the
 [package download URLs endpoint](#package-download-urls)
 returned.
@@ -556,8 +526,6 @@ This example writes to `conaninfo.txt` in the current directory.
 
 ## Upload a Package file
 
-> - Introduced in GitLab 12.6.
-
 Upload a package file to the package registry. You must use an upload URL that the
 [package upload URLs endpoint](#package-upload-urls)
 returned.
@@ -588,8 +556,6 @@ curl --request PUT \
 
 ## Delete a Package (delete a Conan recipe)
 
-> - Introduced in GitLab 12.5.
-
 Delete the Conan recipe and package files from the registry:
 
 ```plaintext
diff --git a/doc/api/packages/debian.md b/doc/api/packages/debian.md
index 51c59ee2ed94c43b22c212cc9e4abc8015b42359..d533e3428881f8f92aae63d09104712586d9c1f0 100644
--- a/doc/api/packages/debian.md
+++ b/doc/api/packages/debian.md
@@ -8,10 +8,8 @@ info: To determine the technical writer assigned to the Stage/Group associated w
 
 DETAILS:
 **Tier:** Free, Premium, Ultimate
-**Offering:** Self-managed, GitLab Dedicated
+**Offering:** Self-managed
 
-> - Debian API [introduced](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/42670) in GitLab 13.5.
-> - Debian group API [introduced](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/66188) in GitLab 14.2.
 > - [Deployed behind a feature flag](../../user/feature_flags.md), disabled by default.
 
 This is the API documentation for [Debian](../../user/packages/debian_repository/index.md).
@@ -50,7 +48,6 @@ See [Authenticate to the Debian Package Repositories](../../user/packages/debian
 
 ## Upload a package file
 
-> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/62028) in GitLab 14.0.
 > - Upload with explicit distribution and component [introduced](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/101838) in GitLab 15.9.
 
 Upload a Debian package file:
@@ -84,8 +81,6 @@ curl --request PUT \
 
 ## Download a package
 
-> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/64923) in GitLab 14.2.
-
 Download a package file.
 
 ```plaintext
@@ -146,8 +141,6 @@ The examples in this document all use the project-level prefix.
 
 ## Download a distribution Release file
 
-> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/64067) in GitLab 14.1.
-
 Download a Debian distribution file.
 
 ```plaintext
@@ -174,8 +167,6 @@ This writes the downloaded file using the remote filename in the current directo
 
 ## Download a signed distribution Release file
 
-> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/64067) in GitLab 14.1.
-
 Download a signed Debian distribution file.
 
 ```plaintext
@@ -202,8 +193,6 @@ This writes the downloaded file using the remote filename in the current directo
 
 ## Download a release file signature
 
-> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/64923) in GitLab 14.2.
-
 Download a Debian release file signature.
 
 ```plaintext
@@ -230,8 +219,6 @@ This writes the downloaded file using the remote filename in the current directo
 
 ## Download a packages index
 
-> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/64923) in GitLab 14.2.
-
 Download a packages index.
 
 ```plaintext
diff --git a/doc/api/packages/debian_group_distributions.md b/doc/api/packages/debian_group_distributions.md
index 65ce4a2fad36bc5dd33efd1776e17e4fa2e6bc4c..3eaf6e6cadee2b5bb5188866fceba17b5ccbc90c 100644
--- a/doc/api/packages/debian_group_distributions.md
+++ b/doc/api/packages/debian_group_distributions.md
@@ -8,9 +8,8 @@ info: To determine the technical writer assigned to the Stage/Group associated w
 
 DETAILS:
 **Tier:** Free, Premium, Ultimate
-**Offering:** Self-managed, GitLab Dedicated
+**Offering:** Self-managed
 
-> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/66188) in GitLab 14.2.
 > - [Deployed behind a feature flag](../../user/feature_flags.md), disabled by default.
 
 This is the reference documentation for the Debian group distributions API. This API is behind a
diff --git a/doc/api/packages/debian_project_distributions.md b/doc/api/packages/debian_project_distributions.md
index f072e714abd32d38bc686006aa1847f5ce27507b..6c44350ea2f2ba9a2be207f8df81537bf45e3970 100644
--- a/doc/api/packages/debian_project_distributions.md
+++ b/doc/api/packages/debian_project_distributions.md
@@ -8,9 +8,8 @@ info: To determine the technical writer assigned to the Stage/Group associated w
 
 DETAILS:
 **Tier:** Free, Premium, Ultimate
-**Offering:** Self-managed, GitLab Dedicated
+**Offering:** Self-managed
 
-> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/42670) in GitLab 13.5.
 > - [Deployed behind a feature flag](../../user/feature_flags.md), disabled by default.
 
 This is the reference documentation for the Debian project distributions API. This API is behind a
diff --git a/doc/api/packages/go_proxy.md b/doc/api/packages/go_proxy.md
index ddc6c2bbb5c07159a4a78f68573e3cf3573379dc..34af85344d0224a3d9ecbb2d94a8f5222144e0e6 100644
--- a/doc/api/packages/go_proxy.md
+++ b/doc/api/packages/go_proxy.md
@@ -28,8 +28,6 @@ for details on which headers and token types are supported. Undocumented authent
 
 ## List
 
-> - Introduced in GitLab 13.1.
-
 Get all tagged versions for a given Go module:
 
 ```plaintext
@@ -53,8 +51,6 @@ Example output:
 
 ## Version metadata
 
-> - Introduced in GitLab 13.1.
-
 Get all tagged versions for a given Go module:
 
 ```plaintext
@@ -82,8 +78,6 @@ Example output:
 
 ## Download module file
 
-> - Introduced in GitLab 13.1.
-
 Fetch the `.mod` module file:
 
 ```plaintext
@@ -110,8 +104,6 @@ This writes to `foo.mod` in the current directory.
 
 ## Download module source
 
-> - Introduced in GitLab 13.1.
-
 Fetch the `.zip` of the module source:
 
 ```plaintext
diff --git a/doc/api/packages/helm.md b/doc/api/packages/helm.md
index 70544f0282f4bc8ce95fc2d7bf3290ef2a0646a4..951cbe7f7d94215aefed065ea7d401591f9a17c7 100644
--- a/doc/api/packages/helm.md
+++ b/doc/api/packages/helm.md
@@ -27,8 +27,6 @@ for details on which headers and token types are supported. Undocumented authent
 
 ## Download a chart index
 
-> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/62757) in GitLab 14.1.
-
 Download a chart index:
 
 ```plaintext
@@ -55,8 +53,6 @@ curl --user <username>:<personal_access_token> \
 
 ## Download a chart
 
-> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/61014) in GitLab 14.0.
-
 Download a chart:
 
 ```plaintext
@@ -77,8 +73,6 @@ curl --user <username>:<personal_access_token> \
 
 ## Upload a chart
 
-> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/64814) in GitLab 14.1.
-
 Upload a chart:
 
 ```plaintext
diff --git a/doc/api/packages/npm.md b/doc/api/packages/npm.md
index 8a98e97eed9e92d5a96aeb6be4488dc6b899a662..07bf2536a31d33a3bd2bb6bed6020bd58fe349e0 100644
--- a/doc/api/packages/npm.md
+++ b/doc/api/packages/npm.md
@@ -209,8 +209,6 @@ the instance-level route, the returned URLs contain `/api/v4/packages/npm`.
 
 ### List tags
 
-> - Introduced in GitLab 12.7.
-
 Lists the dist-tags for the package.
 
 ```plaintext
@@ -239,8 +237,6 @@ the instance-level route, the returned URLs contain `/api/v4/packages/npm`.
 
 ### Create or update a tag
 
-> - Introduced in GitLab 12.7.
-
 Create or update a dist-tag.
 
 ```plaintext
@@ -261,8 +257,6 @@ This endpoint responds successfully with `204 No Content`.
 
 ### Delete a tag
 
-> - Introduced in GitLab 12.7.
-
 Delete a dist-tag.
 
 ```plaintext
diff --git a/doc/api/packages/nuget.md b/doc/api/packages/nuget.md
index 3fcea4b36f9becd0ee07fb99d1e6ff0fb1b605d2..87efa0f06c9612d4cf76c0aab6c82a1941121fb3 100644
--- a/doc/api/packages/nuget.md
+++ b/doc/api/packages/nuget.md
@@ -26,8 +26,6 @@ for details on which headers and token types are supported. Undocumented authent
 
 ## Package index
 
-> - Introduced in GitLab 12.8.
-
 Returns the index for a given package, which includes a list of available versions:
 
 ```plaintext
@@ -55,8 +53,6 @@ Example response:
 
 ## Download a package file
 
-> - Introduced in GitLab 12.8.
-
 Download a NuGet package file. The [metadata service](#metadata-service) provides this URL.
 
 ```plaintext
@@ -84,7 +80,6 @@ This writes the downloaded file to `MyNuGetPkg.1.3.0.17.nupkg` in the current di
 
 ## Upload a package file
 
-> - Introduced in GitLab 12.8 for NuGet v3 feed.
 > - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/416404) in GitLab 16.2 for NuGet v2 feed.
 
 Upload a NuGet package file:
@@ -128,8 +123,6 @@ Upload a NuGet package file:
 
 ## Upload a symbol package file
 
-> - Introduced in GitLab 12.8.
-
 Upload a NuGet symbol package file (`.snupkg`):
 
 ```plaintext
@@ -213,7 +206,6 @@ Example response:
 
 ### V3 source feed/protocol
 
-> - Introduced in GitLab 12.6.
 > - [Changed](https://gitlab.com/gitlab-org/gitlab/-/issues/214674) to be public in GitLab 16.1.
 
 Returns a list of available API resources.
@@ -289,8 +281,6 @@ the group-level route, the returned URLs contain `/groups/:id/-`.
 
 ## Metadata Service
 
-> - Introduced in GitLab 12.8.
-
 Returns metadata for a package:
 
 ```plaintext
@@ -341,8 +331,6 @@ Example response:
 
 ## Version Metadata Service
 
-> - Introduced in GitLab 12.8.
-
 Returns metadata for a specific package version:
 
 ```plaintext
@@ -381,8 +369,6 @@ Example response:
 
 ## Search Service
 
-> - Introduced in GitLab 12.8.
-
 Given a query, search for NuGet packages in the repository:
 
 ```plaintext
diff --git a/doc/api/packages/pypi.md b/doc/api/packages/pypi.md
index 639801b7bf4985d06621cb97fdb28fcc43be7e9f..5ef68bf1ab4832b3baf63576c44e51358ca43469 100644
--- a/doc/api/packages/pypi.md
+++ b/doc/api/packages/pypi.md
@@ -30,8 +30,6 @@ is recommended when [FIPS mode](../../development/fips_compliance.md) is enabled
 
 ## Download a package file from a group
 
-> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/225545) in GitLab 13.12.
-
 Download a PyPI package file. The [simple API](#group-level-simple-api-entry-point)
 usually supplies this URL.
 
@@ -101,8 +99,6 @@ This writes the downloaded file to `simple_index.html` in the current directory.
 
 ## Group level simple API entry point
 
-> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/225545) in GitLab 13.12.
-
 Returns the package descriptor as an HTML file:
 
 ```plaintext
@@ -143,8 +139,6 @@ This writes the downloaded file to `simple.html` in the current directory.
 
 ## Download a package file from a project
 
-> - Introduced in GitLab 12.10.
-
 Download a PyPI package file. The [simple API](#project-level-simple-api-entry-point)
 usually supplies this URL.
 
@@ -214,8 +208,6 @@ This writes the downloaded file to `simple_index.html` in the current directory.
 
 ## Project-level simple API entry point
 
-> - Introduced in GitLab 12.10.
-
 Returns the package descriptor as an HTML file:
 
 ```plaintext
diff --git a/doc/api/packages/rubygems.md b/doc/api/packages/rubygems.md
index 86d09232ee7b4197a67e514c75dfeb89976ffbde..ef38ef5dcb54f20bf47ed7d820b7405e33b5f29e 100644
--- a/doc/api/packages/rubygems.md
+++ b/doc/api/packages/rubygems.md
@@ -51,8 +51,6 @@ Feature.disable(:rubygem_packages, Project.find(2))
 
 ## Download a gem file
 
-> - Introduced in GitLab 13.10.
-
 Download a gem:
 
 ```plaintext
@@ -78,8 +76,6 @@ This writes the downloaded file to `my_gem-1.0.0.gem` in the current directory.
 
 ## Fetch a list of dependencies
 
-> - Introduced in GitLab 13.10.
-
 Fetch a list of dependencies for a list of gems:
 
 ```plaintext
@@ -133,8 +129,6 @@ This writes the downloaded file to `mypkg-1.0-SNAPSHOT.jar` in the current direc
 
 ## Upload a gem
 
-> - Introduced in GitLab 13.11.
-
 Upload a gem:
 
 ```plaintext
diff --git a/doc/user/packages/composer_repository/index.md b/doc/user/packages/composer_repository/index.md
index 74b3e43a5ce303f042d4c6e50abd10fa6eb8c285..3c4f3da869c27fc1573b953fda4d34896cf9eb2e 100644
--- a/doc/user/packages/composer_repository/index.md
+++ b/doc/user/packages/composer_repository/index.md
@@ -11,11 +11,6 @@ DETAILS:
 **Offering:** GitLab.com, Self-managed, GitLab Dedicated
 **Status:** Beta
 
-> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/15886) in GitLab 13.2.
-> - [Moved](https://gitlab.com/gitlab-org/gitlab/-/issues/221259) from GitLab Premium to GitLab Free in 13.3.
-> - Support for Composer 2.0 [added](https://gitlab.com/gitlab-org/gitlab/-/issues/259840) in GitLab 13.10.
-> - Deploy token support [added](https://gitlab.com/gitlab-org/gitlab/-/issues/240897) in GitLab 14.6.
-
 WARNING:
 The Composer package registry for GitLab is under development and isn't ready for production use due to
 limited functionality. This [epic](https://gitlab.com/groups/gitlab-org/-/epics/6817) details the remaining
@@ -126,8 +121,6 @@ When you publish:
 
 ## Install a Composer package
 
-> - Authorization to [download a package archive](../../../api/packages/composer.md#download-a-package-archive) was [introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/331601) in GitLab 14.10.
-
 Install a package from the package registry so you can use it as a dependency.
 
 Prerequisites:
@@ -379,10 +372,7 @@ composer clearcache
 
 ### Authorization requirement when using `composer install`
 
-In GitLab 14.9 and earlier, you did not require authorization to use `composer install` if you already had a generated `composer.lock`.
-If you committed your `composer.lock`, you could do a `composer install` in CI without setting up credentials.
-
-In GitLab 14.10 and later, authorization is required for the [downloading a package archive](../../../api/packages/composer.md#download-a-package-archive) endpoint.
+Authorization is required for the [downloading a package archive](../../../api/packages/composer.md#download-a-package-archive) endpoint.
 If you encounter a credentials prompt when you are using `composer install`, follow the instructions in the [install a composer package](#install-a-composer-package) section to create an `auth.json` file.
 
 ### Publish fails with `The file composer.json was not found`
diff --git a/doc/user/packages/conan_repository/index.md b/doc/user/packages/conan_repository/index.md
index 3f9e3fa6488a7a25d9739ca02f5172bf44df726e..33fb14e762a495616236abb5883f53523b6f1bf1 100644
--- a/doc/user/packages/conan_repository/index.md
+++ b/doc/user/packages/conan_repository/index.md
@@ -11,9 +11,6 @@ DETAILS:
 **Offering:** GitLab.com, Self-managed, GitLab Dedicated
 **Status:** Experiment
 
-> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/8248) in GitLab 12.6.
-> - [Moved](https://gitlab.com/gitlab-org/gitlab/-/issues/221259) from GitLab Premium to GitLab Free in 13.3.
-
 WARNING:
 The Conan package registry for GitLab is under development and isn't ready for production use due to
 limited functionality. This [epic](https://gitlab.com/groups/gitlab-org/-/epics/6816) details the remaining
@@ -44,8 +41,6 @@ and install packages from the package registry.
 
 ### Add a remote for your project
 
-> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/11679) in GitLab 13.4.
-
 Set a remote so you can work with packages in a project without
 having to specify the remote name in every command.
 
@@ -200,9 +195,6 @@ conan upload Hello/0.1@mycompany/beta --all
 
 ## Publish a Conan package by using CI/CD
 
-> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/11678) in GitLab 12.7.
-> - [Moved](https://gitlab.com/gitlab-org/gitlab/-/issues/221259) from GitLab Premium to GitLab Free in 13.3.
-
 To work with Conan commands in [GitLab CI/CD](../../../ci/index.md), you can
 use `CI_JOB_TOKEN` in place of the personal access token in your commands.
 
diff --git a/doc/user/packages/container_registry/index.md b/doc/user/packages/container_registry/index.md
index 09c1ad35aab5938419374432824c182b89ebd672..02460dbe2915309ee37797b31588be6b2431bab8 100644
--- a/doc/user/packages/container_registry/index.md
+++ b/doc/user/packages/container_registry/index.md
@@ -10,8 +10,6 @@ DETAILS:
 **Tier:** Free, Premium, Ultimate
 **Offering:** GitLab.com, Self-managed, GitLab Dedicated
 
-> - Searching by image repository name was [introduced](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/31322) in GitLab 13.0.
-
 You can use the integrated container registry to store container images for each GitLab project
 
 To enable the container registry for your GitLab instance, see the [administrator documentation](../../../administration/packages/container_registry.md).
diff --git a/doc/user/packages/debian_repository/index.md b/doc/user/packages/debian_repository/index.md
index 4d8752e253224ef7b2e2735b02f5c4b8cef0647a..b25db582ae1faa6924999341aa73d3e931a0b05d 100644
--- a/doc/user/packages/debian_repository/index.md
+++ b/doc/user/packages/debian_repository/index.md
@@ -11,8 +11,6 @@ DETAILS:
 **Offering:** Self-managed
 **Status:** Experiment
 
-> - Debian API [introduced](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/42670) in GitLab 13.5.
-> - Debian group API [introduced](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/66188) in GitLab 14.2.
 > - [Deployed behind a feature flag](../../feature_flags.md), disabled by default.
 
 WARNING:
diff --git a/doc/user/packages/dependency_proxy/index.md b/doc/user/packages/dependency_proxy/index.md
index cd970a80e9bfecd282ee28a223e6fe271ca10783..633d0050f24fd34d19f376db3f5d9e662f339d1f 100644
--- a/doc/user/packages/dependency_proxy/index.md
+++ b/doc/user/packages/dependency_proxy/index.md
@@ -10,11 +10,6 @@ DETAILS:
 **Tier:** Free, Premium, Ultimate
 **Offering:** GitLab.com, Self-managed, GitLab Dedicated
 
-> - [Moved](https://gitlab.com/gitlab-org/gitlab/-/issues/273655) from GitLab Premium to GitLab Free in 13.6.
-> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/11582) support for private groups in GitLab 13.7.
-> - Anonymous access to images in public groups is no longer available starting in GitLab 13.7.
-> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/290944) support for pull-by-digest and Docker version 20.x in GitLab 13.10.
-
 The GitLab Dependency Proxy is a local proxy you can use for your frequently-accessed
 upstream images.
 
@@ -32,7 +27,7 @@ The following images and packages are supported.
 
 | Image/Package    | GitLab version |
 | ---------------- | -------------- |
-| Docker           | 11.11+         |
+| Docker           | 14.0+         |
 
 For a list of planned additions, view the
 [direction page](https://about.gitlab.com/direction/package/#dependency-proxy).
diff --git a/doc/user/packages/generic_packages/index.md b/doc/user/packages/generic_packages/index.md
index 9b53828f9ecf8ece649cc9a8710847e5387eea42..3ce14c3e76b0c07497cf9c50e7fdedabd5871594 100644
--- a/doc/user/packages/generic_packages/index.md
+++ b/doc/user/packages/generic_packages/index.md
@@ -10,9 +10,6 @@ DETAILS:
 **Tier:** Free, Premium, Ultimate
 **Offering:** GitLab.com, Self-managed, GitLab Dedicated
 
-> - [Introduced](https://gitlab.com/groups/gitlab-org/-/epics/4209) in GitLab 13.5 [with a flag](../../../administration/feature_flags.md) named `generic_packages`. Enabled by default.
-> - [Feature flag `generic_packages`](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/80886) removed in GitLab 14.8.
-
 Publish generic files, like release binaries, in your project's package registry. Then, install the packages whenever you need to use them as a dependency.
 
 ## Authenticate to the package registry
@@ -123,7 +120,6 @@ API or the UI.
 
 #### Do not allow duplicate Generic packages
 
-> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/293755) in GitLab 13.12.
 > - Required role [changed](https://gitlab.com/gitlab-org/gitlab/-/issues/350682) from Developer to Maintainer in GitLab 15.0.
 
 To prevent users from publishing duplicate generic packages, you can use the [GraphQL API](../../../api/graphql/reference/index.md#packagesettings)
diff --git a/doc/user/packages/go_proxy/index.md b/doc/user/packages/go_proxy/index.md
index ac7e1db5ff41aa203f9d80843a0a445cd706d1c2..a162eebe30c1b6bc6362afec2a70e0a9a32722e3 100644
--- a/doc/user/packages/go_proxy/index.md
+++ b/doc/user/packages/go_proxy/index.md
@@ -11,11 +11,9 @@ DETAILS:
 **Offering:** GitLab.com, Self-managed, GitLab Dedicated
 **Status:** Experiment
 
-> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/27376) in GitLab 13.1.
 > - It's deployed behind a feature flag, disabled by default.
 > - It's disabled for GitLab.com.
 > - To use it in GitLab self-managed instances, ask a GitLab administrator to [enable it](#enable-the-go-proxy).
-> - [Moved](https://gitlab.com/gitlab-org/gitlab/-/issues/221259) from GitLab Premium to GitLab Free in 13.3.
 
 WARNING:
 The Go package registry for GitLab is under development and isn't ready for production use due to
diff --git a/doc/user/packages/helm_repository/index.md b/doc/user/packages/helm_repository/index.md
index 33b249e1900a6515346a46b7b5bae3ff9447e758..d2416cd4f6ce28f1800e2815a803b07c330a37b6 100644
--- a/doc/user/packages/helm_repository/index.md
+++ b/doc/user/packages/helm_repository/index.md
@@ -11,8 +11,6 @@ DETAILS:
 **Offering:** GitLab.com, Self-managed, GitLab Dedicated
 **Status:** Beta
 
-> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/18997) in GitLab 14.1.
-
 WARNING:
 The Helm chart registry for GitLab is under development and isn't ready for production use due to
 limited functionality. This [epic](https://gitlab.com/groups/gitlab-org/-/epics/6366) details the remaining
diff --git a/doc/user/packages/npm_registry/index.md b/doc/user/packages/npm_registry/index.md
index 5679402d75a41705ff5d89909b580dbffee1a75e..5911c57796dfbbc4342700b1bd058509bf64d5e7 100644
--- a/doc/user/packages/npm_registry/index.md
+++ b/doc/user/packages/npm_registry/index.md
@@ -441,25 +441,3 @@ This is also true even if the prior published package shares the same name, but
 ### Package JSON file is too large
 
 Make sure that your `package.json` file does not exceed `20,000` characters.
-
-### `npm publish` returns `npm ERR! 500 Internal Server Error - PUT`
-
-This is a [known issue](https://gitlab.com/gitlab-org/gitlab/-/issues/238950) in GitLab 13.3.x and later. The error in the logs appears as:
-
-```plaintext
->NoMethodError - undefined method `preferred_language' for #<Rack::Response
-```
-
-This might be accompanied by another error:
-
-```plaintext
->Errno::EACCES","exception.message":"Permission denied
-```
-
-This is usually a permissions issue with either:
-
-- `'packages_storage_path'` default `/var/opt/gitlab/gitlab-rails/shared/packages/`.
-- The remote bucket if [object storage](../../../administration/packages/index.md#use-object-storage)
-  is used.
-
-In the latter case, ensure the bucket exists and GitLab has write access to it.
diff --git a/doc/user/packages/nuget_repository/index.md b/doc/user/packages/nuget_repository/index.md
index 05db6f1440c6f9d8111f245e69e17ac851f4372a..0b5fa10b93f339cc6b722b9c88f47d55a0179972 100644
--- a/doc/user/packages/nuget_repository/index.md
+++ b/doc/user/packages/nuget_repository/index.md
@@ -10,10 +10,6 @@ DETAILS:
 **Tier:** Free, Premium, Ultimate
 **Offering:** GitLab.com, Self-managed, GitLab Dedicated
 
-> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/20050) in GitLab 12.8.
-> - [Moved](https://gitlab.com/gitlab-org/gitlab/-/issues/221259) from GitLab Premium to GitLab Free in 13.3.
-> - Symbol package support [added](https://gitlab.com/gitlab-org/gitlab/-/issues/262081) in GitLab 14.1.
-
 Publish NuGet packages in your project's package registry. Then, install the
 packages whenever you need to use them as a dependency.
 
@@ -30,8 +26,6 @@ Learn how to [install NuGet](../workflows/build_packages.md#nuget).
 
 ## Use the GitLab endpoint for NuGet Packages
 
-> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/36423) group-level endpoint in GitLab 13.8.
-
 To use the GitLab endpoint for NuGet Packages, choose an option:
 
 - **Project-level**: Use when you have few NuGet packages and they are not in
@@ -376,8 +370,6 @@ dotnet nuget push MyPackage.1.0.0.nupkg --source https://gitlab.example.com/api/
 
 ### Publish a NuGet package by using CI/CD
 
-> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/36424) in GitLab 13.3.
-
 If you're using NuGet with GitLab CI/CD, a CI job token can be used instead of a
 personal access token or deploy token. The token inherits the permissions of the
 user that generates the pipeline.
@@ -582,8 +574,6 @@ nuget delete MyPackage 1.0.0 -Source gitlab -ApiKey <gitlab_personal_access_toke
 
 ## Symbol packages
 
-> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/262081) in GitLab 14.1.
-
 If you push a `.nupkg`, symbol package files in the `.snupkg` format are uploaded automatically. You
 can also push them manually:
 
diff --git a/doc/user/packages/pypi_repository/index.md b/doc/user/packages/pypi_repository/index.md
index 370ddad4afc79807d3ee25102c7cd4cbea564a7a..e1fc94337eca7b406ddbf1bd92d13b3bc6520fce 100644
--- a/doc/user/packages/pypi_repository/index.md
+++ b/doc/user/packages/pypi_repository/index.md
@@ -10,9 +10,6 @@ DETAILS:
 **Tier:** Free, Premium, Ultimate
 **Offering:** GitLab.com, Self-managed, GitLab Dedicated
 
-> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/208747) in GitLab 12.10.
-> - [Moved](https://gitlab.com/gitlab-org/gitlab/-/issues/221259) from GitLab Premium to GitLab Free in 13.3.
-
 Publish PyPI packages in your project's package registry. Then install the
 packages whenever you need to use them as a dependency.
 
@@ -80,8 +77,6 @@ path (for example, `group%2Fproject`), or the project's ID (for example `42`).
 
 ### Authenticate with a CI job token
 
-> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/202012) in GitLab 13.4.
-
 To work with PyPI commands within [GitLab CI/CD](../../../ci/index.md), you
 can use `CI_JOB_TOKEN` instead of a personal access token or deploy token.
 
@@ -206,8 +201,7 @@ more than once, a `400 Bad Request` error occurs.
 
 ## Install a PyPI package
 
-In [GitLab 14.2 and later](https://gitlab.com/gitlab-org/gitlab/-/issues/233413),
-when a PyPI package is not found in the package registry, the request is forwarded to [pypi.org](https://pypi.org/).
+When a PyPI package is not found in the package registry, the request is forwarded to [pypi.org](https://pypi.org/).
 
 Administrators can disable this behavior in the [Continuous Integration settings](../../../administration/settings/continuous_integration.md).
 
diff --git a/doc/user/packages/rubygems_registry/index.md b/doc/user/packages/rubygems_registry/index.md
index 80d819e556584814015549ac12b543d8eab5fec4..4b0187746fd9d8714dc644c60e8a6eaf3011d2cb 100644
--- a/doc/user/packages/rubygems_registry/index.md
+++ b/doc/user/packages/rubygems_registry/index.md
@@ -11,8 +11,6 @@ DETAILS:
 **Offering:** GitLab.com, Self-managed, GitLab Dedicated
 **Status:** Experiment
 
-> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/803) in GitLab 13.10.
-
 WARNING:
 The Ruby gems package registry for GitLab is under development and isn't ready for production use due to
 limited functionality. This [epic](https://gitlab.com/groups/gitlab-org/-/epics/3200) details the remaining
diff --git a/doc/user/packages/terraform_module_registry/index.md b/doc/user/packages/terraform_module_registry/index.md
index 1c21222ad9a0ce5bca42faa14128e125c17c5abf..6a29e29982b2ff8daf07f977191de74307a0696b 100644
--- a/doc/user/packages/terraform_module_registry/index.md
+++ b/doc/user/packages/terraform_module_registry/index.md
@@ -10,7 +10,6 @@ DETAILS:
 **Tier:** Free, Premium, Ultimate
 **Offering:** GitLab.com, Self-managed, GitLab Dedicated
 
-> - [Introduced](https://gitlab.com/groups/gitlab-org/-/epics/3221) in GitLab 14.0.
 > - Infrastructure registry and Terraform Module Registry [merged](https://gitlab.com/gitlab-org/gitlab/-/issues/404075) into a single Terraform Module Registry feature in GitLab 15.11.
 > - Support for groups [introduced](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/140215) in GitLab 16.9.