Skip to content

Commit ac786f8

Browse files
Merge pull request #622 from Labelbox/develop
v.3.24.0
2 parents 93aad9f + 91bf802 commit ac786f8

File tree

13 files changed

+684
-76
lines changed

13 files changed

+684
-76
lines changed

CHANGELOG.md

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

3+
# Version 3.24.0 (2022-07-06)
4+
## Added
5+
* `DataRowMetadataOntology` class now has functions to create/update/delete metadata schema
6+
* `create_schema` - Create custom metadata schema
7+
* `update_schema` - Update name of custom metadata schema
8+
* `update_enum_options` - Update name of an Enum option for an Enum custom metadata schema
9+
* `delete_schema` - Delete custom metadata schema
10+
* `ModelRun` class now has `assign_data_rows_to_split` function, which can assign a `DataSplit` to a list of `DataRow`s
11+
* `Dataset.create_data_rows()` can bulk import `conversationalData`
12+
313
# Version 3.23.3 (2022-06-23)
414

515
## Fix

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ client = Client( endpoint = "<local deployment>")
8585
client = Client(api_key=os.environ['LABELBOX_TEST_API_KEY_LOCAL'], endpoint="http://localhost:8080/graphql")
8686
8787
# Staging
88-
client = Client(api_key=os.environ['LABELBOX_TEST_API_KEY_LOCAL'], endpoint="https://staging-api.labelbox.com/graphql")
88+
client = Client(api_key=os.environ['LABELBOX_TEST_API_KEY_LOCAL'], endpoint="https://api.lb-stage.xyz/graphql")
8989
```
9090

9191
## Contribution
@@ -122,5 +122,5 @@ make test-prod # with an optional flag: PATH_TO_TEST=tests/integration/...etc LA
122122
make -B {build|test-staging|test-prod}
123123
```
124124

125-
6. Testing against Delegated Access will be skipped unless the local env contains the key:
126-
DA_GCP_LABELBOX_API_KEY. These tests will be included when run against a PR. If you would like to test it manually, please reach out to the Devops team for information on the key.
125+
6. Testing against Delegated Access will be skipped unless the local env contains the key:
126+
DA_GCP_LABELBOX_API_KEY. These tests will be included when run against a PR. If you would like to test it manually, please reach out to the Devops team for information on the key.

labelbox/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name = "labelbox"
2-
__version__ = "3.23.3"
2+
__version__ = "3.24.0"
33

44
from labelbox.client import Client
55
from labelbox.schema.project import Project
@@ -21,7 +21,7 @@
2121
from labelbox.schema.role import Role, ProjectRole
2222
from labelbox.schema.invite import Invite, InviteLimit
2323
from labelbox.schema.data_row_metadata import DataRowMetadataOntology
24-
from labelbox.schema.model_run import ModelRun
24+
from labelbox.schema.model_run import ModelRun, DataSplit
2525
from labelbox.schema.benchmark import Benchmark
2626
from labelbox.schema.iam_integration import IAMIntegration
2727
from labelbox.schema.resource_tag import ResourceTag

0 commit comments

Comments
 (0)