Skip to content

Releases: microsoft/azure-devops-python-api

azure-devops 5.1.0b6

01 Nov 17:47
Compare
Choose a tag to compare
azure-devops 5.1.0b6 Pre-release
Pre-release

Fix issue #289 - Check for location id at deployment level if it does not exist at the organization level.

azure-devops 5.1.0b5

20 Oct 15:12
Compare
Choose a tag to compare
azure-devops 5.1.0b5 Pre-release
Pre-release

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

12 Sep 15:00
Compare
Choose a tag to compare
azure-devops 5.1.0b4 Pre-release
Pre-release

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

12 Aug 21:04
Compare
Choose a tag to compare
azure-devops 5.1.0b3 Pre-release
Pre-release

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

12 Aug 20:37
Compare
Choose a tag to compare
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

azure-devops 5.1.0b1

25 Jul 19:40
Compare
Choose a tag to compare
azure-devops 5.1.0b1 Pre-release
Pre-release

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

19 Jun 18:48
Compare
Choose a tag to compare
azure-devops 5.0.0b9 Pre-release
Pre-release

Regenerate 5.1 clients to match M153

azure-devops 5.0.0b8

29 May 13:56
Compare
Choose a tag to compare
azure-devops 5.0.0b8 Pre-release
Pre-release

Regenerate clients to match M152.

azure-devops 5.0.0b7

21 May 13:44
Compare
Choose a tag to compare
azure-devops 5.0.0b7 Pre-release
Pre-release

Fixes issue where some custom request headers were not getting set. See issue #205.

azure-devops 5.0.0b6

13 May 21:05
Compare
Choose a tag to compare
azure-devops 5.0.0b6 Pre-release
Pre-release

Regenerate 5.1 clients from M151.

Fix for issues #185 and #211