forked from cvat-ai/cvat
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/develop' into develop_new_repo
- Loading branch information
Showing
77 changed files
with
713 additions
and
264 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
name: Prepare release | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
newVersion: | ||
description: "Version number for the new release" | ||
required: true | ||
default: X.Y.Z | ||
jobs: | ||
main: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Validate version number | ||
env: | ||
NEW_VERSION: "${{ inputs.newVersion }}" | ||
run: | | ||
if ! [[ "$NEW_VERSION" =~ [0-9]+\.[0-9]+\.[0-9]+ ]]; then | ||
echo "Invalid version number" | ||
exit 1 | ||
fi | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Verify that the release is new | ||
run: | | ||
if git ls-remote --exit-code origin refs/tags/v${{ inputs.newVersion }} > /dev/null; then | ||
echo "Release v${{ inputs.newVersion }} already exists" | ||
exit 1 | ||
fi | ||
- name: Create release branch | ||
run: | ||
git checkout -b "release-${{ inputs.newVersion }}" | ||
|
||
- name: Collect changelog | ||
run: | ||
pipx run scriv collect --version="${{ inputs.newVersion }}" | ||
|
||
- name: Set the new version | ||
run: | ||
./dev/update_version.py --set="${{ inputs.newVersion }}" | ||
|
||
- name: Commit release preparation changes | ||
run: | | ||
git -c user.name='github-actions[bot]' -c user.email='github-actions[bot]@users.noreply.github.com' \ | ||
commit -a -m "Prepare release v${{ inputs.newVersion }}" | ||
- name: Push release branch | ||
run: | ||
git push -u origin "release-${{ inputs.newVersion }}" | ||
|
||
- name: Create release pull request | ||
env: | ||
GH_TOKEN: "${{ github.token }}" | ||
run: | | ||
gh pr create \ | ||
--base=master \ | ||
--title="Release v${{ inputs.newVersion }}" \ | ||
--body="$(awk '/^## / { hn += 1; next } hn == 1 && !/^</' CHANGELOG.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
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 | ||
|
||
- Persist image filters across jobs | ||
(<https://github.com/opencv/cvat/pull/6953>) |
4 changes: 4 additions & 0 deletions
4
changelog.d/20231009_165414_roman_snyk_fix_7429062f3bf9ab5eb080c5cceabd5d6a.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 @@ | ||
### Security | ||
|
||
- Security upgrade opencv-python-headless from 4.5.5.62 to 4.8.1.78 | ||
(<https://github.com/opencv/cvat/pull/6931>) |
4 changes: 4 additions & 0 deletions
4
changelog.d/20231010_113810_sizow.k.d_fix_tracks_splitting.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 | ||
|
||
- Splitting skeleton tracks on jobs | ||
(<https://github.com/opencv/cvat/pull/6968>) |
4 changes: 4 additions & 0 deletions
4
changelog.d/20231011_153117_sizow.k.d_fix_coco_tracks_uploading.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 | ||
|
||
- Uploading skeleton tracks in COCO Keypoints format | ||
(<https://github.com/opencv/cvat/pull/6969>) |
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 Siammask tracker error on grayscale images | ||
(<https://github.com/opencv/cvat/pull/6982>) |
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 memory leak on client side when event listener was not removed together with its context | ||
(<https://github.com/opencv/cvat/pull/6984>) |
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 crash related to issue tries to mount to not existing parent | ||
(<https://github.com/opencv/cvat/pull/6977>) |
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 | ||
|
||
- Enabled nginx proxy buffering | ||
(<https://github.com/opencv/cvat/pull/6991>) |
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 | ||
|
||
- Added X-Frame-Options: deny | ||
(<https://github.com/opencv/cvat/pull/6992>) |
4 changes: 4 additions & 0 deletions
4
changelog.d/20231012_131418_sekachev.bs_fixed_google_translator.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 | ||
|
||
- Added 'notranslate' markers to avoid issues caused by extension translators | ||
(<https://github.com/opencv/cvat/pull/6993>) |
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,8 @@ | ||
### Changed | ||
|
||
- Helm: set memory request for keydb | ||
- Supervisord: | ||
- added `autorestart=true` option for all workers | ||
- unified program names to use dashes as delimiter instead of mixed '_' and '-' | ||
- minor improvements to supervisor configurations | ||
(<https://github.com/opencv/cvat/pull/6945>) |
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 @@ | ||
### {{ config.categories | join('|') }} <!-- pick one --> | ||
|
||
- Describe your change here... | ||
(<https://github.com/opencv/cvat/pull/XXXX>) |
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,6 @@ | ||
[scriv] | ||
categories = Added, Changed, Deprecated, Removed, Fixed, Security | ||
entry_title_template = \[{{ version }}\] - {{ date.strftime('%%Y-%%m-%%d') }} | ||
format = md | ||
md_header_level = 2 | ||
new_fragment_template = file: fragment.j2 |
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
Oops, something went wrong.