Skip to content

Releases: microsoft/azure-devops-python-api

azure-devops 5.0.0b5

azure-devops 5.0.0b5 Pre-release
Pre-release

Choose a tag to compare

@tedchamb tedchamb released this 23 Apr 17:33

Regenerate 5.1 clients from M150.

azure-devops 5.0.0b4

azure-devops 5.0.0b4 Pre-release
Pre-release

Choose a tag to compare

@tedchamb tedchamb released this 03 Apr 17:52

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

azure-devops 5.0.0b3

azure-devops 5.0.0b3 Pre-release
Pre-release

Choose a tag to compare

@tedchamb tedchamb released this 13 Mar 18:14

Update to M149

azure-devops 5.0.0b2

azure-devops 5.0.0b2 Pre-release
Pre-release

Choose a tag to compare

@tedchamb tedchamb released this 28 Feb 20:18

Fix directory and filename casing in NuGet client.

azure-devops 5.0.0b1

azure-devops 5.0.0b1 Pre-release
Pre-release

Choose a tag to compare

@tedchamb tedchamb released this 25 Feb 18:56
Merge pull request #183 from Microsoft/dev

5.0.0b2 fix directory and filename casing in NuGet client.

VSTS 0.1.25

Choose a tag to compare

@tedchamb tedchamb released this 15 Jan 15:39

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

VSTS 0.1.24

Choose a tag to compare

@tedchamb tedchamb released this 11 Jan 20:23

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

Choose a tag to compare

@tedchamb tedchamb released this 10 Jan 00:07

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

VSTS 0.1.22

Choose a tag to compare

@tedchamb tedchamb released this 03 Jan 21:10

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

VSTS 0.1.21

Choose a tag to compare

@tedchamb tedchamb released this 03 Dec 15:19

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