Closed dcs3spp closed 1 month ago
Name | Link |
---|---|
Latest commit | a8c3b7ecf34a2eb3e94981c242f3d2ae7bf6e31e |
Latest deploy log | https://app.netlify.com/sites/tyk-docs/deploys/66df0b3d3317b00008691b00 |
Deploy Preview | https://deploy-preview-5383--tyk-docs.netlify.app |
Preview on mobile | Toggle QR Code...Use your smartphone camera to open QR code link. |
To edit notification comments on pull requests, go to your Netlify site configuration.
Name | Link |
---|---|
Latest commit | a8c3b7ecf34a2eb3e94981c242f3d2ae7bf6e31e |
Latest deploy log | https://app.netlify.com/sites/tyk-docs/deploys/66df0b3d3317b00008691b00 |
Deploy Preview | https://deploy-preview-5383--tyk-docs.netlify.app |
Preview on mobile | Toggle QR Code...Use your smartphone camera to open QR code link. |
To edit notification comments on pull requests, go to your Netlify site configuration.
Closing PR to for easier maintenance of queue
For internal users - Please add a Jira DX PR ticket to the subject!
DX-1661 DX-1670
Preview Link
preview
Description
Update GW and Dashboard badges on release notes landing page for 5.3.6 release on release 5.3 LTS branch
Screenshots (if appropriate)
Checklist
master
.Correct the invalid date format for better data integrity
___ **Correct the invalid date format in the JSON data for the 5.3.6 release. JSON doesnot validate or correct date formats, so it's crucial to ensure the date is valid to
prevent issues in systems that parse this data.** [tyk-docs/data/releases/gateway.json [8-10]](https://github.com/TykTechnologies/tyk-docs/pull/5383/files#diff-d5c41dd0d75af9a26732cba20aaad8331f7c995224e0a5d8b9f311bb218197ceR8-R10) ```diff "5.3.6": { - "date": "99/09/2024", + "date": "29/09/2024", # Assuming 29th is the intended date "tag": "https://github.com/TykTechnologies/tyk/releases/tag/v5.3.6", "docker": "https://hub.docker.com/r/tykio/tyk-gateway/tags?page=1&name=5.3.6" } ```
Suggestion importance[1-10]: 9
Why: The suggestion correctly identifies an invalid date format ("99/09/2024") in the JSON data, which could cause issues in systems parsing this data. Correcting it to a valid date format improves data integrity and prevents potential errors.