blackducksoftware / hub-rest-api-python

HUB REST API Python bindings
Apache License 2.0
89 stars 104 forks source link

Versions name confusion #177

Closed aliaksei-ivanou closed 4 months ago

aliaksei-ivanou commented 3 years ago

Sometimes versions might have similar names, e.g.:

'1.10.2', '1.10.2-master-295', '1.10.2-master-295-master-296', '1.10.2-master-295-master-298'

The following search request returns "totalCount": 4 in this example:

/api/projects/{ProjectId}/versions?limit=100&q=versionName%3A1.10.2

Because of this line the version with the name 1.10.2 can never be deleted. The script says:

Did not find version with name 1.10.2 in project {Project}