From d7f49ae5b38fb1736799a2731d928335f70a2d2a Mon Sep 17 00:00:00 2001 From: Amy Qualls <aqualls@gitlab.com> Date: Thu, 29 Feb 2024 14:41:17 -0800 Subject: [PATCH] Fix broken endpoint link in deprecations The link text lacked a destination. I changed the linking text to match the subheading title for the endpoint, and used the link. --- .../16-10-deprecate-registry-api-requires-pagination.yml | 4 ++-- doc/update/deprecations.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/data/deprecations/16-10-deprecate-registry-api-requires-pagination.yml b/data/deprecations/16-10-deprecate-registry-api-requires-pagination.yml index f199207906ef9..e0fb597bd0406 100644 --- a/data/deprecations/16-10-deprecate-registry-api-requires-pagination.yml +++ b/data/deprecations/16-10-deprecate-registry-api-requires-pagination.yml @@ -8,6 +8,6 @@ body: | You can use the container registry REST API to [get a list of registry repository tags](https://docs.gitlab.com/ee/api/container_registry.html#list-registry-repository-tags). We plan to improve this endpoint, adding more metadata and new features like improved sorting and filtering. - While Offset-based pagination was already available for this endpoint, keyset-based pagination was [introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/432470) in GitLab 16.10 for GitLab.com only. This is now the preferred pagination method. + While offset-based pagination was already available for this endpoint, keyset-based pagination was [introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/432470) in GitLab 16.10 for GitLab.com only. This is now the preferred pagination method. - Offset-based pagination for the [get a list of registry repository tags] endpoint is deprecated in GitLab 16.10 and will be removed in 18.0. Instead, use the keyset-based pagination. + Offset-based pagination for the [List registry repository tags](https://docs.gitlab.com/ee/api/container_registry.html#list-registry-repository-tags) endpoint is deprecated in GitLab 16.10 and will be removed in 18.0. Instead, use the keyset-based pagination. diff --git a/doc/update/deprecations.md b/doc/update/deprecations.md index c8a5e2d9058e4..566685d8bd4b4 100644 --- a/doc/update/deprecations.md +++ b/doc/update/deprecations.md @@ -178,9 +178,9 @@ This change is a breaking change. You should use an [authentication token](https You can use the container registry REST API to [get a list of registry repository tags](https://docs.gitlab.com/ee/api/container_registry.html#list-registry-repository-tags). We plan to improve this endpoint, adding more metadata and new features like improved sorting and filtering. -While Offset-based pagination was already available for this endpoint, keyset-based pagination was [introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/432470) in GitLab 16.10 for GitLab.com only. This is now the preferred pagination method. +While offset-based pagination was already available for this endpoint, keyset-based pagination was [introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/432470) in GitLab 16.10 for GitLab.com only. This is now the preferred pagination method. -Offset-based pagination for the [get a list of registry repository tags] endpoint is deprecated in GitLab 16.10 and will be removed in 18.0. Instead, use the keyset-based pagination. +Offset-based pagination for the [List registry repository tags](https://docs.gitlab.com/ee/api/container_registry.html#list-registry-repository-tags) endpoint is deprecated in GitLab 16.10 and will be removed in 18.0. Instead, use the keyset-based pagination. </div> -- GitLab