compare_package_versions
Compare two versions of a Dart or Flutter package to identify differences. Analyze changes in functionality, dependencies, or documentation between specified versions for informed decision-making.
Instructions
Compare two versions of a package and show differences
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fromVersion | Yes | Source version to compare from | |
packageName | Yes | Name of the package to compare | |
toVersion | Yes | Target version to compare to |
Input Schema (JSON Schema)
{
"properties": {
"fromVersion": {
"description": "Source version to compare from",
"type": "string"
},
"packageName": {
"description": "Name of the package to compare",
"type": "string"
},
"toVersion": {
"description": "Target version to compare to",
"type": "string"
}
},
"required": [
"packageName",
"fromVersion",
"toVersion"
],
"type": "object"
}