Skip to content

Commit 5e5d5a8

Browse files
author
Kevin Kim
committed
Prep 3.39.0
1 parent ddf526f commit 5e5d5a8

File tree

3 files changed

+24
-5
lines changed

3 files changed

+24
-5
lines changed

CHANGELOG.md

Lines changed: 22 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,31 @@
11
# Changelog
2+
3+
# Version 3.39.0 (2023-02-28)
4+
## Added
5+
* New method `Project.task_queues()` to obtain the task queues for a project.
6+
* New method `Project.move_data_rows_to_task_queue()` for moving data rows to a specified task queue.
7+
* Added more descriptive error messages for metadata operations
8+
* Added `Task.errors_url` for async tasks that return errors as separate file (e.g. `export_v2`)
9+
10+
## Changed
11+
* Updated `ProjectExportParams.labels` to `ProjectExportParams.label_details`
12+
* Removed `media_attributes` from `DataRowParams`
13+
* Added deprecation warnings for `LabelList` and removed its usage
14+
* Removed unused arguments in `Project.export_v2` and `ModelRun.export_v2`
15+
16+
## Notebooks
17+
* Fixed `examples/label_export/images.ipynb` notebook metadata
18+
* Removed unused `lb_serializer` imports
19+
* Removed uuid generation in NDJson annotation payloads, as it is now optional
20+
* Removed custom embeddings usage in `examples/basics/data_row_metadata.ipynb`
21+
* New notebook `examples/basics/custom_embeddings.ipynb` for custom embeddings
22+
* Updated `examples/annotation_import/text.ipynb` to use `TextData` and specify Text media type
23+
224
# Version 3.38.0 (2023-02-15)
325

426
## Added
527
* All imports are available via `import labelbox as lb` and `import labelbox.types as lb_types`.
628
* Attachment_name support to create_attachment()
7-
* New method `Project.task_queues()` to obtain the task queues for a project.
8-
* New method `Project.move_data_rows_to_task_queue()` for moving data rows to a specified task queue.
929

1030
## Changed
1131
* `LabelImport.create_from_objects()`, `MALPredictionImport.create_from_objects()`, `MEAPredictionImport.create_from_objects()`, `Project.upload_annotations()`, `ModelRun.add_predictions()` now support Python Types for annotations.
@@ -16,7 +36,6 @@
1636
* Fixed nested classification in examples/annotation_import/image.ipynb
1737
* Ontology (instructions --> name)
1838

19-
2039
# Version 3.37.0 (2023-02-08)
2140
## Added
2241
* New `last_activity_start` param to `project.export_labels()` for filtering which labels are exported. See docstring for more on how this works.

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
copyright = '2021, Labelbox'
2222
author = 'Labelbox'
2323

24-
release = '3.38.0'
24+
release = '3.39.0'
2525

2626
# -- General configuration ---------------------------------------------------
2727

labelbox/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name = "labelbox"
2-
__version__ = "3.38.0"
2+
__version__ = "3.39.0"
33

44
from labelbox.client import Client
55
from labelbox.schema.project import Project

0 commit comments

Comments
 (0)