get-component-changelog
Retrieve the changelog for a specific Ant Design component to track updates, determine feature availability, and decide if dependency upgrades are needed.
Instructions
列出 Ant Design 特定组件的更新日志 适用场景:
用户询问特定组件的更新日志
在知道用户 antd 版本的情况下,当用户需要实现相关组件功能时判断是否在后续版本中才实现,来决定是否需要升级依赖
Input Schema
Name | Required | Description | Default |
---|---|---|---|
componentName | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"componentName": {
"type": "string"
}
},
"required": [
"componentName"
],
"type": "object"
}