Skip to content

Commit 9fccea1

Browse files
author
Kevin Kim
committed
Prep 3.23.2 release
1 parent 2b47469 commit 9fccea1

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
# Version 3.23.2 (2022-06-15)
4+
## Added
5+
* `Data Row` object now has a new field, `metadata`, which returns metadata associated with data row as a list of `DataRowMetadataField`
6+
* Note: This field is read-only. Any metadata import should be done using the existing field, `metadata_fields`
7+
38
# Version 3.23.1 (2022-06-08)
49
## Added
510
* `Task` objects now have the following properties:

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.23.1"
2+
__version__ = "3.23.2"
33

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

labelbox/schema/data_row.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ class DataRow(DbObject, Updateable, BulkDeletable):
2323
created_at (datetime)
2424
media_attributes (dict): generated media attributes for the data row
2525
metadata_fields (list): metadata associated with the data row
26-
metadata (list): metadata associated with the data row as list of DataRowMetadataField
26+
metadata (list): metadata associated with the data row as list of DataRowMetadataField.
27+
This field is read-only. Any metadata import should be done using the existing
28+
field, `metadata_fields`
2729
2830
dataset (Relationship): `ToOne` relationship to Dataset
2931
created_by (Relationship): `ToOne` relationship to User

0 commit comments

Comments
 (0)