Skip to content

Releases: IndicoDataSolutions/indico-client-python

5.9.0

15 Mar 19:23

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 5.1.4...5.9.0

6.0-alpha2

01 Feb 14:13
f9d5f17

Choose a tag to compare

6.0-alpha2 Pre-release
Pre-release
6.0.0-alpha2

[CAT-515] FIX: force decompress when deserializing if url ends in gz …

6.0.0-alpha1

04 Jan 20:59
77e7143

Choose a tag to compare

6.0.0-alpha1 Pre-release
Pre-release

This is an alpha release. This is for internal testing purposes only. It will not work with older versions of the platform.

What's Changed

  • [CAT-302] add code sample to create a classifier -> extraction workflow by @fitzworkhub in #191
  • [Snyk] Security upgrade python from 3.9.5 to 3.9.15 by @snyk-bot in #199
  • [CAT-501] ADD: functionality for adding exchange integration to a workflow by @meghanhickey in #202
  • [CAT-502] ADD: support for starting an integration by @meghanhickey in #203

Full Changelog: 5.3.0-alpha2...6.0.0-alpha1

6.0.0-alpha

20 Dec 17:54
5b01e5e

Choose a tag to compare

6.0.0-alpha Pre-release
Pre-release

This is an alpha release. This is for internal testing purposes only. It will not work with older versions of the platform.

What's Changed

This includes changes to the way backend storage functions.

New Contributors

Full Changelog: 5.3.0-alpha2...6.0.0-alpha

5.3.0-alpha2

25 Aug 21:02
0c60c15

Choose a tag to compare

5.3.0-alpha2 Pre-release
Pre-release

Add after_link_id to addModelGroupComponent

5.3.0-alpha1

27 Jul 14:57
4177f22

Choose a tag to compare

5.3.0-alpha1 Pre-release
Pre-release

What's Changed

Full Changelog: 5.3.0-alpha0...5.3.0-alpha1

5.3.0-alpha0

25 Jul 15:41
c7657cc

Choose a tag to compare

5.3.0-alpha0 Pre-release
Pre-release

What's Changed

  • [CAT-243] DeleteWorkflow mutation, test, & doc update by @meghanhickey in #176
  • [CAT-232] FIX: Update Document Report Filter behavior by @meghanhickey in #178
  • Added error messaging for Dataset basetype methods by @andrew8bit in #177
  • [CAT-250] FIX update model type enum to include all types that exist in the platform by @meghanhickey in #181
  • [CAT-108] Enable autoprocessing by default for AddData by @meghanhickey in #180
  • ADD: created_by and deleted fields to document report by @meghanhickey in #184

New Contributors

Full Changelog: 5.1.4...5.3.0-alpha0

5.1.4

29 Jun 16:10
b35174f

Choose a tag to compare

Adds remove file mutation, downgrades msgpack, and fixes an error in OCR config pass through.

What's Changed

New Contributors

Full Changelog: 5.1.3...5.1.4

5.1.3

12 May 15:32
a09d4c1

Choose a tag to compare

What's Changed

Added reviews filter for submissions as SubmissionReviewsFilter which can be used with a SubmissionsFilter to fetch Submissions. Updated CreateExport to match 5.x

Old query:

mutation CreateExport(
    $datasetId: Int!, 
    $columnIds: [Int], 
    $subsetIds: [Int], 
    $labelsetIds: [Int],
    $fileInfo: Boolean,
    $combineLabels: Boolean,
    $anonymous: Boolean
) {
    createExport(
        datasetId: $datasetId,
        columnIds: $columnIds,
        subsetIds: $subsetIds,
        fileInfo: $fileInfo,
        labelsetIds: $labelsetIds,
        combineLabels: $combineLabels
        anonymous: $anonymous
    ) {
        id,
        datasetId,
        name,
        status,
        downloadUrl,
        columnIds,
        labelsetIds,
        subsetIds,
        anonymous
    }
}    

New query:

mutation CreateExport(
    $datasetId: Int!,
    $labelsetId: Int!,
    $columnIds: [Int], 
    $modelIds: [Int],
    $frozenLabelsetIds: [Int],
    $combineLabels: LabelResolutionStrategy,
    $fileInfo: Boolean,
    $anonymous: Boolean
) {
    createExport(
        datasetId: $datasetId,
        labelsetId: $labelsetId,
        columnIds: $columnIds,
        modelIds: $modelIds,
        frozenLabelsetIds: $frozenLabelsetIds,
        combineLabels: $combineLabels,
        fileInfo: $fileInfo,
        anonymous: $anonymous
    ) {
        id,
        datasetId,
        labelsetId,
        name,
        status,
        columnIds,
        modelIds,
        frozenLabelsetIds,
        anonymous
        downloadUrl,
    }
}

Old export call:
export = client.call(CreateExport(dataset_id=dataset.id, wait=True))

New export call:
export = client.call(CreateExport(dataset_id=airlines_dataset.id, labelset_id=dataset.labelsets[0].id wait=True))

New Contributors

Full Changelog: 5.1.2...5.1.3

5.1.2

29 Apr 19:54
ab79609

Choose a tag to compare

Fixes an issue with recordSubmission still being present on workflows, fix tox test issue.