This is an automated email from the ASF dual-hosted git repository.
pawarprasad123 pushed a change to branch ATLAS-5246-v1
in repository https://gitbox.apache.org/repos/asf/atlas.git
discard a8464fd95 ATLAS-5288: ATLAS UI: Dashboard - Classification and Admin
Audits (#621)
discard ec6b3c907 ATLAS-5247, ATLAS-5248, ATLAS-5249, ATLAS-5250, ATLAS-5252,
ATLAS-5254, ATLAS-5255: ATLAS UI: Dashboard All cards. (#620)
discard bad84f1dc ATLAS-5251: ATLAS UI : Dashboard - Latest Entities List
(#619)
discard 402a09c2a ATLAS-5256: ATLAS UI: Header - Create Button and Dropdown
Menu. (#618)
discard b0e2bbfde ATLAS-5267: ATLAS UI: Create Glossary: Add Import glossary
terms tab (template + upload) (#617)
discard 334161b4f ATLAS-5287: ATLAS UI: Dashboard- search bar with dropdown
(#616)
discard 32ba6263e ATLAS-5286: ATLAS UI: Dashboard - Filter query and shared
view helpers changes (#615)
add a0acdc234 ATLAS-5156: Import failure due to missing support for
handling multiple relationship types under a single attribute (#478)
add 6ec5cc366 ATLAS-5285: ATLAS UI: Dashboard - Common changes that are
related to refresh the page. (#614)
add ae973e76d ATLAS-4988: BusinessMetadata with attribute of data type
Array takes time to Delete. (#490)
new 0600ce92d ATLAS-5286: ATLAS UI: Dashboard - Filter query and shared
view helpers changes (#615)
new d3a75e45d ATLAS-5287: ATLAS UI: Dashboard- search bar with dropdown
(#616)
new 2ca44bb2c ATLAS-5267: ATLAS UI: Create Glossary: Add Import glossary
terms tab (template + upload) (#617)
new 42d2ff924 ATLAS-5256: ATLAS UI: Header - Create Button and Dropdown
Menu. (#618)
new 1a282a3b1 ATLAS-5251: ATLAS UI : Dashboard - Latest Entities List
(#619)
new 0674eef6b ATLAS-5247, ATLAS-5248, ATLAS-5249, ATLAS-5250, ATLAS-5252,
ATLAS-5254, ATLAS-5255: ATLAS UI: Dashboard All cards. (#620)
new fb7cdcd08 ATLAS-5288: ATLAS UI: Dashboard - Classification and Admin
Audits (#621)
new 959ed6aac ATLAS-5246: ATLAS UI: Dashboard Overview - React UI
Dashboard Implementation
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (a8464fd95)
\
N -- N -- N refs/heads/ATLAS-5246-v1 (959ed6aac)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
The 8 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../main/java/org/apache/atlas/AtlasClientV2.java | 26 +-
.../java/org/apache/atlas/AtlasClientV2Test.java | 22 +
dashboard/src/components/CreateDropdown/index.ts | 17 +
dashboard/src/components/DialogShowMoreLess.tsx | 1 +
dashboard/src/components/Modal.tsx | 110 ++-
.../useAsyncPending.ts} | 36 +-
dashboard/src/redux/reducers/reducers.ts | 2 +
.../{createBMSlice.ts => dashboardRefreshSlice.ts} | 35 +-
.../refreshDashboardHome.ts} | 21 +-
dashboard/src/views/Layout/Header.tsx | 23 +-
dashboard/src/views/SideBar/SideBarBody.tsx | 71 +-
.../main/java/org/apache/atlas/AtlasErrorCode.java | 1 +
.../atlas/type/AtlasBusinessMetadataType.java | 43 ++
.../test/java/org/apache/atlas/TestUtilsV2.java | 15 +
.../repository/store/graph/AtlasDefStore.java | 20 +-
.../store/graph/AtlasTypeDefGraphStore.java | 30 +-
.../store/graph/v2/AtlasAbstractDefStoreV2.java | 24 +-
.../graph/v2/AtlasBusinessMetadataDefStoreV2.java | 186 ++++--
.../store/graph/v2/AtlasTypeDefGraphStoreV2.java | 18 +-
.../store/graph/v2/EntityGraphMapper.java | 91 ++-
.../org/apache/atlas/store/AtlasTypeDefStore.java | 4 +-
.../store/graph/AtlasTypeDefGraphStoreTest.java | 8 +-
.../v2/AtlasBusinessMetadataDefStoreV2Test.java | 79 +++
...tyGraphMapperMultipleRelationshipTypesTest.java | 742 +++++++++++++++++++++
.../java/org/apache/atlas/web/rest/TypesREST.java | 41 +-
.../atlas/web/adapters/TypeDefsRESTTest.java | 20 +-
.../org/apache/atlas/web/rest/TypesRESTTest.java | 71 +-
27 files changed, 1524 insertions(+), 233 deletions(-)
copy dashboard/src/{api/apiUrlLinks/entityFormApiUrl.ts =>
hooks/useAsyncPending.ts} (55%)
copy dashboard/src/redux/slice/{createBMSlice.ts => dashboardRefreshSlice.ts}
(65%)
copy dashboard/src/{api/apiMethods/headerApiMethods.ts =>
utils/refreshDashboardHome.ts} (58%)
create mode 100644
repository/src/test/java/org/apache/atlas/repository/store/graph/v2/EntityGraphMapperMultipleRelationshipTypesTest.java