* support browser language
* moved map to utils
* fixed sidebar not rendering and unit tests
* fixed localization rendering
---------
Co-authored-by: Chirag Madlani <12962843+chirag-madlani@users.noreply.github.com>
* fix data quality tab pagination issue
* added test
* fix re-render issue on pagination param update
* update test to create multiple test case data
* Enhance query parameter handling in TestCases and useTableFilters components
- Updated TestCases component to use brackets format for array query parameters.
- Modified useTableFilters to handle both array format and comma-separated strings for filter values.
- Removed unnecessary array to string conversion to preserve array format in query parameters.
---------
Co-authored-by: Sriharsha Chintalapani <harshach@users.noreply.github.com>
Co-authored-by: Shailesh Parmar <shailesh.parmar.webdev@gmail.com>
* 🎉 Init
* replace TARGET with EXPOSURE
* refactor and document
* add docs
* handle missing type/entity not matching
* linter
* update docs
* refactor for using label for communicating FQN as name field cannot contain special characters other than underscore. Storing dots in the name works for now but there is a deprecation warning and it will fail in the future.
* improve docs
* improve docs
* improve logging
* refactor for usage of meta.open_metadata_fqn
* linting
* update docs
* update docs
* fix docs
* 🎉 Add tests
* fix the api version endpoint page breaking due to STRING changeDescription updated
* change the logic and use same function which displayName use
* added unit test for schemaVersionUtils
* change function name to be generic
* added support for dataDisplayType diff supported for other supporting entity as well
* adde playwright test
* fix the table column selection not persisting for all action in dropdown
* added playwright test for the test
* move the utils changes to the component itself
* updated the code as the setter was not needed
* modify state name and remove unnecessary conditions
* supported rendering all suggestion on user avatar click
* fix the more count mismatched after user specific suggestion is clicked
* minor unit test fix
* supported playwright test for the changes
* fix the playwright and multiple user icon being visible on UI
* optimize code and added unit test for it
* fix the case where after more than 3 avatar, weren't able to click and fix the issue around reject suggestion
* minor update
* fix the more count in negative and last avatar with more button, accept or reject also eliminate the more button even having suggestion to fetch
* added more playwright test usecases around the issue faced while development
- Added checks for the visibility of the revoke button and the authentication mechanism before performing actions.
- Improved flow to ensure appropriate button clicks based on the current UI state.
* fix(airflow): correctly extract owners from serialized Airflow DAGs
Airflow serialization format wraps tasks under `__var` and `__type`.
Previously, the OpenMetadata Airflow connector failed to extract task owners properly in this format.
This patch:
- Flattens `__var` when parsing task owners
- Fallbacks to `default_args["owner"]` if no task-level owner is explicitly present
- Ensures correct DAG owner is picked as the most common task owner
- Handles compatibility with older Airflow versions
Fixes: #21106
* test(airflow): add tests for owner extraction from serialized Airflow DAGs
Adds new test cases to validate owner extraction logic:
- Owners from serialized task format (`__var`)
- Fallback to `default_args['owner']` if task owners are missing
- Resolution of most common owner
- Compatibility with unstructured or missing owners
* remove test version specific comment
* simplify comments and warnings
* fix return statement
* fixing formatting
* adding handling of default args
* fixing and adding more tests
* Fix#21908: Add Persona configuration per User
* Add default persona, add tests for User defaultPersona
* Add default persona, add tests for User defaultPersona
* Fix tests