Skip to content

Releases: microsoft/azure-devops-python-api

azure-devops 5.0.0b5

23 Apr 17:33
Compare
Choose a tag to compare
azure-devops 5.0.0b5 Pre-release
Pre-release

Regenerate 5.1 clients from M150.

azure-devops 5.0.0b4

03 Apr 17:52
Compare
Choose a tag to compare
azure-devops 5.0.0b4 Pre-release
Pre-release

Regenerate clients to match M149
Fix issue #194 - which was causing a deprecation warnings when setting creds on ServiceClient.

azure-devops 5.0.0b3

13 Mar 18:14
Compare
Choose a tag to compare
azure-devops 5.0.0b3 Pre-release
Pre-release

Update to M149

azure-devops 5.0.0b2

28 Feb 20:18
Compare
Choose a tag to compare
azure-devops 5.0.0b2 Pre-release
Pre-release

Fix directory and filename casing in NuGet client.

azure-devops 5.0.0b1

25 Feb 18:56
Compare
Choose a tag to compare
azure-devops 5.0.0b1 Pre-release
Pre-release
Merge pull request #183 from Microsoft/dev

5.0.0b2 fix directory and filename casing in NuGet client.

VSTS 0.1.25

15 Jan 15:39
Compare
Choose a tag to compare

Fix for enum references within collections causing deserialization issues. See #167

VSTS 0.1.24

11 Jan 20:23
Compare
Choose a tag to compare

Fixes client upload methods.

Example method to upload a file and link it as a work item attachment:

def upload_work_item_attachment(wit_client, work_item_id, file_name, callback=None):
    # upload file / create attachment
    with open(file_name, 'r+b') as file:
        # use mmap, so we don't load entire file in memory at the same time, and so we can start
        # streaming before we are done reading the file.
        mm = mmap.mmap(file.fileno(), 0)
        attachment = wit_client.create_attachment(mm, file_name=file_name, callback=callback)

    # Link Work Item to attachment
    patch_document = [
        JsonPatchOperation(
            op="add",
            path="/relations/-",
            value={
                "rel": "AttachedFile",
                "url": attachment.url
            }
        )
    ]
    wit_client.update_work_item(patch_document, work_item_id)

VSTS 0.1.23

10 Jan 00:07
Compare
Choose a tag to compare

set creds on config (to support msrest 0.6.3)
fix download operations

VSTS 0.1.22

03 Jan 21:10
Compare
Choose a tag to compare

Fixed DayOfWeek deserialization issue, by treating it as a string. See #154

VSTS 0.1.21

03 Dec 15:19
Compare
Choose a tag to compare

Adds several new methods that were missing from previous releases:

  • dashboard_client

    • get_widgets
    • replace_widgets
    • update_widgets
  • graph_client

    • list_groups
    • list_users
  • wiki_client

    • delete_page
    • get_page