Skip to content
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

Release v2.7.6 #7005

Merged
merged 27 commits into from
Oct 16, 2023
Merged
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
e0ea6d2
prepare to new version
azhavoro Oct 9, 2023
3255b09
Release v2.7.5
nmanovic Oct 9, 2023
6ce88d3
Persist image filters across jobs (#6953)
klakhov Oct 10, 2023
fceeeeb
Update README for REST API tests (#6971)
Oct 10, 2023
ae9cc2e
[Snyk] Security upgrade opencv-python-headless from 4.5.5.62 to 4.8.1…
nmanovic Oct 10, 2023
43181a0
Add a GitHub workflow to prepare a release pull request (#6972)
SpecLad Oct 11, 2023
176bac2
Disabled TUS resume upload option (not used, but pollutes local stora…
bsekachev Oct 11, 2023
5219c8f
Support rotation in detector results (#6961)
WilliamKyle Oct 11, 2023
80daa10
Fixed Siammask tracker error on grayscale images (#6982)
azhavoro Oct 11, 2023
cf4329a
Override EditorConfig settings for YAML files (#6980)
SpecLad Oct 11, 2023
b450b44
Fix tracks splitting for tracks that have sub-tracks (#6968)
Oct 11, 2023
17bef4f
Updated asset for 3d tests (added nan values to one of them) (#6981)
bsekachev Oct 12, 2023
a2d1c5f
Fixed object states memory leak (#6984)
klakhov Oct 12, 2023
97a079e
Added persist image filters test (#6978)
klakhov Oct 12, 2023
41a6296
plan name changed to solo documentation (#6985)
mdacoca Oct 12, 2023
5545e83
Fixed crash related to issue tries to mount to not existing parent (#…
bsekachev Oct 12, 2023
d85e3a2
Disabled translation the page causing the issues (#6993)
bsekachev Oct 12, 2023
848e373
Enabled nginx proxy buffering (#6991)
azhavoro Oct 12, 2023
93a4f05
Added X-Frame-Options: deny (#6992)
azhavoro Oct 12, 2023
2802442
Allow to upload tracks from COCO formats (#6969)
Oct 12, 2023
1b77005
Set autorestart=true for all workers (#6945)
azhavoro Oct 12, 2023
f938ff3
Fix getting CS content when S3 bucket contains created manually direc…
Marishka17 Oct 13, 2023
80e20ff
Significant memory optimization when working with masks (#6996)
bsekachev Oct 13, 2023
4d9af86
Removed `Need help` gitter link (#7002)
klakhov Oct 13, 2023
f616d6a
Prepare release v2.7.6
github-actions[bot] Oct 13, 2023
6eead0d
Fix CHANGELOG
azhavoro Oct 13, 2023
3c05e84
fixed changelog
azhavoro Oct 13, 2023
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
Original file line number Diff line number Diff line change
@@ -58,6 +58,7 @@ context('Canvas color settings feature', () => {
});
});
});
cy.get('.ant-tooltip').invoke('hide');
}

function checkSlidersValue(wrapper, slidersClassNames, expectedResult) {
@@ -113,5 +114,26 @@ context('Canvas color settings feature', () => {
'.cvat-image-setups-filters', filterSlidersClassNames, defaultValueInSettingFilters,
);
});

it('Check persisting image filters across jobs', () => {
const sliderAction = generateString(countActionMoveSlider, 'rightarrow');
const filterAction = generateString(countActionMoveFilterSlider, 'rightarrow');
applyStringAction(
'.cvat-canvas-image-setups-content', classNameSliders, sliderAction,
);
applyStringAction(
'.cvat-image-setups-filters', filterSlidersClassNames, filterAction,
);
cy.interactMenu('Open the task');
cy.openJob(1);
cy.get('.cvat-canvas-image-setups-trigger').click();
checkSlidersValue(
'.cvat-canvas-image-setups-content', classNameSliders, expectedResultInSetting,
);
checkSlidersValue(
'.cvat-image-setups-filters', filterSlidersClassNames, expectedResultInSettingFilters,
);
cy.get('.cvat-notification-notice-image-processing-error').should('not.exist');
});
});
});