dbt-common 1.13.0__py3-none-any.whl → 1.14.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- dbt_common/__about__.py +1 -1
- dbt_common/clients/jinja.py +7 -0
- {dbt_common-1.13.0.dist-info → dbt_common-1.14.0.dist-info}/METADATA +1 -1
- {dbt_common-1.13.0.dist-info → dbt_common-1.14.0.dist-info}/RECORD +6 -6
- {dbt_common-1.13.0.dist-info → dbt_common-1.14.0.dist-info}/WHEEL +0 -0
- {dbt_common-1.13.0.dist-info → dbt_common-1.14.0.dist-info}/licenses/LICENSE +0 -0
dbt_common/__about__.py
CHANGED
@@ -1 +1 @@
|
|
1
|
-
version = "1.
|
1
|
+
version = "1.14.0"
|
dbt_common/clients/jinja.py
CHANGED
@@ -46,6 +46,7 @@ from dbt_common.exceptions import (
|
|
46
46
|
MaterializationArgError,
|
47
47
|
JinjaRenderingError,
|
48
48
|
UndefinedCompilationError,
|
49
|
+
DbtRuntimeError,
|
49
50
|
)
|
50
51
|
from dbt_common.exceptions.macros import MacroReturn, UndefinedMacroError, CaughtMacroError
|
51
52
|
|
@@ -534,6 +535,12 @@ def catch_jinja(node: Optional[_NodeProtocol] = None) -> Iterator[None]:
|
|
534
535
|
except CompilationError as exc:
|
535
536
|
exc.add_node(node)
|
536
537
|
raise
|
538
|
+
except DbtRuntimeError:
|
539
|
+
# Propagate dbt exception raised during jinja compilation
|
540
|
+
raise
|
541
|
+
except Exception as e:
|
542
|
+
# Raise any non-dbt exceptions as CompilationError
|
543
|
+
raise CompilationError(str(e), node) from e
|
537
544
|
|
538
545
|
|
539
546
|
_TESTING_PARSE_CACHE: Dict[str, jinja2.nodes.Template] = {}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: dbt-common
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.14.0
|
4
4
|
Summary: The shared common utilities that dbt-core and adapter implementations use
|
5
5
|
Project-URL: Homepage, https://github.com/dbt-labs/dbt-common
|
6
6
|
Project-URL: Repository, https://github.com/dbt-labs/dbt-common.git
|
@@ -1,4 +1,4 @@
|
|
1
|
-
dbt_common/__about__.py,sha256=
|
1
|
+
dbt_common/__about__.py,sha256=jgA5fU_XZ5Gv-NyYGvOeyOvgy8rP58A_XiIlWHtvbZo,19
|
2
2
|
dbt_common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
3
3
|
dbt_common/behavior_flags.py,sha256=hQzxCqQSweJbRp_xoQqNnlUF77PBuOdCdLOSdcBlkxk,4885
|
4
4
|
dbt_common/constants.py,sha256=-Y5DIL1SDPQWtlCNizXRYxFgbx1D7LaLs1ysamvGMRk,278
|
@@ -14,7 +14,7 @@ dbt_common/ui.py,sha256=rc2TEM29raBFc_LXcg901pMDD07C2ohwp9qzkE-7pBY,2567
|
|
14
14
|
dbt_common/clients/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
15
15
|
dbt_common/clients/_jinja_blocks.py,sha256=5I_VEWkkW_54uK09ErP_8ey7wj-OOXvt1OHqr73HLOk,14879
|
16
16
|
dbt_common/clients/agate_helper.py,sha256=anKKgKV5PSnFRuFeBwRMdHK3JCaQoUqB2ZXHD0su0Wo,9123
|
17
|
-
dbt_common/clients/jinja.py,sha256=
|
17
|
+
dbt_common/clients/jinja.py,sha256=Cc-6YWCXoyftzNhG-L3N4W8WiKBZZIWB6wV7-JPrQkg,20054
|
18
18
|
dbt_common/clients/system.py,sha256=aoUBtOuXVmkOyj6IhhJ3Y4a7JFzPO2F_zKyOtz3xy44,23932
|
19
19
|
dbt_common/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
20
20
|
dbt_common/contracts/constraints.py,sha256=_f1q3Rkcg2UwA7zI5XBbUMXnPUg6pw17UC7l1HyhyQM,1352
|
@@ -57,7 +57,7 @@ dbt_common/utils/encoding.py,sha256=6_kSY2FvGNYMg7oX7PrbvVioieydih3Kl7Ii802LaHI,
|
|
57
57
|
dbt_common/utils/executor.py,sha256=pNY0UbPlwQmTE69Vt_Rj91YGCIOEaqeYU3CjAds0T70,2454
|
58
58
|
dbt_common/utils/formatting.py,sha256=JUn5rzJ-uajs9wPCN0-f2iRFY1pOJF5YjTD9dERuLoc,165
|
59
59
|
dbt_common/utils/jinja.py,sha256=JXgNmJArGGy0h7qkbNLA3zaEQmoF1CxsNBYTlIwFXDw,1101
|
60
|
-
dbt_common-1.
|
61
|
-
dbt_common-1.
|
62
|
-
dbt_common-1.
|
63
|
-
dbt_common-1.
|
60
|
+
dbt_common-1.14.0.dist-info/METADATA,sha256=VgvfWv6LGaTre2VQJqnIiJAhSYhG4AAPWiCjrKQd0Tk,5211
|
61
|
+
dbt_common-1.14.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
62
|
+
dbt_common-1.14.0.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
63
|
+
dbt_common-1.14.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|