Releases: microsoft/azure-devops-python-api
azure-devops 5.1.0b6
Fix issue #289 - Check for location id at deployment level if it does not exist at the organization level.
azure-devops 5.1.0b5
Fixes #280, and a number of spelling mistakes in the comments.
Breaking change:
namespace azure\devops\v5_0\universal
changed to azure\devops\v5_0\upack_api
namespace azure\devops\v5_1\universal
changed to azure\devops\v5_1\upack_api
azure-devops 5.1.0b4
Fix issue #268
This is a breaking change, since some model property names changed:
/audit/models.py
AuditLogEntry.iPAddress
changed to AuditLogEntry.ip_address
/cloud_load_test/models.py
WebApiUserLoadTestMachineInput.vSTSAccount_uri
changed to WebApiUserLoadTestMachineInput.vsts_account_uri
/gallery/models.py
Answers.vSMarketplace_extension_name
changed to Answers.vs_marketplace_extension_name
Answers.vSMarketplace_publisher_name
changed to Answers.vs_marketplace_publisher_name
/profile/models.py
CreateProfileContext.cIData
changed to CreateProfileContext.ci_data
release/models.py
MailMessage.cC
changed to MailMessage.cc
task_agent/models.py
TaskAgentMessage.iV
changed to TaskAgentMessage.iv
TaskAgentReference.oSDescription
changed to TaskAgentReference.os_description
azure-devops 5.1.0b3
Remove a debug print message that was accidentally committed with other changes.
Fix readme to react to continuation token breaking change.
azure-devops 5.1.0b2
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
azure-devops 5.1.0b1
Update to M153 milestone, which includes the release of the 5.1 APIs.
Add missing clients:
Audit
Search
TokenAdmin
TokenAdministration
azure-devops 5.0.0b9
Regenerate 5.1 clients to match M153
azure-devops 5.0.0b8
Regenerate clients to match M152.
azure-devops 5.0.0b7
Fixes issue where some custom request headers were not getting set. See issue #205.