Skip to content

Release 6.0.0 prep #1871

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
project = 'Python SDK reference'
copyright = '2024, Labelbox'
author = 'Labelbox'
release = '5.2.1'
release = '6.0.0'

# -- General configuration ---------------------------------------------------

Expand Down
45 changes: 45 additions & 0 deletions libs/labelbox/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,49 @@
# Changelog
# Version 6.0.0 (2024-10-15)
## Added
* Deprecation messages to all export_v2 methods([#1865](https://github.com/Labelbox/labelbox-python/pull/1865))
* Logic to extract sdk method to pass to datadog dashboard([#1865](https://github.com/Labelbox/labelbox-python/pull/1865))
* Graphql client as a separate component lbox.request_client([#1834](https://github.com/Labelbox/labelbox-python/pull/1834))

## Updated
* Minimum requirement numpy version from 1.24 to 1.25 and cleaned up _TypedArray validations([#1845](https://github.com/Labelbox/labelbox-python/pull/1845))
* Refactored client `create_project` inputs to be named parameters, not kwargs([#1844](https://github.com/Labelbox/labelbox-python/pull/1844))
* Fixed pydantic v2 deprecation warnings([#1838](https://github.com/Labelbox/labelbox-python/pull/1838))
* Remove experimental from `UserGroup`([#1840](https://github.com/Labelbox/labelbox-python/pull/1840))
* Improved labeling service error reporting([#1836](https://github.com/Labelbox/labelbox-python/pull/1836))
* Switched to ruff linter([#1822](https://github.com/Labelbox/labelbox-python/pull/1822))

## Fixed
* Labeling dashboard serialization ([#1870](https://github.com/Labelbox/labelbox-python/pull/1870))
* Handling of global key in ModelEvaluationTemplate([#1869](https://github.com/Labelbox/labelbox-python/pull/1869))

## Removed
* Various deprecated classes, methods and attributes([#1853](https://github.com/Labelbox/labelbox-python/pull/1853))
* `QueueMode` for project
* LabelGenerator `assign_feature_schema_ids`
* Label `assign_feature_schema_ids`
* AttachmentType `attachment_type` TEXT
* DataRowMetadata bulk_delete `deletes` paramerter - support for string for data row ids or global keys, use `UniqueId` or `GlobalKey` class instead
* Dataset `create_data_rows_sync`. Use create_data_rows instead
* Slice `get_data_row_ids`. Use get_data_row_identifiers instead
* More deprecations([#1852](https://github.com/Labelbox/labelbox-python/pull/1852))
* LabelingParameterOverrideInput remove instance of `DataRow` as a type of input
* Project `_update_queue_mode`, `get_queue_mode`
* Support for Python 3.8([#1847](https://github.com/Labelbox/labelbox-python/pull/1847))
* Project `setup`([#1843](https://github.com/Labelbox/labelbox-python/pull/1843))
* Deprecated get stream - related classes from ExportTask([#1839](https://github.com/Labelbox/labelbox-python/pull/1839))
* `JsonConverter`, `JsonConverterOutput`, `FileConverter`, `FileConverterOutput`
* Project `setup_editor`([#1841](https://github.com/Labelbox/labelbox-python/pull/1841))
* Label `*Data*` classes as Label data attribute. Use GenericDataRowData
* NOTE MaskData was NOT removed
* COCO package([#1820](https://github.com/Labelbox/labelbox-python/pull/1820))
* NDJsonConverter `deserialize`([#1818](https://github.com/Labelbox/labelbox-python/pull/1818))
* BulkImportRequest package([#1821](https://github.com/Labelbox/labelbox-python/pull/1821)), including
* BulkImportRequest
* BulkImportRequestState
* Project `upload_annotations`
* Project `bulk_import_requests`

# Version 5.2.1 (2024-10-09)
## Fixed
* Exporter encoding
Expand Down
2 changes: 1 addition & 1 deletion libs/labelbox/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "labelbox"
version = "5.2.1"
version = "6.0.0"
description = "Labelbox Python API"
authors = [{ name = "Labelbox", email = "engineering@labelbox.com" }]
dependencies = [
Expand Down
2 changes: 1 addition & 1 deletion libs/labelbox/src/labelbox/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "labelbox"

__version__ = "5.2.1"
__version__ = "6.0.0"

from labelbox.client import Client
from labelbox.schema.annotation_import import (
Expand Down
Loading