-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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.30.0 #9106
Merged
Merged
Release v2.30.0 #9106
Conversation
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
Update develop after v2.29.0
…T job (#9095) Fixed a regression In a GT job created from a video, which led to an error: *Cannot read properties of undefined (reading 'width') while navigating through frames
…ame (#9081) This checks that the frame filename displayed in the annotation view UI is copied to clipboard correctly Regression test for #8989 ### How has this been tested? Use the existing Main task to trigger UI events that change clipboard contents. #### Prepartion ##### before the test suite - Create main task - Open main task job ##### before each test case - Add a spy on the window's clipboard (has to be new every case) _Note: Unlike mocks, spies call the real function to gain information on how this function was called_ ### Cases #### Case 1: Check that frame filename can be copied to clipboard - Scrape active filename - Press on button, confirm that both filenames are equal #### Case 2: Check clipboard after switching frames - Switch to next frame - Repeat actions from Case 1 ### Checklist <!-- Go over all the following points, and put an `x` in all the boxes that apply. If an item isn't applicable for some reason, then ~~explicitly strikethrough~~ the whole line. If you don't do that, GitHub will show incorrect progress for the pull request. If you're unsure about any of these, don't hesitate to ask. We're here to help! --> - [ ] I submit my changes into the `develop` branch - [ ] I have created a changelog fragment <!-- see top comment in CHANGELOG.md --> - [ ] I have updated the documentation accordingly - [ ] I have added tests to cover my changes - [ ] I have linked related issues (see [GitHub docs]( https://help.github.com/en/github/managing-your-work-on-github/linking-a-pull-request-to-an-issue#linking-a-pull-request-to-an-issue-using-a-keyword)) ### License - [ ] I submit _my code changes_ under the same [MIT License]( https://github.com/cvat-ai/cvat/blob/develop/LICENSE) that covers the project. Feel free to contact the maintainers if that's a concern. --------- Co-authored-by: Oleg Valiulin <[email protected]>
…filter settings (#9032) - Removed `save` button on the settings modal, now settings are auto saved - Added serialization for image processing filters so they can be restored automatically
- Symbols in quality report computation are made public - Added some type annotations - Updated quality computation rq job status handling to include the `scheduled` status as well - Changed `dm.*.*` symbol uses to fully-qualified names for code discovery compatibility in VS Code
On backup, all the annotations are kept in memory. It can be a problem if the annotations are large. Fixing it.
- Added default batch size in bulk create calls - Removed SQLite workaround in `bulk_create()` calls
Moved logo management to `/about` server endpoint. To replace the logo we need to change`logo.svg` asset on the server. Additinally, there is a possibility to edit subtitle using settings.
Recent changes to the Enterprise version make the following simplifications possible: * A label type may no longer be `unknown`, which means that the type of `MLModelLabel.type` can be changed to `LabelType`, and all special handling for `unknown` can be removed. * Roboflow and Hugging Face models now correctly report their label types, which makes the dedicated `return_type` field unnecessary. The `ModelReturnType` enum is unnecessary as well, as it's just an arbitrary subset of `LabelType`.
|
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #9106 +/- ##
==========================================
+ Coverage 73.91% 73.98% +0.06%
==========================================
Files 428 429 +1
Lines 44530 44615 +85
Branches 3881 3892 +11
==========================================
+ Hits 32915 33007 +92
+ Misses 11615 11608 -7
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Added
Gamma filter settings are now automatically saved and restored upon reload (Added automatic saving for settings and persistent storage for image filter settings #9032)
Ability to customize
api/sever/about
endpoint via settings including logo and sign-in page subtitle (Added ability to customize logo and title #9052)Changed
Fixed
[SDK]
skeleton_label_spec
now correctly forwardskwargs
toPatchedLabelRequest
(Add a missing kwargs forward inskeleton_label_spec
#9087)Error: Cannot read properties of undefined (reading 'width') that occurs when changing frames in a video-based GT job (Fix: Cannot read properties of undefined (reading 'width') in Video GT job #9095)