Is there an equivalent of "git log $($lastProd)..$($curr)"?
In an old post somewhere one solution was to use [since] and [until] filters but that suggestion was for api 1.0. I tried the following but all commits were being returned:
https://api.bitbucket.org/2.0/repositories/{workspace}/{repo_slug}/commits/main?since="Rel_1.0.48.004"&until="Rel_1.0.50.2"&fields=values.hash,values.message,next&pagelen=100
It looks like the solution is to use the include and exclude filters.
https://api.bitbucket.org/2.0/repositories/{workspace}/{repo_slug}/commits/?include=Rel_1.0.50.2&exclude=Rel_1.0.48.0&fields=values.hash,values.message,next&pagelen=100
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.