You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Note that the DataHub Cloud Event Source does _not_ yet support the full [Metadata Change Log V1](../events/metadata-change-log-event.md) event stream.
Copy file name to clipboardexpand all lines: docs/automations/docs-propagation.md
+6
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,11 @@
1
1
# Documentation Propagation Automation
2
2
3
+
:::info
4
+
5
+
This feature is currently in open beta in Acryl Cloud. Reach out to your Acryl representative to get access.
6
+
7
+
:::
8
+
3
9
## Introduction
4
10
5
11
Documentation Propagation is an automation automatically propagates column and asset (coming soon) descriptions based on downstream column-level lineage and sibling relationships.
Copy file name to clipboardexpand all lines: docs/automations/glossary-term-propagation.md
+6
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,12 @@
2
2
3
3
<FeatureAvailabilitysaasOnly />
4
4
5
+
:::info
6
+
7
+
This feature is currently in open beta in Acryl Cloud. Reach out to your Acryl representative to get access.
8
+
9
+
:::
10
+
5
11
## Introduction
6
12
7
13
Glossary Term Propagation is an automation feature that propagates classification labels (Glossary Terms) across column and assets based on downstream lineage and sibling relationships.
Copy file name to clipboardexpand all lines: entity-registry/src/main/java/com/linkedin/metadata/aspect/patch/template/dashboard/DashboardInfoTemplate.java
+13
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,7 @@ public class DashboardInfoTemplate implements ArrayMergingTemplate<DashboardInfo
# Auto-generated by python-build/generate_release_scripts.py. Do not edit manually.
3
+
2
4
set -euxo pipefail
3
5
6
+
ROOT=../..
7
+
MODULE=datahub_airflow_plugin
8
+
4
9
if [[ !${RELEASE_SKIP_TEST:-} ]] && [[ !${RELEASE_SKIP_INSTALL:-} ]];then
5
-
../../gradlew build # also runs tests
10
+
${ROOT}/gradlew build # also runs tests
6
11
elif [[ !${RELEASE_SKIP_INSTALL:-} ]];then
7
-
../../gradlew install
12
+
${ROOT}/gradlew install
8
13
fi
9
14
10
-
MODULE=datahub_airflow_plugin
11
-
12
15
# Check packaging constraint.
13
16
python -c 'import setuptools; where="./src"; assert setuptools.find_packages(where) == setuptools.find_namespace_packages(where), "you seem to be missing or have extra __init__.py files"'
14
-
if [[ ${RELEASE_VERSION:-} ]];then
15
-
# Replace version with RELEASE_VERSION env variable
16
-
sed -i.bak "s/__version__ = \"1\!0.0.0.dev0\"/__version__ = \"$(echo $RELEASE_VERSION|sed s/-/+/)\"/" src/${MODULE}/__init__.py
17
-
else
18
-
vim src/${MODULE}/__init__.py
17
+
18
+
# Update the release version.
19
+
if [[ !${RELEASE_VERSION:-} ]];then
20
+
echo"RELEASE_VERSION is not set"
21
+
exit 1
19
22
fi
23
+
sed -i.bak "s/__version__ = .*$/__version__ = \"$(echo $RELEASE_VERSION|sed s/-/+/)\"/" src/${MODULE}/_version.py
# Auto-generated by python-build/generate_release_scripts.py. Do not edit manually.
3
+
2
4
set -euxo pipefail
3
5
6
+
ROOT=../..
7
+
MODULE=datahub_dagster_plugin
8
+
4
9
if [[ !${RELEASE_SKIP_TEST:-} ]] && [[ !${RELEASE_SKIP_INSTALL:-} ]];then
5
-
../../gradlew build # also runs tests
10
+
${ROOT}/gradlew build # also runs tests
6
11
elif [[ !${RELEASE_SKIP_INSTALL:-} ]];then
7
-
../../gradlew install
12
+
${ROOT}/gradlew install
8
13
fi
9
14
10
-
MODULE=datahub_dagster_plugin
11
-
12
15
# Check packaging constraint.
13
16
python -c 'import setuptools; where="./src"; assert setuptools.find_packages(where) == setuptools.find_namespace_packages(where), "you seem to be missing or have extra __init__.py files"'
14
-
if [[ ${RELEASE_VERSION:-} ]];then
15
-
# Replace version with RELEASE_VERSION env variable
16
-
sed -i.bak "s/__version__ = \"1\!0.0.0.dev0\"/__version__ = \"$(echo $RELEASE_VERSION|sed s/-/+/)\"/" src/${MODULE}/__init__.py
17
-
else
18
-
vim src/${MODULE}/__init__.py
17
+
18
+
# Update the release version.
19
+
if [[ !${RELEASE_VERSION:-} ]];then
20
+
echo"RELEASE_VERSION is not set"
21
+
exit 1
19
22
fi
23
+
sed -i.bak "s/__version__ = .*$/__version__ = \"$(echo $RELEASE_VERSION|sed s/-/+/)\"/" src/${MODULE}/_version.py
0 commit comments