12418 Commits

Author SHA1 Message Date
Mohit Yadav
4b9948dbfb
Fix Login Configuration Issue (#19109)
* Fix Login Configuration Issue

* Fix Tests
2024-12-17 23:43:07 +05:30
Pranita Fulsundar
c96c7785df
Minor: add column name to test case header (#18938)
* fix: add column name to test case header

* test: add test case for column name

* fix: return statement for columnName

* refactor: remove replacePlus function call

---------

Co-authored-by: Shailesh Parmar <shailesh.parmar.webdev@gmail.com>
2024-12-17 10:35:34 +05:30
Teddy
bd68d959f3
fix: added index on timestamp field for reindex (#19101) 2024-12-16 20:57:42 +01:00
Chirag Madlani
254fce4138
fix(ui): expand invalid state upon glossary term add (#18968)
* fix(ui): expand invalid state upon glossary term add
invalid expand state for glossary term update

* fix tests

* update glossary store upon changes in tree

* fix tests
2024-12-16 22:08:54 +05:30
Chirag Madlani
6c6b76025e
Update CODEOWNERS for UI project 2024-12-16 22:00:29 +05:30
Chirag Madlani
4d30c83c55
fix(ui): sync search value with url and state value (#19050)
* fix(ui): sync search value with url and state value

* fix flaky for user spec
2024-12-16 21:02:16 +05:30
RounakDhillon
c6774bf511
Docs: Collate Menu Updation (#19097)
Co-authored-by: Rounak Dhillon <rounakdhillon@Rounaks-MacBook-Air.local>
Co-authored-by: Prajwal214 <167504578+Prajwal214@users.noreply.github.com>
2024-12-16 14:24:03 +00:00
Akash Verma
69557e8716
fixes: #15742 Oracle stored package feature (#18852) 2024-12-16 19:35:20 +05:30
Karan Hotchandani
9ff575fd6f
Update whatsNewData.ts (#19092) 2024-12-16 16:29:04 +05:30
Siddhant
c17e7c80b2
Fixes 19073 : Resolve NullPointerException in MS Teams DQ template handling (#19062)
* fix: Resolve NullPointerException in MS Teams DQ template handling

* fix: Update DQ template logic to handle test case changes and results

Details:
Ensures a general template is created for any changes in the test case.
Generates a DQ template when the test case result is updated.

* refactor: Make testCaseResult as constant named TEST_CASE_RESULT
2024-12-16 16:07:56 +05:30
Mohit Yadav
2888e37998
Search Index read entities from index mapping (#19084) 2024-12-16 15:55:12 +05:30
Pranita Fulsundar
57e814c15d
test(e2e): Explore page tests (#19074)
* test: add e2e tests

* test for listing of entities when index is dataAsset and all

* fix: validateBucketsForIndex function

* fix: add expect to bucket and its doc_count
2024-12-16 15:47:35 +05:30
Chirag Madlani
605d205f8b
test(e2e): Ingestion bot e2e tests (#19055)
* test(e2e): domain ingestion tests
support for ingestionBot login in playwright

* added tests

* add ingestion bot tests

* update bot tests

* revert unwanted changes

* comment skipped test

* check for service within domain
2024-12-16 15:41:36 +05:30
Karan Hotchandani
4e84a2192f
Update whats new for 1.5.15 (#19089) 2024-12-16 15:33:39 +05:30
RounakDhillon
3ff3155cff
Docs: Collate Menu Updation (#19080) 2024-12-16 15:26:22 +05:30
IceS2
76523fe4e6
MINOR: Add Governance Workflow documentation (#19029)
* Add Governance Workflow documentation

* Add how to edit workflow guide

* Add how to edit workflow guide to menu
2024-12-16 10:53:31 +01:00
sonika-shah
8943559475
fix postgres offset query (#19088) 2024-12-16 15:14:29 +05:30
sonika-shah
10301f27c5
Fix : Handle Index out of bounds exception in feed api (#19079)
* Fix : Handle exception in feed api

* use nullorEmpty
2024-12-16 13:58:31 +05:30
Mayur Singal
17e5331bdc
Docs - Fix PowerBI RS Slug (#19081) 2024-12-16 12:04:46 +05:30
Mohit Yadav
50ae01e2ce
Add Algorithm option for validation in yaml (#19049)
* Add algorithm option in authentication

* ENtity Repository code remove

* Keep Default Value

* Fix Test

---------

Co-authored-by: Siddhant <86899184+Siddhanttimeline@users.noreply.github.com>
2024-12-15 01:24:03 +05:30
Mohit Yadav
521619ae32
Correct Imports for Class Converter Factory (#19057) 2024-12-15 01:20:28 +05:30
Mohit Yadav
3578a4b32d
Domain Policy Update to be non-system (#19060) 2024-12-15 01:18:12 +05:30
Mohit Yadav
01646431f6
Fix Settings Cache (#19053) 2024-12-15 01:16:55 +05:30
sonika-shah
fc6a9127d2
Minor : Fix #18606 prevent overwriting style for PUT request (#18864)
* Minor : Fix 18606 prevent overwriting domain for PUT request

* load the attributes of glossaryTerm first and override with the import

* change logging to warn type

* revert changes

---------

Co-authored-by: Sriharsha Chintalapani <harshach@users.noreply.github.com>
2024-12-14 10:35:17 -08:00
Siddhant
a3cfd8a3f0
fix: Apply offset. (#18957) 2024-12-14 09:00:58 -08:00
Karan Hotchandani
497b477be3
remove extra assignees from workflow (#19030) 2024-12-14 09:00:19 -08:00
Karan Hotchandani
78b0567164
fix downloading of app logs (#19059) 2024-12-14 18:32:16 +05:30
Abdallah Serghine
ac967dfe50
ISSUE-16094: fix s3 storage parquet structureFormat ingestion (#18660)
This aims at fixing the s3 ingestion for parquet files, current behaviour is that
the pipeline will break if it encounters a file that is not valid parquet in the
the container, this is not great as containers might container non parquet files
on purpose like for example _SUCCESS files created by spark.

For that do not fail the whole pipeline when a single container fails, instead
count it as a failure and move on with the remainder of the containers, this is
already an improvement by ideally the ingestion should try a couple more files
under the given prefix before given up, additionally we can allow users to specify
file patterns to be ignored.

Co-authored-by: Abdallah Serghine <abdallah.serghine@olx.pl>
Co-authored-by: Pere Miquel Brull <peremiquelbrull@gmail.com>
2024-12-14 11:40:23 +01:00
Ashish Gupta
9e6078f654
supported editUser permission in user tab for team page (#18987)
* supported editUser permission in user tab for team page

* remove edit all permission check in teams add/remove user api

* added playwright test for the editUser permission

* Added playwright test for data consumer user and remove no used field from the advance api call

---------

Co-authored-by: sonikashah <sonikashah94@gmail.com>
Co-authored-by: sonika-shah <58761340+sonika-shah@users.noreply.github.com>
2024-12-13 23:41:40 +05:30
Chirag Madlani
ea5a246a44
fix(ui): render column type max 3 lines and ellipsis (#19046) 2024-12-13 19:11:03 +05:30
safayavatsal
cab9245b4d
Documentation Section for using openmetadata-ops.sh usage (#19048) 2024-12-13 18:49:06 +05:30
tarunpandey23
2dff3f87be
Updated docs for azure SSO with secret client (#19042)
Co-authored-by: Tarun <tarun.p@deuexsolutions.com>
Co-authored-by: Prajwal214 <167504578+Prajwal214@users.noreply.github.com>
2024-12-13 12:54:43 +00:00
RounakDhillon
b1a41ca1ac
Docs: MSSQL Troubleshooting Doc Updation (#19045)
Co-authored-by: Rounak Dhillon <rounakdhillon@Rounaks-MacBook-Air.local>
2024-12-13 16:39:59 +05:30
RounakDhillon
4edae7c57c
Docs: Validating Connectors features (#19043)
Co-authored-by: Rounak Dhillon <rounakdhillon@Rounaks-MacBook-Air.local>
2024-12-13 16:19:08 +05:30
Aniket Katkar
edc3b97c5e
Fix the missing 1.4 image references in the documentation (#19037) 2024-12-13 15:33:35 +05:30
Chirag Madlani
88410d3d1b
fix(ui): #18001 changing pageSize will fetch pipeline with updated size (#19039) 2024-12-13 15:11:38 +05:30
RounakDhillon
63327d81be
Docs: Adding Reindex Pointer And Images Updation (#19036) 2024-12-13 13:59:46 +05:30
RounakDhillon
74885bb993
Docs: Adding Reindex Pointer And Images Updation (#19040)
Co-authored-by: Rounak Dhillon <rounakdhillon@Rounaks-MacBook-Air.local>
Co-authored-by: Prajwal214 <167504578+Prajwal214@users.noreply.github.com>
2024-12-13 07:56:02 +00:00
Chirag Madlani
ef5f274b11
fix(ui): capture and update profile info for oidc users (#19024) 2024-12-13 12:45:38 +05:30
Pere Miquel Brull
15e64b5a12
MINOR - Pass Airflow host on every failed /status call (#19022) 2024-12-13 08:14:24 +01:00
Teddy
79b2888bb5
fix: azuresql sampler logic (#19034) 2024-12-13 07:35:04 +01:00
Sweta Agarwalla
ae046c502d
Update auth test (#19031) 2024-12-13 09:41:09 +05:30
Sriharsha Chintalapani
cbd2c6ad87
Fix #issue-16041: The persona JSON schema is named Team (#19035) 2024-12-12 19:27:53 -08:00
Sachin Chaurasiya
7af510087a
minor: add support for ttf file extension in pom.xml (#19027) 2024-12-12 19:33:56 +05:30
Mohit Yadav
b01707e54d
Ignore Bot on Domain restriction (#19032) 2024-12-12 19:23:24 +05:30
RounakDhillon
2a22fda74e
Docs: Airflow docker updation (#19021)
* Docs: Airflow docker update

* Docs: Airflow Doc Updation 1.5

---------

Co-authored-by: Rounak Dhillon <rounakdhillon@Rounaks-MacBook-Air.local>
Co-authored-by: Prajwal214 <167504578+Prajwal214@users.noreply.github.com>
2024-12-12 17:30:49 +05:30
Keshav Mohta
c4066f927d
fix: convert doc in alphabetical order (#19023) 2024-12-12 16:46:02 +05:30
Siddhant
81246af0a7
Fix: Filter activity feed events for test cases and test suites. (#19004)
* fix: Filter activity feed events for test cases and suites.

* minor fix around the button label after save task tab

---------

Co-authored-by: Ashish Gupta <ashish@getcollate.io>
2024-12-12 10:54:01 +01:00
Sriharsha Chintalapani
e04e2defa1
Minor: Domain only access policy prevents bots from listing (#19017)
* Minor: Domain only access policy prevents bots listing

* Minor: Domain only access policy prevents bots listing

* Add Entity Type condition to limit the scope of NOT IN

---------

Co-authored-by: mohitdeuex <mohit.y@deuexsolutions.com>
2024-12-12 15:19:05 +05:30
Keshav Mohta
f4ff43c24c
Fixes #17888 - Implemented Cross Database Lineage (#18831) 2024-12-12 15:13:36 +05:30