Skip to content

docs: fix milestones date fields in API responses

Jaime Martinez requested to merge release-cli-121-update-milestone-sample into master

What does this MR do?

The Releases API sample responses show the fields start_date and due_date of milestones as dates with timestamps. However, those fields are only used as raw dates. This causes some clients to break when trying to read the API response, for example release-cli#121 (closed).

This MR updates the examples to only show dates and not dates with timestamps.

FTR the milestones APIs (project and group milestones) show those fields as dates correctly.

Screenshots or Screencasts (strongly suggested)

Screen_Shot_2021-09-06_at_3.30.45_pm

How to setup and validate locally (strongly suggested)

  1. Create a release with an existing milestone attached to it.
  2. Get the release using the API
  3. Verify the milestone fields start_date and due_date are only dates without timestamps.
$ curl -s --header "PRIVATE-TOKEN: $GITLAB_PRIVATE_TOKKEN" "https://gitlab.com/api/v4/projects/18239424/releases/v1.34.0-rc3" | jq .milestones

[
  {
    "id": 2208710,
    "iid": 5,
    "project_id": 18239424,
    "title": "m34",
    "description": "testing milestone dates",
    "state": "active",
    "created_at": "2021-08-30T23:59:36.764Z",
    "updated_at": "2021-08-30T23:59:36.764Z",
    "due_date": "2021-09-06",
    "start_date": "2021-08-24",
    "expired": false,
    "web_url": "https://gitlab.com/jaime/hello/-/milestones/5",
    "issue_stats": {
      "total": 0,
      "closed": 0
    }
  }
]

Does this MR meet the acceptance criteria?

Conformity

Availability and Testing

Security

Does this MR contain changes to processing or storing of credentials or tokens, authorization and authentication methods or other items described in the security review guidelines? If not, then delete this Security section.

  • Label as security and @ mention @gitlab-com/gl-security/appsec
  • The MR includes necessary changes to maintain consistency between UI, API, email, or other methods
  • Security reports checked/validated by a reviewer from the AppSec team

Merge request reports