Skip to content

Commit e7add77

Browse files
millintomasfarias
authored andcommitted
fix: failure with missing config attributes for dbt-core v1.10.5
1 parent 0dbdcdd commit e7add77

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

airflow_dbt_python/utils/configs.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,14 +181,18 @@ class BaseConfig:
181181

182182
# legacy behaviors - https://github.com/dbt-labs/dbt-core/blob/main/docs/guides/behavior-change-flags.md
183183
require_batched_execution_for_custom_microbatch_strategy: bool = False
184+
require_event_names_in_deprecations: bool = False
184185
require_explicit_package_overrides_for_builtin_materializations: bool = True
185-
require_resource_names_without_spaces: bool = False
186-
source_freshness_run_project_hooks: bool = False
186+
require_resource_names_without_spaces: bool = True
187+
source_freshness_run_project_hooks: bool = True
187188
skip_nodes_if_on_run_start_fails: bool = False
188189
state_modified_compare_more_unrendered_values: bool = False
189190
state_modified_compare_vars: bool = False
190191
require_yaml_configuration_for_mf_time_spines: bool = False
191192
require_nested_cumulative_type_params: bool = False
193+
validate_macro_args: bool = False
194+
require_all_warnings_handled_by_warn_error: bool = False
195+
require_generic_test_arguments_property: bool = False
192196

193197
def __post_init__(self):
194198
"""Post initialization actions for a dbt configuration."""

0 commit comments

Comments
 (0)