5329 Commits

Author SHA1 Message Date
satish
7b5834e044
Domain, Sub-domain, Data Product listing (#23374) (#23501)
* Domain, Sub-domain, Data Product listing (#23374)

* Domain, Sub-domain, Data Product listing

* feat: implement atomic design architecture with micro hooks for entity listings

This commit introduces a comprehensive atomic design system that eliminates code duplication while providing maximum flexibility through composable micro hooks.

## Key Features

### Atomic Design Structure
- Created `src/components/common/atoms/` with feature-based organization
- Implemented micro hooks (5-15 lines each) with single responsibilities
- Added comprehensive JSDoc documentation for each micro hook

### Entity Listing Improvements
- Refactored domain, subdomain, and data product listings
- Simplified entity-specific hooks using shared domain atoms
- Implemented flexible `useDataTable({ listing })` interface

### Performance & Stability
- Fixed infinite API calls and re-render loops
- Implemented proper useCallback/useMemo patterns with stable dependencies
- Added error boundaries and proper error handling

### UX Improvements
- Fixed search to trigger on Enter key (eliminated race conditions)
- Updated sidebar navigation to use singular forms for sub-menu items
- Fixed navigation paths for data product details
- Added proper translation keys and removed hardcoded strings

### Bug Fixes
- Fixed filter field mappings to use `.keyword` for exact matching
- Fixed data product navigation paths (`/dataProduct` vs `/data-product`)
- Fixed filter styling to use original SearchDropdown components
- Temporarily disabled problematic domainType filter due to API errors

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

Co-Authored-By: Claude <noreply@anthropic.com>

* fix(ui): add i18n support and enhance atomic hooks for entity listings

- Add useDelete hook with proper i18n for entity deletion with confirmation modal
- Add useCardView hook for flexible card layout rendering
- Add useViewToggle hook for table/card view switching
- Add useDomainCardTemplates for domain and data product card layouts
- Add TagsCell component for rendering glossary and classification tags
- Refactor useTableRow to use composition with useCellRenderer
- Fix i18n translations for delete confirmation messages
- Update Domain, DataProduct, and SubDomains pages to use new atomic hooks
- Add missing translation keys to en-us.json

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

Co-Authored-By: Claude <noreply@anthropic.com>

* feat(ui): implement MUI-based tree select components and atomic design patterns

- Add MUIAsyncTreeSelect component with lazy loading and keyboard navigation
- Implement MUIGlossaryTagSuggestion for hierarchical glossary term selection
- Add MUITagSuggestion for improved tag selection experience
- Create reusable TagChip component for consistent tag display
- Implement atomic drawer hooks for form handling
- Update domain and data product listing pages with new components
- Add comprehensive tree selection hooks (data, expansion, selection, search)
- Enhance form utilities with MUI field types

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

Co-Authored-By: Claude <noreply@anthropic.com>

* feat(ui): enhance drawer styling and add MUI form components

- Add gradient background image to drawer header with 30% opacity
- Apply rounded top corners (16px) to drawer for modern appearance
- Add box shadow to drawer footer for visual hierarchy
- Introduce MUIFormItemLabel component for consistent form labels
- Fix TypeScript any type warning in AddDomainForm
- Enhance domain listing pages with improved drawer integration

🤖 Generated with Claude Code

Co-Authored-By: Claude <noreply@anthropic.com>

* feat(ui): implement MUI-based user/team selection component with atomic design

- Add MUIUserTeamSelect component with atomic design patterns
- Create ProfilePicture atomic component for consistent avatar rendering
- Update AddDomainForm to use new MUI components instead of legacy selectors
- Enhance useCellRenderer to use ProfilePicture for owner display
- Add support for user-only, team-only, and mixed selection modes
- Implement smart selection logic preventing user/team conflicts
- Add internationalization support for new selection component

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

Co-Authored-By: Claude <noreply@anthropic.com>

* feat(ui): add MUI domain select component and fix drawer close functionality

- Implement MUIDomainSelect component using MUIAsyncTreeSelect for hierarchical domain selection
- Fix drawer close/cancel button functionality with proper onBeforeClose pattern
- Standardize form submission patterns across domain and data product forms
- Enhance MUIAsyncTreeSelect with keyboard navigation and scroll-to-view
- Clean EntityReference objects to match API schema requirements
- Remove duplicate onSubmit handlers in drawer forms

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

Co-Authored-By: Claude <noreply@anthropic.com>

* feat(ui): implement MUI-based color and icon picker components for domain forms

- Add MUIColorPicker component with predefined color palette and accessibility features
- Add MUIIconPicker component with icon selection and URL input capabilities
- Update AddDomainForm to use new MUI components with improved layout and responsive design
- Create IconUtils for centralized icon rendering functionality
- Update cell renderer to handle icons properly with fallback support
- Enhance form styling with backdrop blur adjustments and form label theming
- Add missing translation keys for icon-plural and url labels
- Standardize drawer widths across domain and data product forms

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

Co-Authored-By: Claude <noreply@anthropic.com>

---------

Co-authored-by: Satish <satish@Satishs-MacBook-Pro.local>
Co-authored-by: Claude <noreply@anthropic.com>

* Remove entity description in row

* Add placeholders for owners and experts fields

* Clear the form on submit

* Reset form on submit and cancel

* Revert "Reset form on submit and cancel"

This reverts commit e2a19cfd1005d0d967530931287c0a125595eef7.

* add explore filter

* Add icons

* Fix search functionality for icons

* Change width of form from 750px to 670px for subdomain and data product

* retain filters in url

* Change background color Editor toolbar to white

* Fix no data available for glossary tags

* show filter selections

* Revert "Change background color Editor toolbar to white"

This reverts commit a0bdc2231ab0d40a47ef91bd425deb2fb1d2dc87.

* persist filters in url and selection

* minor fixes

* fix tests

* fix tests

* fix tests

* fix playwrights

* Change helper text background and foreground colors for Domain type (#23594)

* 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>

* 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>

* 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>

* fix playwrights

* Add tooltip for icon (#23588)

* 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>

* Change editor toolbar background color to white for add domain form (#23587)

* fix permission test

* Update editor border radius (#23618)

* Update editor border radius

* Update editor border radius to 8px on all side for add domain form

* 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

* 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

* 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>

* 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>

* 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>

* Add default icons for domains and data product (#23633)

* 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>

* Add 2px gap between label and info icon

* Move add domain form styles into a new file

* 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>

* Update tests and remove domain filter

* Set searchbox width through props (#23655)

* 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>

* test: remove redundant selectDomain calls in IngestionBot test

Remove duplicate selectDomain calls before addServicesToDomain since
the function already handles domain selection internally via goToAssetsTab.
This prevents potential race conditions and timeout issues on CI.

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

Co-Authored-By: Claude <noreply@anthropic.com>

* Add placeholder for domain field (#23658)

* fix(playwright): handle search debounce race condition in domain/data product selection

Fixed race condition where domain/data product rows were clicked before search debounce completed:
- Added loader wait cycle after search to ensure debounce completes before clicking
- Applied to both selectDomain and selectDataProduct functions
- Fixes 3 failing tests: Create DataProducts, Update custom properties, Clear assets after deletion

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

Co-Authored-By: Claude <noreply@anthropic.com>

* refactor(playwright): extract search debounce wait pattern and remove manual timeouts

- Created waitForSearchDebounce() helper function to encapsulate debounce wait logic
- Replaced duplicate code in selectDomain() and selectDataProduct()
- Removed all manual { timeout: 15000 } specifications from domain.ts, Domains.spec.ts, and SubDomainPagination.spec.ts
- Uses Playwright's default 30s timeout instead of manual timeout specifications

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

Co-Authored-By: Claude <noreply@anthropic.com>

* fix(ui): improve MUIUserTeamSelect with freeSolo and request cancellation

Enhanced the user/team selection component to fix typing issues and race conditions:

- Added freeSolo prop to allow immediate typing without requiring dropdown interaction
- Modified open state logic to prevent empty dropdown when no search results found
- Implemented AbortController signal passing through fetchUsers/fetchTeams to searchData
- Updated searchData API to accept optional AbortSignal parameter for request cancellation
- Prevents race conditions where stale API responses overwrite newer search results

This ensures smooth typing experience and reliable search results in user/team selection fields.

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

Co-Authored-By: Claude <noreply@anthropic.com>

* refactor(ui): improve MUIUserTeamSelect async search and state management

- Separate user and team options into independent state (matching antd version)
- Add freeSolo prop to allow immediate typing without selection
- Force listbox remount with key prop to fix async dropdown not updating
- Remove request cancellation logic and deduplication (uniqBy)
- Update handlers to filter freeSolo string values

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

Co-Authored-By: Claude <noreply@anthropic.com>

* Disable next button when there are no items (#23685)

* fix(playwright): reduce search debounce timeout to 999ms

Add 999ms timeout to loader appearance check in waitForSearchDebounce
to align with component's 300ms search debounce and prevent long waits

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

Co-Authored-By: Claude <noreply@anthropic.com>

---------

Co-authored-by: Satish <satish@Satishs-MacBook-Pro.local>
Co-authored-by: Claude <noreply@anthropic.com>
Co-authored-by: Ushran Gouhar <ushran987@gmail.com>
Co-authored-by: karanh37 <karanh37@gmail.com>
Co-authored-by: Karan Hotchandani <33024356+karanh37@users.noreply.github.com>
Co-authored-by: Ushran Gouhar <43915259+ugouhar@users.noreply.github.com>
2025-10-03 11:57:43 +05:30
Akash Verma
5bb2924a6a
Fix #16081 : Add support for SQL Server hierarchyid, geography, and geometry types (#23527) 2025-10-03 11:46:01 +05:30
Akash Verma
4d68fe7a10
feat: Add ML model lineage support (#23494) 2025-10-03 11:38:41 +05:30
Dhruv Parmar
749dd0de14
fixed flaky large glossary term (#23663) 2025-10-03 10:25:21 +05:30
Pere Miquel Brull
e0be2820e1
supported timezone and column name fields in SLA form (#23657)
* MINOR - Add SLA fields

* Update generated TypeScript types

* added ui support for the timezone and columnName

* MINOR - Add SLA fields

* Update generated TypeScript types

* change the timezone as the enum and added field placeholder

* display column name on ui

* Fix unit test

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Ashish Gupta <ashish@getcollate.io>
Co-authored-by: Aniket Katkar <aniketkatkar97@gmail.com>
2025-10-02 17:22:37 +02:00
Chirag Madlani
3cd15bd053
fix(test): flaky customize details page test (#23679) 2025-10-02 19:29:23 +05:30
Aniket Katkar
5e09fc6e15
refactor: optimize mapFields caching in JSONLogicSearchClassBase (#23686) 2025-10-02 13:56:13 +02:00
Aniket Katkar
d567935667
test build failure fix (#23684) 2025-10-02 12:06:49 +02:00
Chirag Madlani
354f20faa5
chore(ui): Impact analysis style updates (#23560)
* chore(ui): Impact analysis style updates

* update icons

* minor fixes

* add fullscreen button and fix tests

* update tooltip

* style update

* minor fix

* update translation and fix filter for impact analysis

* update tests and sonarqube issues

* update missing suspense

* fix tests

* fix playwright tests
2025-10-02 12:22:59 +05:30
Aniket Katkar
5c7eb2b822
Chore(UI): Playwright flakiness fix for ServiceIngestion. (#23518)
* fix: Enhance response handling in advanced search and improve toast notification message in service deletion

* Fix the Advanced Search spec

* Revert advanced search changes
2025-10-02 11:31:28 +05:30
Ram Narayan Balaji
3e3c675760
Improvement: Add reviewers to Metrics (#23662)
* Add reviewers to Metrics

* Update generated TypeScript types

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2025-10-02 10:45:39 +05:30
Ashish Gupta
5af269b618
updated the contract SLA section list icon (#23656) 2025-10-01 19:01:16 +05:30
Tomas Montiel Prieto
e6edd3c760
Minor - add executedQuery field (#23627)
* add executedQuery field

* Update generated TypeScript types

* Trigger CI

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2025-10-01 15:10:31 +02:00
Eugenio
dff2b394d5
Fix classification scoring (#23523)
* Add `reason` property to `TagLabel`

This is to understand what score was used for selecting the entity

* Build `TagLabel`s with `reason`

* Increase `PIIProcessor._tolerance`

This is so we correctly filter out low scores from classifiers while still maintaining the normalization that filters out confusing outcomes.

e.g: an output with scores 0.3, 0.7 and 0.75, would initially filter the 0.3 and then discard the other two because they're both relatively high results.

* Make database and DAO changes needed to persist `TagLabel.reason`

* Update generated TypeScript types

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2025-10-01 12:11:14 +00:00
Adrià Manero
0f1b2aa681
Fixes #23125: Notification template validation and reset (#23536)
* Setup SPI Pattern for seed data path on OM commercial version

* Implement and test Notification Template validation and reset endpoints

* Relocate system-default notification templates

* Update generated TypeScript types

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Aniket Katkar <aniketkatkar97@gmail.com>
2025-10-01 13:30:41 +02:00
Shrushti Polekar
a0fea6d11d
fix(ui): mentions in notification box (#23619)
* fix mentions in notification box

* fix activity feed mention redirection issue

* added unit test

* added playwright test

* address pr comments

* address pr comment
2025-10-01 16:21:43 +05:30
Aniket Katkar
ae39c7e68e
Fix(UI): Add service form bugs (#23613)
* Add default filter pattern fields for custom and share point drive connections

* Add translations for additional properties

* Fix the additional properties field showing in the default filters form
Improve the additional properties field input in the form to make it clear with a label

* Update generated TypeScript types

* Empty commit

* refactor(tests): streamline imports in Directory, File, Spreadsheet, and Worksheet class tests

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2025-10-01 15:18:24 +05:30
Ashish Gupta
1012247a7e
chore(ui): fix data contracy flaky test are data asset button check (#23653) 2025-10-01 15:01:43 +05:30
Keshav Mohta
6b7262a8ea
Feature: MF4 File Reader (#23308)
* feat: mf4 file reader

* refactor: removed schema_from_data implementation

* test: added tests for mf4 files
2025-10-01 11:19:00 +02:00
Sriharsha Chintalapani
721cdfa51e
Fix creation of Glossary when domain is selected (#23650)
* Fix creation of Glossary when domain is selected

* fix the playwright test around creation when there is active domain on project level

* fix the being scrolled when screen is scrolling

---------

Co-authored-by: Ashish Gupta <ashish@getcollate.io>
2025-10-01 14:28:25 +05:30
Pere Miquel Brull
3842678776
Rename contract consumers and display data on UI (#23626)
* MINOR - Rename contract consumers

* Update generated TypeScript types

* supported contract security data display ui with test

* fix the row_filter data being send on API if they don't posses data

* fix the playwright test because of breaking of adding new rule

* reverted the commented code

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Ashish Gupta <ashish@getcollate.io>
2025-10-01 10:53:13 +02:00
Marat Khambelov
df76f1d225
Improve the Russian translation dictionary #23643 (#23644)
Co-authored-by: MaratKhambelov <mkhambelov@ecom.tech>
2025-10-01 09:44:58 +02:00
Pere Miquel Brull
375e001dd9
MINOR - Fix S3 logging from ingestion pipelines (#23590)
* MINOR - Fix S3 logging from ingestion pipelines

* Update generated TypeScript types

* config

* update s3 configurations for streamable logs

* Update generated TypeScript types

* update s3 configurations for streamable logs

* update s3 configurations for streamable logs

* update s3 configurations for streamable logs

* SSE off by default

* Update log retrieval to use s3 if ingestion runner has streamable logs enabled

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Pablo Takara <pjt1991@gmail.com>
2025-10-01 09:44:17 +02:00
Shrushti Polekar
1fb18ef815
fix test (#23412) 2025-09-30 23:26:21 +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
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
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
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
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
Ashish Gupta
77cfe7849b
Modify ContractExecutionChart to occupy full space and chart bar's start from left (#23602)
* modify contract execution chart to occupy full space

* remove unwanted css

* move the chart bar's to be aligned in left hand side
2025-09-29 11:00:02 +05:30
Ajith Prasad
ed71f3629a
Field level validation in SSO configuration (#23562)
* Field level validation in SSO configuration

* Update generated TypeScript types

* Ldap field error response

* add form field level error validations

* field level error highlight style fix

* fix array field level error highlight issue

* minor style fix for array fields

* resolve merge conflict

* error highlight for text area fields

* fix test

* Fixed tests and improvement

* added unit test

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: shrushti2000 <shrushtipolekar@gmail.com>
2025-09-29 10:54:51 +05:30
Aniket Katkar
acc79aab1e
Chore(UI): Drive service bug fixes and unit tests (#23554)
* feat: Add file type, extension, and version fields to file details

- Updated  in  to include , , and .
- Introduced new test file  to cover the functionality of the .
- Enhanced  to export the  class for testing purposes.
- Created  to implement tests for the  functionality.
- Updated  to include  in the default fields for worksheets.

* feat: Add default filter patterns for directories, files, spreadsheets, and worksheets in Drive service

* fix: Add margin to advanced properties collapse for better spacing

* Update generated TypeScript types

* Add tests for new pages
refactor: Move interface definitions for detail page tabs to their respective utils files to fix circular dependency
Add unit tests for SpreadsheetDetailsUtils and WorksheetDetailsUtils

- Created SpreadsheetDetailsUtils.test.tsx to test the functionality of the SpreadsheetDetailsUtils module, including tab rendering and widget retrieval.
- Created WorksheetDetailsUtils.test.tsx to test the functionality of the WorksheetDetailsUtils module, covering tab rendering and widget handling.
- Implemented various test cases to ensure correct behavior for different scenarios, including edge cases for both modules.
- Mocked necessary components and utilities to isolate tests and ensure reliable results.

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2025-09-29 09:42:16 +05:30
Ashish Gupta
ab11983741
support not_contains in contract semantic form (#23485) 2025-09-28 00:06:03 +02:00
Shrushti Polekar
134ab5d538
fix(ui): SSO feedbacks and improvements (#23553)
* fix dropdown issue

* update breadcrumb icon

* address styling feedbacks

* fix error taost  content panel resize issue

* update doc stylings

* minor style updates

* update doc stylings

* refactor code to avoid global style

* update delete scim modal

* minor style fix

* minor fix

* fix select dropdown styles

* refactor code to remove !important

* improve login experience

* Update generated TypeScript types

* fix unit test

* update scroll behaviour

* remove eslint issues

* remove old icons

* address pr comment

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2025-09-27 21:19:21 +05:30
Harshit Shah
78c613445b
fix(ui): Typo in landing page and flaky tests (#23601) 2025-09-27 07:46:09 -07:00
Ashish Gupta
40eaae13e7
minor improvement around contract security initial data pick (#23600) 2025-09-27 16:04:38 +05:30
Ashish Gupta
6688cf2dc0
fix the contract description being cut (#23598) 2025-09-27 12:48:18 +05:30
Ashish Gupta
46c49a959d
updated contract security form details (#23591)
* updated contract security form details

* modify the security form as per semantic styling

* modify unit test as per form change

* change the place of add-row-filter

* render the description component conditionally and increase the chart fetch limit and and increase the execution number in limited width

* fix the sonar test
2025-09-27 11:21:41 +05:30
Ashish Gupta
b38890cfa4
chore(ui): Fix Data Contract contains flaky test and updated Terms of Service icon (#23570)
* chore(ui): Fix Data Contract contains flaky test

* updated the terms of service tab icon and increase some panel width
2025-09-27 00:16:17 +05:30
Aniket Katkar
1506c29387
Revert "Fix(ui): Force Test Connection (#21734)"\n\nThis reverts commit b1a1cd89a743b321b2726e5c85f66408c8687dc8. (#23567) 2025-09-26 22:12:38 +05:30
Ashish Gupta
dc474e44f6
supported created_by and created_at info to display in UI of DataContract (#23531)
* supported created by and at info of data contract

* re-order sla select unit options

* added unit test for sla component and fix data visibility
2025-09-26 21:16:22 +05:30
Aniket Katkar
063e37a8d8
fix: improve timestamp sorting logic in IngestionRecentRuns component (#23572) 2025-09-26 20:31:30 +05:30
Ashish Gupta
f934b79d65
supported scroll in certification popover list (#23534) 2025-09-26 20:17:19 +05:30
Ashish Gupta
bcae472cc0
improve playwright test of bulk import/edit (#23538) 2025-09-26 20:17:09 +05:30