File tree Expand file tree Collapse file tree 3 files changed +30
-2
lines changed Expand file tree Collapse file tree 3 files changed +30
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
+
3
+ ## Deprecation Notice
4
+ | Name | Replacement | Removed After |
5
+ | ------------------------------------- | ------------------------------------- | ------------- |
6
+ | ` ModelRun.delete_annotation_groups() ` | ` ModelRun.delete_model_run_data_rows() ` | 3.9 |
7
+ | ` ModelRun.annotation_groups() ` | ` ModelRun.model_run_data_rows() ` | 3.9 |
8
+ | ` DataRowMetadataSchema.id ` | ` DataRowMetadataSchema.uid ` | 3.9 |
9
+ -----
10
+
11
+ # Version 3.8.0 (2021-10-21)
12
+ ## Added
13
+ * ` ModelRun.upsert_data_rows() `
14
+ * Add data rows to a model run without also attaching labels
15
+ * ` OperationNotAllowedException `
16
+ * raised when users hit resource limits or are not allowed to use a particular operation
17
+
18
+ ## Updated
19
+ * ` ModelRun.upsert_labels() `
20
+ * Blocks until the upsert job is complete. Error messages have been improved
21
+ * ` Organization.invite_user() ` and ` Organization.invite_limit() ` are no longer experimental
22
+ * ` AnnotationGroup ` was renamed to ` ModelRunDataRow `
23
+ * ` ModelRun.delete_annotation_groups() ` was renamed to ` ModelRun.delete_model_run_data_rows() `
24
+ * ` ModelRun.annotation_groups() ` was renamed to ` ModelRun.model_run_data_rows() `
25
+
26
+ ## Fix
27
+ * ` DataRowMetadataField ` no longer relies on pydantic for field validation and coercion
28
+ * This prevents unintended type coercion from occuring
29
+
2
30
# Version 3.7.0 (2021-10-11)
3
31
## Added
4
32
* Search for data row ids from external ids without specifying a dataset
Original file line number Diff line number Diff line change 273
273
"outputs": [],
274
274
"source": [
275
275
"field = DataRowMetadataField(\n",
276
- " schema_id=mdo.reserved_by_name[\"captureDateTime\"].id , # specify the schema id\n",
276
+ " schema_id=mdo.reserved_by_name[\"captureDateTime\"].uid , # specify the schema id\n",
277
277
" value=datetime.now(), # typed inputs\n",
278
278
")\n",
279
279
"# Completed object ready for upload\n",
Original file line number Diff line number Diff line change 1
1
name = "labelbox"
2
- __version__ = "3.7 .0"
2
+ __version__ = "3.8 .0"
3
3
4
4
from labelbox .schema .project import Project
5
5
from labelbox .client import Client
You can’t perform that action at this time.
0 commit comments