get_clojars_history
Retrieve version history for a Clojars dependency, specifying the number of versions to return, up to a maximum of 100, for tracking library updates.
Instructions
Get version history of a Clojars dependency
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dependency | Yes | Clojars dependency name in format "group/artifact" (e.g. "metosin/reitit") | |
limit | No | Number of versions to return (default: 15, max: 100) |
Input Schema (JSON Schema)
{
"properties": {
"dependency": {
"description": "Clojars dependency name in format \"group/artifact\" (e.g. \"metosin/reitit\")",
"type": "string"
},
"limit": {
"description": "Number of versions to return (default: 15, max: 100)",
"maximum": 100,
"minimum": 1,
"type": "number"
}
},
"required": [
"dependency"
],
"type": "object"
}