getChangeset
Retrieve details of a WordPress code changeset or commit, including commit message, author, and diff. Specify a revision number to access specific changes in the WordPress development history.
Instructions
Get information about a specific WordPress code changeset/commit including commit message, author, and diff.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
diffLimit | No | Maximum characters of diff to return (default: 2000, max: 10000) | |
includeDiff | No | Include diff content (default: true) | |
revision | Yes | SVN revision number (e.g., 58504) |
Input Schema (JSON Schema)
{
"properties": {
"diffLimit": {
"default": 2000,
"description": "Maximum characters of diff to return (default: 2000, max: 10000)",
"type": "number"
},
"includeDiff": {
"default": true,
"description": "Include diff content (default: true)",
"type": "boolean"
},
"revision": {
"description": "SVN revision number (e.g., 58504)",
"type": "number"
}
},
"required": [
"revision"
],
"type": "object"
}