File tree Expand file tree Collapse file tree 3 files changed +29
-2
lines changed Expand file tree Collapse file tree 3 files changed +29
-2
lines changed Original file line number Diff line number Diff line change 11# 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 ` is raised when users hit resource limits or are not allowed to use a particular operation.
16+
17+ ## Updated
18+ * ` ModelRun.upsert_labels() `
19+ * Blocks until the upsert job is complete. Error messaged have been improved.
20+ * ` Organization.invite_user() ` and ` Organization.invite_limit() ` are no longer experimental
21+ * ` AnnotationGroup ` was renamed to ` ModelRunDataRow `
22+ * ` ModelRun.delete_annotation_groups() ` was renamed to ` ModelRun.delete_model_run_data_rows() `
23+ * ` ModelRun.annotation_groups() ` was renamed to ` ModelRun.model_run_data_rows() `
24+
25+ ## Fix
26+ * ` DataRowMetadataField ` no longer relies on pydantic for validation and coercion
27+ * This prevents unintended type coercion from occuring
28+
229# Version 3.7.0 (2021-10-11)
330## Added
431* Search for data row ids from external ids without specifying a dataset
Original file line number Diff line number Diff line change 273273 "outputs": [],
274274 "source": [
275275 "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",
277277 " value=datetime.now(), # typed inputs\n",
278278 ")\n",
279279 "# Completed object ready for upload\n",
Original file line number Diff line number Diff line change 11name = "labelbox"
2- __version__ = "3.7 .0"
2+ __version__ = "3.8 .0"
33
44from labelbox .schema .project import Project
55from labelbox .client import Client
You can’t perform that action at this time.
0 commit comments