Skip to content

Commit 7c3facf

Browse files
authored
Merge branch 'develop' into mk/fix_handling_deferred_jobs
2 parents 33643ac + 4ec01c4 commit 7c3facf

File tree

74 files changed

+1525
-563
lines changed

Some content is hidden

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

74 files changed

+1525
-563
lines changed

.github/workflows/hadolint.yml

Lines changed: 4 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -5,26 +5,15 @@ jobs:
55
runs-on: ubuntu-latest
66
steps:
77
- uses: actions/checkout@v4
8-
- id: files
9-
uses: tj-actions/[email protected]
10-
with:
11-
files: |
12-
**/Dockerfile*
138

149
- name: Run checks
1510
env:
1611
HADOLINT: "${{ github.workspace }}/hadolint"
1712
HADOLINT_VER: "2.12.0"
1813
VERIFICATION_LEVEL: "error"
1914
run: |
20-
CHANGED_FILES="${{steps.files.outputs.all_changed_files}}"
15+
curl -sLo "$HADOLINT" "https://github.com/hadolint/hadolint/releases/download/v$HADOLINT_VER/hadolint-Linux-x86_64"
16+
chmod +x "$HADOLINT"
17+
echo "hadolint version: $("$HADOLINT" --version)"
2118
22-
if [[ ! -z $CHANGED_FILES ]]; then
23-
curl -sL -o $HADOLINT "https://github.com/hadolint/hadolint/releases/download/v$HADOLINT_VER/hadolint-Linux-x86_64" && chmod 700 $HADOLINT
24-
echo "HadoLint version: "$($HADOLINT --version)
25-
echo "The files will be checked: "$(echo $CHANGED_FILES)
26-
27-
$HADOLINT -t $VERIFICATION_LEVEL $CHANGED_FILES
28-
else
29-
echo "No files with the \"Dockerfile*\" name found"
30-
fi
19+
git ls-files -z 'Dockerfile*' '*/Dockerfile*' | xargs -0 "$HADOLINT" -t "$VERIFICATION_LEVEL"
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
### Fixed
2+
3+
- Reduced memory consumption for annotation import to jobs
4+
(<https://github.com/cvat-ai/cvat/pull/9256>)
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
### Fixed
2+
3+
- Links in the actions menu now behave as regular links, allowing middle-click to open them in a new tab.
4+
(<https://github.com/cvat-ai/cvat/pull/9255>)
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
### Fixed
2+
3+
- Recorded working time may be less than actual when dealing with complex masks or polygons
4+
(<https://github.com/cvat-ai/cvat/pull/9277>)
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
### Fixed
2+
3+
- Rotated rectangles and ellipses unstably reset after resizing
4+
(<https://github.com/cvat-ai/cvat/pull/9289>)
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
### Fixed
2+
3+
- Redis migration `002_update_meta_in_export_related_jobs` could fail
4+
due to stale RQ job keys in the deferred job registry
5+
(<https://github.com/cvat-ai/cvat/pull/9278>)
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
### Fixed
2+
3+
- Duplicate buttons in skeleton point config modal
4+
(<https://github.com/cvat-ai/cvat/pull/9137>)
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
### Fixed
2+
3+
- Fixed inference with the YOLOv7 model on grayscale images
4+
(<https://github.com/cvat-ai/cvat/pull/9267>)
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
### Added
2+
3+
- \[CLI\] Agents can now receive real-time notifications about new annotation
4+
requests from the server
5+
(<https://github.com/cvat-ai/cvat/pull/9191>)
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
### Fixed
2+
3+
- Reduced memory consumption for dataset import to project
4+
(<https://github.com/cvat-ai/cvat/pull/9264>)

0 commit comments

Comments
 (0)