Using REST, I query for the /tags and get a full list, I then query for comparing commits between 2 tags and I get an empty list.
If I use branch name it works fine, so from=release/2.0 to=release/2.2 works, but from=2.2.0-85 to=2.2.0-86 doesn't.
My first call to /tags return this list
"refs/tags/2.2.0-86"
"refs/tags/2.2.0-85"
"refs/tags/2.2.0-84"
"refs/tags/2.2.0-83"
"refs/tags/2.2.0-82"
"refs/tags/2.2.0-81"
"refs/tags/2.2.0-80"
"refs/tags/2.2.0-79"
"refs/tags/2.2.0-78"
"refs/tags/2.2.0-11"
which is fine, now I try with "refs/tags/" prefixed to the 2.2.0-85/2.2.0-86 without success either.
Using BitBucket DataCenter 7.2 API 1.0 https://docs.atlassian.com/bitbucket-server/rest/7.2.0/bitbucket-rest.html#idp251
Anything specific that needs to be done for tags?