-
Notifications
You must be signed in to change notification settings - Fork 0
Release Notes
Welcome to the release notes for this App. Below you will find an overview of all the changes we did for each release. We try to be as detailed as possible and include all bugs we have fixed, features we have added and things that may have changed. If you have questions about a particular release, don't hesitate to contact our support team!
2025-Feb-6
- Removed Python 2 code.
2024-Sep-6
- Option to turn on/off auto-refresh feature
- Allow detail items to be multi-selected and perform bulk actions
- Improve error handling and display critical errors more visibly
2024-May-21
- New progress bar that will run during validation or fix operations
- New hook option to allow updating the app based on DCC events
2024-Mar-26
Rebranding component for Flow Production Tracking
2024-Mar-11
- Fix filter save/restore
- Add app settings for display name and dialog/panel mode
2023-Jul-6
- Improvements to loading rule logic
- Alias Viewport not refreshed after running some fixes
Full Changelog: https://github.com/shotgunsoftware/tk-multi-data-validation/compare/v0.1.4...v0.1.5
2023-Feb-24
-
Fix retry attempt to resolve all rules.
- Sometimes executing a fix for a rule may introduce new errors to rules that have already been "fixed". Dependencies can be set up to avoid this issue but we will also try to be smart and attempt to retry to resolve. In the event that we retry to resolve, we need to fetch dependencies since this time around we do not have all rules available, only the error rules
-
Allow creating a notifier when creating the manager.
- Allow creating a notifier when creating the manager.
- Notifier is required to send signals from manager to the widget.
- Wrap imports that use Qt in try/except for pytests to work.
-
Only add the dependency if it is included in the settings and there is data for it.
2022-Oct-26
- Return specific brush for item and group item
- Return None instead of an empty list for errors
- Handle special case where rule does not have a check but does have a fix
- Fix logic for details overlay message
- Extend unit test coverage
2022-Oct-13
- Add abstract method that subclass must implement to sanitize values returned by check (validate) functions
- Add option to pre validate before executing a rule's fix
- Pass error data consistently to fix/action functions
- Improve error and warning messages displayed for rules
- Improve dependency handling.
- Add a hook to customize the app display
- Clean and style the overlay widget
- Show message based on if a group item is selected
- Show warning messages in details overlay
- Allow docking of the app
- Replace 'kwargs' property with 'get_kwargs' that is a function that returns dynamic dict of keyword arguments
- Modify the 'Show Details' menu action to toggle Show/Hide based on if the details is showing or not
- Add custom exception class for specific data validation errors
- Allow validate/fix rules by grouping
- Improve handling resolving data validation that have dependencies
- Improve error message reporting to user
- Handle
ValidationRule
check function to return dict (in addition to object) type - Minor UI fixes
- Expose the
ValidationWidget
class through the app (or other EAF to access) - Rename hook
data_validator.py
=>data_validation.py
. - Rename app title
Scene Data Validation
=>Data Validation
- Initial release of the Data Validation App
- The App provides the user interface to perform data validation in a DCC (rules to validate are passed to the App)
- The App provides an API to perform data validation in a headless state (no user interface)