Version bump to 1.16.0

API version bump to 2.30
Add missing endpoints to schema
This commit is contained in:
allegroai 2024-06-20 17:55:17 +03:00
parent da3941e6f2
commit 3f34f83a91
5 changed files with 56 additions and 4 deletions

View File

@ -2,6 +2,9 @@
| Release | ApiVersion | | Release | ApiVersion |
|---------|------------| |---------|------------|
| v1.16 | 2.30 |
| v1.15 | 2.29 |
| v1.14 | 2.28 |
| v1.13 | 2.27 | | v1.13 | 2.27 |
| v1.12 | 2.26 | | v1.12 | 2.26 |
| v1.11 | 2.25 | | v1.11 | 2.25 |

View File

@ -947,7 +947,7 @@ get_task_log {
} }
} }
} }
"999.0": ${get_task_log."2.9"} { "2.30": ${get_task_log."2.9"} {
request.metrics { request.metrics {
type: array type: array
description: List of metrics and variants description: List of metrics and variants
@ -1712,7 +1712,7 @@ clear_task_log {
} }
} }
} }
"999.0": ${clear_task_log."2.19"} { "2.30": ${clear_task_log."2.19"} {
request.properties { request.properties {
include_metrics { include_metrics {
type: array type: array

View File

@ -1107,6 +1107,13 @@ delete_many {
default: true default: true
} }
} }
"2.30": ${delete_many."2.21"} {
request.properties.include_pipeline_steps {
description: If set then for the passed pipeline controller tasks the pipeline steps will be also deleted
type: boolean
default: false
}
}
} }
delete { delete {
"2.1" { "2.1" {
@ -1182,6 +1189,13 @@ delete {
default: true default: true
} }
} }
"2.30": ${delete."2.21"} {
request.properties.include_pipeline_steps {
description: If set then and the passed task is a pipeline controller then delete the pipeline tasks too
type: boolean
default: false
}
}
} }
archive { archive {
"2.12" { "2.12" {
@ -1219,6 +1233,13 @@ archive {
} }
} }
} }
"2.30": ${archive."2.12"} {
request.properties.include_pipeline_steps {
description: If set then for the passed pipeline controller tasks also archive the pipeline steps
type: boolean
default: false
}
}
} }
archive_many { archive_many {
"2.13": ${_definitions.batch_operation} { "2.13": ${_definitions.batch_operation} {
@ -1245,6 +1266,13 @@ archive_many {
} }
} }
} }
"2.30": ${archive_many."2.13"} {
request.properties.include_pipeline_steps {
description: If set then for the passed pipeline controller tasks also archive the pipeline steps
type: boolean
default: false
}
}
} }
unarchive_many { unarchive_many {
"2.13": ${_definitions.batch_operation} { "2.13": ${_definitions.batch_operation} {
@ -1271,6 +1299,13 @@ unarchive_many {
} }
} }
} }
"2.30": ${unarchive_many."2.13"} {
request.properties.include_pipeline_steps {
description: If set then for the passed pipeline controller tasks also archive the pipeline steps
type: boolean
default: false
}
}
} }
started { started {
"2.1" { "2.1" {
@ -1309,6 +1344,13 @@ stop {
} ${_references.status_change_request} } ${_references.status_change_request}
response: ${_definitions.update_response} response: ${_definitions.update_response}
} }
"2.30": ${stop."2.1"} {
request.properties.include_pipeline_steps {
description: If set and the passed task is a pipeline controller then stop all its steps too
type: boolean
default: false
}
}
} }
stop_many { stop_many {
"2.13": ${_definitions.change_many_request} { "2.13": ${_definitions.change_many_request} {
@ -1322,6 +1364,13 @@ stop_many {
} }
} }
} }
"2.30": ${stop_many."2.13"} {
request.properties.include_pipeline_steps {
description: If set then for all the passed pipeline controller tasks stop their steps too
type: boolean
default: false
}
}
} }
stopped { stopped {
"2.1" { "2.1" {

View File

@ -39,7 +39,7 @@ class ServiceRepo(object):
"""If the check is set, parsing will fail for endpoint request with the version that is grater than the current """If the check is set, parsing will fail for endpoint request with the version that is grater than the current
maximum """ maximum """
_max_version = PartialVersion("2.29") _max_version = PartialVersion("2.30")
""" Maximum version number (the highest min_version value across all endpoints) """ """ Maximum version number (the highest min_version value across all endpoints) """
_endpoint_exp = ( _endpoint_exp = (

View File

@ -1 +1 @@
__version__ = "1.15.0" __version__ = "1.16.0"