diff --git a/data/deprecations/15-9-remove-offset-pagination-jobs-api.yml b/data/deprecations/15-9-remove-offset-pagination-jobs-api.yml deleted file mode 100644 index 2e748f566956a1fb442a2d6863fd7154bd2c0ed4..0000000000000000000000000000000000000000 --- a/data/deprecations/15-9-remove-offset-pagination-jobs-api.yml +++ /dev/null @@ -1,23 +0,0 @@ -# -# REQUIRED FIELDS -# -- title: "Remove offset pagination from Jobs API" # (required) Clearly explain the change. For example, "The `confidential` field for a `Note` is removed" or "CI/CD job names are limited to 250 characters." - announcement_milestone: "15.9" # (required) The milestone when this feature was deprecated. - announcement_date: "2023-02-22" # (required) The date of the milestone release when this feature was deprecated. This should almost always be the 22nd of a month (YYYY-MM-DD), unless you did an out of band blog post. - removal_milestone: "16.0" # (required) The milestone when this feature is being removed. - removal_date: "2023-05-22" # (required) This should almost always be the 22nd of a month (YYYY-MM-DD), the date of the milestone release when this feature will be removed. - breaking_change: true # (required) Change to false if this is not a breaking change. - reporter: jheimbuck_gl # (required) GitLab username of the person reporting the removal - stage: Verify # (required) String value of the stage that the feature was created in. e.g., Growth - issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/367537 # (required) Link to the deprecation issue in GitLab - body: | # (required) Do not modify this line, instead modify the lines below. - A request to the API for `/api/v4/projects/:id/jobs` can return a paginated list of jobs. Projects can contain hundreds or thousands of jobs, so using an offset to paginate through them is slow. Users should instead use [`keyset-based pagination`](https://docs.gitlab.com/ee/api/rest/index.html#keyset-based-pagination) when requesting consecutive pages of results. - - In milestone 16.0 we will remove offset-based pagination. -# -# OPTIONAL FIELDS -# - tiers: # (optional - may be required in the future) An array of tiers that the feature is available in currently. e.g., [Free, Silver, Gold, Core, Premium, Ultimate] - documentation_url: "https://docs.gitlab.com/ee/api/jobs.html#list-project-jobs" # (optional) This is a link to the current documentation page - image_url: # (optional) This is a link to a thumbnail image depicting the feature - video_url: # (optional) Use the youtube thumbnail URL with the structure of https://img.youtube.com/vi/UNIQUEID/hqdefault.jpg diff --git a/doc/update/deprecations.md b/doc/update/deprecations.md index e0054a1024d13cde411cb03dff648029a56ecb43..d8f12898b089dd1e405e1510c7e2e5412088ddd1 100644 --- a/doc/update/deprecations.md +++ b/doc/update/deprecations.md @@ -1511,21 +1511,6 @@ This could be a breaking change for anyone that developed their own runner that <div class="deprecation breaking-change" data-milestone="16.0"> -### Remove offset pagination from Jobs API - -<div class="deprecation-notes"> -- Announced in: GitLab <span class="milestone">15.9</span> -- [Breaking change](https://docs.gitlab.com/ee/development/deprecation_guidelines/) -</div> - -A request to the API for `/api/v4/projects/:id/jobs` can return a paginated list of jobs. Projects can contain hundreds or thousands of jobs, so using an offset to paginate through them is slow. Users should instead use [`keyset-based pagination`](https://docs.gitlab.com/ee/api/rest/index.html#keyset-based-pagination) when requesting consecutive pages of results. - -In milestone 16.0 we will remove offset-based pagination. - -</div> - -<div class="deprecation breaking-change" data-milestone="16.0"> - ### Required Pipeline Configuration is deprecated <div class="deprecation-notes">