From 790011d40b9fe97373730e875e00237bd2d97904 Mon Sep 17 00:00:00 2001
From: Pedro Silva
Date: Tue, 3 Oct 2023 04:04:55 +0100
Subject: [PATCH 1/4] feat(docs): Corrects release version for custom ownership
types. (#8847)
---
docs/ownership/ownership-types.md | 2 +-
.../examples/ownership/ownership_type.json | 19 +++++++++++++------
2 files changed, 14 insertions(+), 7 deletions(-)
diff --git a/docs/ownership/ownership-types.md b/docs/ownership/ownership-types.md
index f1b951871a5a2..243f638a324ad 100644
--- a/docs/ownership/ownership-types.md
+++ b/docs/ownership/ownership-types.md
@@ -7,7 +7,7 @@ import TabItem from '@theme/TabItem';
**🤝 Version compatibility**
-> Open Source DataHub: **0.10.3** | Acryl: **0.2.8**
+> Open Source DataHub: **0.10.4** | Acryl: **0.2.8**
## What are Custom Ownership Types?
Custom Ownership Types are an improvement on the way to establish ownership relationships between users and the data assets they manage within DataHub.
diff --git a/metadata-ingestion/examples/ownership/ownership_type.json b/metadata-ingestion/examples/ownership/ownership_type.json
index 5f1d3019d2a77..4a194c78a3b72 100644
--- a/metadata-ingestion/examples/ownership/ownership_type.json
+++ b/metadata-ingestion/examples/ownership/ownership_type.json
@@ -1,7 +1,14 @@
-{
- "urn": "urn:li:ownershipType:architect",
- "info": {
- "name": "Architect",
- "description": "Technical person responsible for the asset"
+[
+ {
+ "auditHeader":null,
+ "entityType":"ownershipType",
+ "entityUrn": "urn:li:ownershipType:architect",
+ "changeType":"UPSERT",
+ "aspectName":"ownershipTypeInfo",
+ "aspect":{
+ "value":"{\"name\": \"Architect\", \"description\": \"Technical person responsible for the asset\", \"created\": {\"time\": 1674291843000, \"actor\": \"urn:li:corpuser:jdoe\", \"impersonator\": null},\n\"lastModified\": {\"time\": 1674291843000, \"actor\": \"urn:li:corpuser:jdoe\", \"impersonator\": null}}",
+ "contentType":"application/json"
+ },
+ "systemMetadata":null
}
-}
\ No newline at end of file
+]
\ No newline at end of file
From 2f0616ea5b2c1927107a4726773c907a59a0483f Mon Sep 17 00:00:00 2001
From: Erik McKelvey
Date: Mon, 2 Oct 2023 20:05:29 -0700
Subject: [PATCH 2/4] docs: fix typo in impact-analysis.md (#8915)
---
docs/act-on-metadata/impact-analysis.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/act-on-metadata/impact-analysis.md b/docs/act-on-metadata/impact-analysis.md
index 2c10e571cf911..9728a480efe32 100644
--- a/docs/act-on-metadata/impact-analysis.md
+++ b/docs/act-on-metadata/impact-analysis.md
@@ -38,7 +38,7 @@ Follow these simple steps to understand the full dependency chain of your data e
-4. Slice and dice the result list by Entity Type, Platfrom, Owner, and more to isolate the relevant dependencies
+4. Slice and dice the result list by Entity Type, Platform, Owner, and more to isolate the relevant dependencies
From 83a7dad20e7420b7283db22a2964d05ee3c42a7d Mon Sep 17 00:00:00 2001
From: Lucas Phan
Date: Tue, 3 Oct 2023 10:05:11 -0700
Subject: [PATCH 3/4] =?UTF-8?q?feat(chrom-ext-editable):=20set=20readOnly?=
=?UTF-8?q?=20to=20false=20so=20that=20side=20navigati=E2=80=A6=20(#8930)?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../src/app/entity/shared/embed/EmbeddedProfile.tsx | 12 +++++++-----
1 file changed, 7 insertions(+), 5 deletions(-)
diff --git a/datahub-web-react/src/app/entity/shared/embed/EmbeddedProfile.tsx b/datahub-web-react/src/app/entity/shared/embed/EmbeddedProfile.tsx
index 31a736e30bdc0..df928fc408de6 100644
--- a/datahub-web-react/src/app/entity/shared/embed/EmbeddedProfile.tsx
+++ b/datahub-web-react/src/app/entity/shared/embed/EmbeddedProfile.tsx
@@ -55,6 +55,8 @@ export default function EmbeddedProfile({ urn, entityType, getOverridePropert
return ;
}
+ const readOnly = false;
+
return (
({ urn, entityType, getOverridePropert
-
+
-
+
-
+
-
+
-
+
>
)}
From 0a5e7d176e103c14f36cd00cd1b930c5da55e1ea Mon Sep 17 00:00:00 2001
From: Ellie O'Neil <110510035+eboneil@users.noreply.github.com>
Date: Tue, 3 Oct 2023 11:53:05 -0700
Subject: [PATCH 4/4] fix(client): use value for RelationshipDirection (#8912)
---
metadata-ingestion/src/datahub/ingestion/graph/client.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/metadata-ingestion/src/datahub/ingestion/graph/client.py b/metadata-ingestion/src/datahub/ingestion/graph/client.py
index e22d48d0af80a..673ada4f73051 100644
--- a/metadata-ingestion/src/datahub/ingestion/graph/client.py
+++ b/metadata-ingestion/src/datahub/ingestion/graph/client.py
@@ -805,7 +805,7 @@ def get_related_entities(
url=relationship_endpoint,
params={
"urn": entity_urn,
- "direction": direction,
+ "direction": direction.value,
"relationshipTypes": relationship_types,
"start": start,
},