dbt v3.0.0 Release Notes

Release Date: 2019-12-31 // over 4 years ago
  • Main change in v3.0.0 is a rework of the internals of dbt itself to use the cobra framework and allow for use of the -- construct to separate dbt's args from the tool dbt is running and the tools's arguments.

    ๐Ÿ‘€ If your tool has no flagged arguments, you will see no changes.

    If your tool has flags, you'll need to insert -- between dbt's flags and the name of your tool. e.g.:

    Old: dbt foo -a bar
    ๐Ÿ†• New: dbt -- foo -a bar