-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into zm/update-dm-format
- Loading branch information
Showing
256 changed files
with
8,331 additions
and
4,688 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,7 @@ jobs: | |
|
||
build: | ||
needs: search_cache | ||
runs-on: ubuntu-latest-big | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
|
@@ -127,7 +127,7 @@ jobs: | |
|
||
rest_api_testing: | ||
needs: build | ||
runs-on: ubuntu-latest-big | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
|
@@ -170,7 +170,8 @@ jobs: | |
- name: Install SDK | ||
run: | | ||
pip3 install -r ./tests/python/requirements.txt \ | ||
-e './cvat-sdk[pytorch]' -e ./cvat-cli | ||
-e './cvat-sdk[pytorch]' -e ./cvat-cli \ | ||
--extra-index-url https://download.pytorch.org/whl/cpu | ||
- name: Run REST API and SDK tests | ||
id: run_tests | ||
|
@@ -208,7 +209,7 @@ jobs: | |
|
||
unit_testing: | ||
needs: build | ||
runs-on: ubuntu-latest-big | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
|
@@ -226,11 +227,10 @@ jobs: | |
- name: Running OPA tests | ||
run: | | ||
python cvat/apps/iam/rules/tests/generate_tests.py \ | ||
--output-dir cvat/apps/iam/rules/ | ||
python cvat/apps/iam/rules/tests/generate_tests.py | ||
docker compose run --rm -v "$PWD/cvat/apps/iam/rules/:/mnt/rules" \ | ||
cvat_opa test /mnt/rules | ||
docker compose run --rm -v "$PWD:/mnt/src:ro" -w /mnt/src \ | ||
cvat_opa test cvat/apps/*/rules | ||
- name: Running unit tests | ||
env: | ||
|
@@ -274,7 +274,7 @@ jobs: | |
|
||
e2e_testing: | ||
needs: build | ||
runs-on: ubuntu-latest-big | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
|
@@ -385,10 +385,17 @@ jobs: | |
name: cypress_screenshots_${{ matrix.specs }} | ||
path: ${{ github.workspace }}/tests/cypress/screenshots | ||
|
||
- name: Uploading cypress videos as an artifact | ||
if: failure() | ||
uses: actions/[email protected] | ||
with: | ||
name: cypress_videos_${{ matrix.specs }} | ||
path: ${{ github.workspace }}/tests/cypress/videos | ||
|
||
publish_dev_images: | ||
if: github.ref == 'refs/heads/develop' | ||
needs: [rest_api_testing, unit_testing, e2e_testing] | ||
runs-on: ubuntu-latest-big | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
|
@@ -427,7 +434,7 @@ jobs: | |
docker push "${UI_IMAGE_REPO}:dev" | ||
codecov: | ||
runs-on: ubuntu-latest-big | ||
runs-on: ubuntu-latest | ||
needs: [unit_testing, e2e_testing, rest_api_testing] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
changelog.d/20240331_170807_vidit.agarwal.eee20_quality_report.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
### Added | ||
|
||
- Quality Report calculation will now also include annotation of type Tag. | ||
(<https://github.com/opencv/cvat/pull/7582>) |
4 changes: 4 additions & 0 deletions
4
changelog.d/20240416_022857_vidit.agarwal.eee20_ui_tag_annotations.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
### Added | ||
|
||
- Added feature to show tags of GT and manual job in separate row. Tags of GT job have '(GT)' in their name. | ||
(<https://github.com/cvat-ai/cvat/pull/7774>) |
4 changes: 4 additions & 0 deletions
4
changelog.d/20240426_101506_boris_requests_clickhouse_optimization.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
### Fixed | ||
|
||
- Analytics report calculation fails with timeout because of redundant number of requests to ClickHouse | ||
(<https://github.com/cvat-ai/cvat/pull/7804>) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
### Changed | ||
|
||
- Analytics reports calculation may be initiated manually instead of automatic scheduling | ||
(<https://github.com/cvat-ai/cvat/pull/7805>) |
4 changes: 4 additions & 0 deletions
4
changelog.d/20240429_110227_boris_fixed_change_frame_duration.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
### Fixed | ||
|
||
- Incorrect duration of `change:frame` event | ||
(<https://github.com/cvat-ai/cvat/pull/7817>) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
### Security | ||
|
||
- Disable the nginx server signature by default to make it slightly harder for attackers to find known vulnerabilities. | ||
(<https://github.com/cvat-ai/cvat/pull/7814>) |
10 changes: 10 additions & 0 deletions
10
changelog.d/20240429_125117_zahadhamov_update_nuclio_version.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
### Changed | ||
|
||
- Update the Nuclio version and related packages/libraries | ||
(<https://github.com/cvat-ai/cvat/pull/7787>) | ||
|
||
### Removed | ||
|
||
- The `mask_rcnn` function has been removed because it was using python3.6. | ||
In new version of Nuclio python3.6 is no longer supported. Nuclio officially recommends using python3.9. | ||
Running `mask_rcnn` on python3.9 causes errors within the function and package conflicts. (<https://github.com/cvat-ai/cvat/pull/7787>) |
4 changes: 4 additions & 0 deletions
4
changelog.d/20240429_145914_boris_fixed_incorrect_cs_request.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
### Fixed | ||
|
||
- Infinite loading cloud storage update page when a lot of cloud storages are available for a user | ||
(<https://github.com/cvat-ai/cvat/pull/7823>) |
4 changes: 4 additions & 0 deletions
4
changelog.d/20240430_115445_boris_fixed_infinite_loading_nonexisting_cs.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
### Fixed | ||
|
||
- Opening update CS page sends infinite requests when CS id does not exist | ||
(<https://github.com/cvat-ai/cvat/pull/7828>) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
### Fixed | ||
|
||
Uploading files with TUS immediately failed when one of the requests failed | ||
(<https://github.com/cvat-ai/cvat/pull/7830>) |
4 changes: 4 additions & 0 deletions
4
changelog.d/20240501_095709_boris_requests_clickhouse_optimization.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
### Fixed | ||
|
||
- Longer analytics report calculation because of inefficient requests to analytics db | ||
(<https://github.com/cvat-ai/cvat/pull/7833>) |
4 changes: 4 additions & 0 deletions
4
changelog.d/20240501_111444_boris_reworked_empty_first_frame_fix.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
### Fixed | ||
|
||
- Cannot read properties of undefined (reading 'addClass') | ||
(<https://github.com/cvat-ai/cvat/pull/7834>) |
4 changes: 4 additions & 0 deletions
4
changelog.d/20240503_101921_boris_fixed_length_of_undefined.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
### Fixed | ||
|
||
- Fixed exception 'Could not read property length of undefined' when copy/paste a skeleton point | ||
(<https://github.com/cvat-ai/cvat/pull/7843>) |
4 changes: 4 additions & 0 deletions
4
changelog.d/20240503_105638_boris_do_not_allow_removing_last_keyframe.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
### Changed | ||
|
||
- Remove keyframe button is disabled when there is only one keyframe element | ||
(<https://github.com/cvat-ai/cvat/pull/7844>) |
4 changes: 4 additions & 0 deletions
4
...d/20240503_110728_maria_fix_task_creation_from_video_with_no_valid_keyframes.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
### Fixed | ||
|
||
- Task creation from a video file without keyframes allowing for random iteration | ||
(<https://github.com/cvat-ai/cvat/pull/7838>) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
### Fixed | ||
|
||
- Cannot read property 'annotations' of null when uploading annotations into a job | ||
(<https://github.com/cvat-ai/cvat/pull/7857>) |
4 changes: 4 additions & 0 deletions
4
changelog.d/20240507_153530_boris_fixed_vertical_polylines.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
### Fixed | ||
|
||
- Vertical polyline of two points is difficult to select | ||
(<https://github.com/cvat-ai/cvat/pull/7860>) |
Oops, something went wrong.