14016 Commits

Author SHA1 Message Date
Satish
cad41cd445 Merge branch 'domain-revamp' of https://github.com/open-metadata/OpenMetadata into domain-revamp 2025-10-01 15:43:28 +05:30
Satish
c86fe01f59 test: fix Playwright test timeouts in domain and data product selection
- Wait for initial page load before searching in selectDomain
- Wait for initial page load before searching in selectDataProduct
- Use data-testid selector instead of text filter in selectDataProduct
- Add 15s timeout to data product click action

Prevents race conditions where search interferes with initial page load,
fixing "Target page, context or browser has been closed" timeout errors.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-01 15:38:26 +05:30
Ushran Gouhar
f2b7447114
Set searchbox width through props (#23655) 2025-10-01 15:02:11 +05:30
Satish
adf6967c40 Update tests and remove domain filter 2025-10-01 12:57:06 +05:30
satish
f16aea3d43
Merge branch 'main' into domain-revamp 2025-10-01 10:14:12 +05:30
Mohit Yadav
347c26b10c
Fix failing tests from sdk (#23641)
* Fix Failing Test

* Fix testst

* Fix table Resource tests

* Fix Glossary Test

* Fix Type Resource Test

* Add sdk path

* Fix Tests

---------

Co-authored-by: Sriharsha Chintalapani <harshach@users.noreply.github.com>
2025-09-30 17:48:00 -07:00
Shrushti Polekar
1fb18ef815
fix test (#23412) 2025-09-30 23:26:21 +05:30
Sriharsha Chintalapani
79955f6d54
Fix sdk (#23640)
* Disable sdk async test

* remove unnecessary files

* Fix sdk methods
2025-09-30 10:05:14 -07:00
Satish
107aeb0383 test: fix Playwright domain and subdomain test selectors
- Add data-testid to table rows for reliable subdomain selection
- Fix race conditions using Promise.all() pattern
- Update search box locator from getByRole to getByPlaceholder
- Add skipDomainSelection parameter to prevent redundant navigation
- Update IngestionBot test to skip domain selection when already on page

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-30 22:27:58 +05:30
Ayush Shah
dd99ab5678
feat: Add Unity Catalog data diff module to use DBX connection instead of workspaceclient (#23404) 2025-09-30 20:56:54 +05:30
Ushran Gouhar
f4026d5b84 Move add domain form styles into a new file 2025-09-30 20:40:29 +05:30
Ashish Gupta
dbf482f8da
support owner operation with editOwner and editALL for teams (#23625)
* support owner opertaion with editOwner and editALL for teams

* remove the isAdmin condition here, as for admin there will be editALL permissionby default

* fix the playwright test

* used the getPrioritizedEditPermission method for permission check
2025-09-30 20:12:54 +05:30
Ushran Gouhar
3ad495b47f Add 2px gap between label and info icon 2025-09-30 20:12:34 +05:30
Satish
3967e56c5c test: improve Playwright test reliability with timeouts and race condition fixes
- Fix race condition in subdomain creation test using Promise.all
- Add 15-second timeouts to element visibility checks across domain tests
- Add timeouts to tab clicks and count verification functions
- Prevent flaky test failures in CI/CD environments

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-30 20:02:24 +05:30
Shrushti Polekar
d0074d748a
SSO minor improvements around field level errors (#23607)
* remove provider-name from required fields for configured sso

* added live validations for public key url

* update oidc request scope to array field on ui

* added translation files

* address pr comment

* address pr comment
2025-09-30 18:59:42 +05:30
Ushran Gouhar
f093042245
Add default icons for domains and data product (#23633) 2025-09-30 17:39:26 +05:30
Ram Narayan Balaji
423fc5ce85
Fix TypeResource to handle indefinition references (#23592) 2025-09-30 15:38:28 +05:30
Satish
9738a64b6f feat: add closeSnackbar functionality to domain and data product form notifications
- Enable manual dismissal of success/error notifications for form submissions
- Update DataProductListPage and DomainDetailsPage notification calls
- Improve user control over notification lifecycle for key actions

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-30 15:22:32 +05:30
satish
883c0d7b29
feat: update domain-related test IDs for better Playwright compatibility (#23630)
- Change add domain button from 'add-entity-button' to 'add-domain'
- Add 'form-heading' test ID to drawer header titles
- Update Playwright domain utilities to use new test IDs
- Update domain spec tests to use correct button test IDs

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-authored-by: Satish <satish@Satishs-MacBook-Pro.local>
Co-authored-by: Claude <noreply@anthropic.com>
2025-09-30 15:10:41 +05:30
Satish
5fd9d357ea feat: add Playwright test compatibility to notistack notifications
- Add data-testid="alert-bar" to snackbar containers using SnackbarProps
- Add data-testid="alert-icon" to notification icons
- Add data-testid="alert-icon-close" to close buttons
- Implement close button functionality for all notification variants
- Update DomainListPage to pass closeSnackbar function
- Ensure compatibility with existing toastNotification test utility

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-30 14:27:33 +05:30
Satish
0213e92f65 fix: ensure form resets on cancel and preserves data on error
- Fix form not resetting when drawer is cancelled/closed
- Override closeDrawer in useCompositeDrawer to call onBeforeClose
- Add onCancel callbacks to reset form in all domain/data product drawers
- Prevent form reset on submission errors by rejecting promises
- Ensure form data is preserved when errors occur (e.g., duplicate names)

This ensures proper form state management:
- Forms reset when drawer is closed via X button or Cancel button
- Forms preserve user input when validation or server errors occur
- Users can fix errors and retry without re-entering all data
2025-09-30 13:35:50 +05:30
Dhruv Parmar
98c937ddde
Fix(ui): glossary pagination issue (#23438)
* fixed glossary term pagination issues

* fixed expand all recursive api calls

* removed unused code

* fixed expand all button

* fixed glossary tests

* fixed glossary review issues

* fixed search issue

* fixed playwright failure

* addressed comments
2025-09-30 13:22:12 +05:30
Ashish Gupta
f16b82296e
supported entity column list in contract security form (#23617)
* supported entity column list in contract security form

* supported nested columns
2025-09-30 12:54:10 +05:30
Satish
32145ab9df feat: enhance notification system with MUI styling and customizable messages
- Add MUI-styled snackbar notifications with themed backgrounds and borders
- Create NotificationMessage component with Untitled UI icons and ring effects
- Update notification utilities to accept React.ReactNode for flexible formatting
- Apply Typography with fontWeight: 600 to all domain/subdomain/data product notifications
- Use lightest [25] shade for subtle notification backgrounds
2025-09-30 12:42:09 +05:30
Ushran Gouhar
8a4ee0f239 Merge branch 'main' into domain-revamp 2025-09-30 11:54:30 +05:30
Sriharsha Chintalapani
4f3376c16c
Disable sdk async test (#23624) 2025-09-30 08:15:58 +02:00
Ushran Gouhar
7394bcf393
Update editor border radius (#23618)
* Update editor border radius

* Update editor border radius to 8px on all side for add domain form
2025-09-30 11:12:04 +05:30
Ashish Gupta
3926595c24
chore(ui): playwright improve contract test to avoid flakiness (#23605)
* chore(ui): playwright improve contract test to avoid flakiness

* fix the contract failing due to persona wait
2025-09-30 10:49:18 +05:30
Ashish Gupta
a852a06166
supported running status in contract execution chart (#23611) 2025-09-30 10:48:57 +05:30
Sriharsha Chintalapani
18677afd39
Add support for Tags customizable rules, capturing feedback (#23289)
* Add support for translations in multi lang

* Add Tag Feedback System

* Update generated TypeScript types

* Fix typing issues and add tests to reocgnizer factory

* Updated `TagResourceTest.assertFieldChange` to fix broken test

This is because change description values had been serialized into strings and for some reason the keys ended up in a different order. So instead of performing String comparison, we do Json comparisons

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Eugenio Doñaque <eugenio.donaque@getcollate.io>
2025-09-30 07:17:18 +02:00
Aniket Katkar
c41a1c9ab5
Chore: Add notify downstream functionality and related tests in the UI. (#23595)
* feat: add notify downstream functionality and related tests in DestinationSelectItem component

* test: enhance tests for DestinationSelectItem and ObservabilityFormTriggerItem components with resource handling
2025-09-30 10:07:38 +05:30
Aniket Katkar
cf62abe256
Add logic to show the platform info banner even in case of status=200 and the API response contains reason in case of Hybrid platform. (#23614) 2025-09-30 08:07:15 +05:30
Sriharsha Chintalapani
bb1395fc72
Implement Modern Fluent API Pattern for OpenMetadata Java Client (#23239)
* Implement Modern Fluent API Pattern for OpenMetadata Java Client

* Add Lineage, Bulk, Search static methods

* Add all API support for Java & Python SDKs

* Add Python SDKs and mock tests

* Add Fluent APIs for sdks

* Add Fluent APIs for sdks

* Add Fluent APIs for sdks, support async import/export

* Remove unnecessary scripts

* fix py checkstyle

* fix tests with new plural form sdks

* Fix tests

* remove examples from python sdk

* remove examples from python sdk

* Fix type check

* Fix pyformat check

* Fix pyformat check

* fix python integration tests

* fix pycheck and pytests

* fix search api pycheck

* fix pycheck

* fix pycheck

* fix pycheck

* Fix test_sdk_integration

* Improvements to SDK

* Remove SDK coverage for Python 3.9

* Remove SDK coverage for Python 3.9

* Remove SDK coverage for Python 3.9
2025-09-29 16:07:02 -07:00
Mohit Tilala
22a0925cd2
Fix correct snowflake object types in source url (#23612) 2025-09-29 15:31:10 +00:00
karanh37
77794b5c79 fix permission test 2025-09-29 20:30:20 +05:30
Chirag Madlani
ae503c26e5
chore: update code owner for openmetadata-ui-core-components (#23616) 2025-09-29 19:57:34 +05:30
Karan Hotchandani
4a51bbcdf3
Merge branch 'main' into domain-revamp 2025-09-29 19:49:53 +05:30
Ushran Gouhar
9b80e92f6c
Change editor toolbar background color to white for add domain form (#23587) 2025-09-29 19:49:11 +05:30
Karan Hotchandani
94bd82443f
ci(pw): increase number of machine to fasten the results (#23615) 2025-09-29 18:47:28 +05:30
Keshav Mohta
4528c0c1c4
Fixes #23416: Option To Opt Out of BigQuery Policy Tags Ingestion (#23532)
* fix: added includePolicyTags flag

* feat: added includePolicyTags
2025-09-29 18:24:10 +05:30
Mohit Yadav
5de12a8cef
Fix search index issue due to zero runtime changes (#23604)
* Remove new rebuild indexes

* Fix Reindex for vector embedding
2025-09-29 18:06:24 +05:30
satish
8f1e8b47b7
feat: Replace Ant Design toast notifications with MUI notistack (#23608)
- Added notistack dependency to UI packages
- Created NotistackUtils.ts with notification helper functions (error, success, info, warning)
- Created SnackbarContent styled component in ui-core-components package
- Configured SnackbarProvider in App.tsx with custom styled content
- Migrated domain, data product, and sub-domain components to use notistack
- Error notifications display at top-center position
- Success notifications maintain top-right position (default)
- Removed unused MuiSnackbarContent theme override

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-authored-by: Satish <satish@Satishs-MacBook-Pro.local>
Co-authored-by: Claude <noreply@anthropic.com>
2025-09-29 17:24:43 +05:30
sonika-shah
92c30f2a0a
Fix: PostgreSQL migration immutability issue with databaseSchemaHash … (#23606)
* Fix: PostgreSQL migration immutability issue with databaseSchemaHash column

* Fix: PostgreSQL migration immutability issue with databaseSchemaHash column
2025-09-29 17:07:09 +05:30
Karan Hotchandani
84e4b82aba
Merge branch 'main' into domain-revamp 2025-09-29 16:05:33 +05:30
Ushran Gouhar
265cb31ba2
Add tooltip for icon (#23588) 2025-09-29 16:01:30 +05:30
karanh37
35092f5d03 fix playwrights 2025-09-29 15:58:16 +05:30
Satish
192ccb6cf1 fix: remove hardcoded SubDomain conditional logic from EntityAvatar
- Remove special case handling for SubDomain icons
- Remove unused SubDomainIcon import
- Let getDefaultIconForEntityType handle all entity types uniformly
- Ensures consistent icon selection across all entity types

🤖 Generated with Claude Code

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-29 14:43:47 +05:30
satish
f891d09724
feat: add dynamic permission checks for create buttons in listing pages (#23610)
- Update DomainListPage to dynamically check domain.Create permission
- Update DataProductListPage to dynamically check dataProduct.Create permission
- Replace hardcoded createPermission: true with actual permission checks
- Import and use usePermissionProvider hook for both components

🤖 Generated with Claude Code

Co-authored-by: Satish <satish@Satishs-MacBook-Pro.local>
Co-authored-by: Claude <noreply@anthropic.com>
2025-09-29 14:39:04 +05:30
satish
7ffb6df57a
feat: Create reusable EntityAvatar component for consistent icon rendering (#23609)
- Created EntityAvatar component to centralize entity icon rendering logic
- Updated domain and data product detail pages to use EntityAvatar
- Updated useCellRenderer to use EntityAvatar for listing pages
- Supports custom icons via style.iconURL and custom colors via style.color
- Handles URL-based icons, icon names from ICON_MAP, and default icons

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-authored-by: Satish <satish@Satishs-MacBook-Pro.local>
Co-authored-by: Claude <noreply@anthropic.com>
2025-09-29 14:36:00 +05:30
Ushran Gouhar
2b80a885a0
Change helper text background and foreground colors for Domain type (#23594) 2025-09-29 13:49:28 +05:30