Skip to content

Commit

Permalink
cp
Browse files Browse the repository at this point in the history
  • Loading branch information
schrockn committed Jun 8, 2024
1 parent 372cd73 commit f0f9576
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -651,30 +651,35 @@ def hidden_until_20_param(param: str) -> Callable[[Callable[..., Any]], Callable
additional_warn_text=(
"Use the `@dbt_assets` decorator if you need to customize your resource key."
),
hidden=True,
)
@deprecated_param(
param="use_build_command",
breaking_version="0.21",
additional_warn_text=(
"Use the `@dbt_assets` decorator if you need to customize the underlying dbt commands."
),
hidden=True,
)
@deprecated_param(
param="partitions_def",
breaking_version="0.21",
additional_warn_text="Use the `@dbt_assets` decorator to define partitioned dbt assets.",
hidden=True,
)
@deprecated_param(
param="partition_key_to_vars_fn",
breaking_version="0.21",
additional_warn_text="Use the `@dbt_assets` decorator to define partitioned dbt assets.",
hidden=True,
)
@deprecated_param(
param="runtime_metadata_fn",
breaking_version="0.21",
additional_warn_text=(
"Use the `@dbt_assets` decorator if you need to customize runtime metadata."
),
hidden=True,
)
@hidden_until_20_param(param="key_prefix")
@hidden_until_20_param(param="source_key_prefix")
Expand Down

0 comments on commit f0f9576

Please sign in to comment.