1.44.1 - 2026-02-20
Fixed
- dbt: Attach ExtractionErrorRunFacet on metadata extraction failures
#4349@harels AttachExtractionErrorRunFacetto run events when@handle_keyerror-decorated extraction methods fail, making previously invisible extraction errors visible to downstream consumers instead of silently emitting incomplete events. - dbt: Fix KeyError handling in
_get_model_node#4348@harels Fix exception type mismatch in_get_model_node()by raisingKeyErrorinstead ofRuntimeError, allowing the@handle_keyerrordecorator to catch it and returnNonegracefully when a node_id is not found in the manifest. - dbt: Use
.get()for optional project version retrieval#4345@zagoodman Fix crash whenversionkey is absent fromdbt_project.yml, which became optional in dbt 1.5, by using.get()instead of direct key access.