Skip to content

Commit e89f990

Browse files
authored
Merge pull request #1026 from Labelbox/develop
Release v.3.42.0
2 parents f656d6b + 9c5e829 commit e89f990

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+2647
-2053
lines changed

.readthedocs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ version: 2
99
sphinx:
1010
configuration: docs/source/conf.py
1111

12-
# Build all formats (epub, pdf, htmlzip)
13-
formats:
14-
- pdf
12+
# Not building additional formats, as PDF build is failing
13+
# formats:
14+
# - pdf
1515

1616
# Optionally set the version of Python and requirements required to build your docs
1717
python:

CHANGELOG.md

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

3+
# Version 3.42.0 (2023-03-22)
4+
5+
## Added
6+
* Message based classifications with annotation types for conversations
7+
* Video and raster segmentation annotation types
8+
* Global key support to `ConversationEntity`, `DocumentEntity` and `DicomSegments`
9+
* DICOM polyline annotation type
10+
* Confidence attribute to classification annotations
11+
12+
## Changed
13+
* Increased metadata string size limit to 4096 chars
14+
* Removed `deletedDataRowGlobalKey` from `get_data_row_ids_for_global_keys()`
15+
16+
## Fixed
17+
* Annotation data type coercion by Pydantic
18+
* Error message when end point coordinates are smaller than start point coordinates
19+
* Some typos in error messages
20+
21+
## Notebooks
22+
* Refactored video notebook to include annotation types
23+
* Replaced data row ids with global keys in notebooks
24+
* Replaced `create_data_row` with `create_data_rows` in notebooks
25+
326
# Version 3.41.0 (2023-03-15)
427

528
## Added

Makefile

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11

2-
build:
2+
build-image:
33
docker build -t local/labelbox-python:test .
44

5+
test-local: build-image
56

6-
test-local: build
7-
8-
@# if PATH_TO_TEST we asuume you know what you are doing
7+
@# if PATH_TO_TEST we assume you know what you are doing
98
@if [ -z ${PATH_TO_TEST} ]; then \
109
./scripts/ensure_local_setup.sh; \
1110
fi
@@ -16,29 +15,29 @@ test-local: build
1615
-e LABELBOX_TEST_API_KEY_LOCAL=${LABELBOX_TEST_API_KEY_LOCAL} \
1716
local/labelbox-python:test pytest $(PATH_TO_TEST)
1817

19-
test-staging: build
18+
test-staging: build-image
2019
docker run -it -v ${PWD}:/usr/src -w /usr/src \
2120
-e LABELBOX_TEST_ENVIRON="staging" \
2221
-e DA_GCP_LABELBOX_API_KEY=${DA_GCP_LABELBOX_API_KEY} \
2322
-e LABELBOX_TEST_API_KEY_STAGING=${LABELBOX_TEST_API_KEY_STAGING} \
24-
local/labelbox-python:test pytest -n 10 $(PATH_TO_TEST)
23+
local/labelbox-python:test pytest $(PATH_TO_TEST)
2524

26-
test-prod: build
25+
test-prod: build-image
2726
docker run -it -v ${PWD}:/usr/src -w /usr/src \
2827
-e LABELBOX_TEST_ENVIRON="prod" \
2928
-e DA_GCP_LABELBOX_API_KEY=${DA_GCP_LABELBOX_API_KEY} \
3029
-e LABELBOX_TEST_API_KEY_PROD=${LABELBOX_TEST_API_KEY_PROD} \
3130
local/labelbox-python:test pytest $(PATH_TO_TEST)
3231

33-
test-onprem: build
32+
test-onprem: build-image
3433
docker run -it -v ${PWD}:/usr/src -w /usr/src \
3534
-e LABELBOX_TEST_ENVIRON="onprem" \
3635
-e DA_GCP_LABELBOX_API_KEY=${DA_GCP_LABELBOX_API_KEY} \
3736
-e LABELBOX_TEST_API_KEY_ONPREM=${LABELBOX_TEST_API_KEY_ONPREM} \
3837
-e LABELBOX_TEST_ONPREM_HOSTNAME=${LABELBOX_TEST_ONPREM_HOSTNAME} \
3938
local/labelbox-python:test pytest $(PATH_TO_TEST)
4039

41-
test-custom: build
40+
test-custom: build-image
4241
docker run -it -v ${PWD}:/usr/src -w /usr/src \
4342
-e LABELBOX_TEST_ENVIRON="custom" \
4443
-e DA_GCP_LABELBOX_API_KEY=${DA_GCP_LABELBOX_API_KEY} \

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.41.0'
24+
release = '3.42.0'
2525

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

0 commit comments

Comments
 (0)