File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff 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."""
You can’t perform that action at this time.
0 commit comments