1
0
mirror of synced 2025-12-21 10:57:10 -05:00
Files
docs/content/graphql/overview/changelog.md
2021-06-24 10:21:07 -04:00

44 lines
1.1 KiB
Markdown

---
title: Changelog
intro: 'The GraphQL schema changelog is a list of recent and upcoming changes to our GraphQL API schema. It includes backwards-compatible changes, schema previews, and upcoming breaking changes.'
redirect_from:
- /v4/changelog
versions:
fpt: '*'
ghes: '*'
ghae: '*'
topics:
- API
---
Breaking changes include changes that will break existing queries or could affect the runtime behavior of clients. For a list of breaking changes and when they will occur, see our [breaking changes log](/graphql/overview/breaking-changes).
{% for entry in graphql.changelog %}
## Schema Changes for {{ entry.date }}
{% for schemaChange in entry.schemaChanges %}
{{ schemaChange.title }}
{% for change in schemaChange.changes %}
* {{ change }}
{% endfor %}
{% endfor %}
{% for previewChange in entry.previewChanges %}
{{ previewChange.title }}
{% for change in previewChange.changes %}
* {{ change }}
{% endfor %}
{% endfor %}
{% for upcomingChange in entry.upcomingChanges %}
{{ upcomingChange.title }}
{% for change in upcomingChange.changes %}
* {{ change }}
{% endfor %}
{% endfor %}
{% endfor %}