azure-devops 5.1.0b2
Pre-release
Pre-release
Breaking Change: Added support to return the Continuation Token for methods that support it. This changes the return type of these methods.
Continuation Token example:
get_builds_response = build_client.get_builds(project=project_name)
index = 0
while get_builds_response is not None:
for build in get_builds_response.value:
pprint.pprint("[" + str(index) + "] " + build.build_number)
index += 1
if get_builds_response.continuation_token is not None and get_builds_response.continuation_token != "":
get_builds_response = build_client.get_builds(project=project_name, continuation_token=get_builds_response.continuation_token)
else:
get_builds_response = None
Fixed an issue affecting the create_work_item
method on the WorkItemTrackingClient
class. See #259
Add missing released clients
Fix for Version
model in Search area