Releases: IndicoDataSolutions/indico-client-python
5.9.0
What's Changed
- [CAT-243] Add DeleteWorkflowComponent to python SDK by @meghanhickey in #175
- [CAT-243] DeleteWorkflow mutation, test, & doc update by @meghanhickey in #176
- [CAT-232] FIX: Update Document Report Filter behavior by @meghanhickey in #178
- [CAT-249] Generate new docs & update logo by @meghanhickey in #179
- 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
- ADD id for sub file in doc report by @meghanhickey in #185
- FIX: Update docs by @meghanhickey in #188
- [CAT-271] Remove DocExtraction and ModelGroupPredict Stuff from Docs by @fitzworkhub in #189
- [CAT-322] and 320 and 321 by @fitzworkhub in #190
- [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-423] adds readapi flag to documentextraction by @nateshim-indico in #206
- [CAT-507] fix hanging image test by @fitzworkhub in #207
- [CAT-511] add instructions for running tests by @fitzworkhub in #208
- [CAT-520] Add ability to submit a string of text to the python sdk by @nateshim-indico in #212
- ADD: support for readapi v2 by @benleetownsend
New Contributors
- @andrew8bit made their first contribution in #177
Full Changelog: 5.1.4...5.9.0
6.0-alpha2
6.0.0-alpha2 [CAT-515] FIX: force decompress when deserializing if url ends in gz …
6.0.0-alpha1
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
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.
- [CAT-302] add code sample to create a classifier -> extraction workflow by @fitzworkhub in #191
- support batch upload for files by @jacobmanderson in #194
- feat: [DEV-10092] update storage url scheme by @haizhou in #200
New Contributors
Full Changelog: 5.3.0-alpha2...6.0.0-alpha
5.3.0-alpha2
Add after_link_id to addModelGroupComponent
5.3.0-alpha1
What's Changed
- ADD id for sub file in doc report by @meghanhickey in #185
Full Changelog: 5.3.0-alpha0...5.3.0-alpha1
5.3.0-alpha0
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
- @meghanhickey made their first contribution in #175
- @andrew8bit made their first contribution in #177
Full Changelog: 5.1.4...5.3.0-alpha0
5.1.4
Adds remove file mutation, downgrades msgpack, and fixes an error in OCR config pass through.
What's Changed
- updating submission examples to be more realistic by @Scott771 in #164
- ADD: remove file mutation by @madisonmay in #156
- DEV-9247 ADD: new queries related to example list, partial labels by @madisonmay in #170
- [DEV-9223]: downgrade msgpack by @jacobmanderson in #171
- [CAT-240] pin requests-mock since newer version is causing error by @goatrocks in #174
- DEV-9352 FIX: issue with ocr config pass through by @madisonmay in #173
New Contributors
- @jacobmanderson made their first contribution in #171
Full Changelog: 5.1.3...5.1.4
5.1.3
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))
- [CAT-130] - Add reviews filter by @fitzworkhub in #161
- Update CreateExport query by @nateshim-indico in #162
New Contributors
- @fitzworkhub made their first contribution in #161
Full Changelog: 5.1.2...5.1.3