Skip to main content

About dbt Core versions

dbt Core releases follow semantic versioning guidelines. For more on how we use semantic versions, see How dbt Core uses semantic versioning.

Keep on latest version, always

Did you know that you can always be working on the latest version?

With dbt Cloud, you can get early access to new functionality before it becomes available in dbt Core and without the need of managing your own version upgrades. Refer to the Keep on latest version setting for details.

dbt Labs provides different support levels for different versions, which may include new features, bug fixes, or security patches:

  • Active We will patch regressions, new bugs, and include fixes for older bugs / quality-of-life improvements. We implement these changes when we have high confidence that they're narrowly scoped and won't cause unintended side effects.
  • Critical Newer minor versions transition the previous minor version into "Critical Support" with limited "security" releases for critical security and installation fixes.
  • End of Life Minor versions that have reached EOL no longer receive new patch releases.
  • Deprecated dbt Core versions older than v1.0 are no longer maintained by dbt Labs, nor supported in dbt Cloud.

Latest releases

dbt CoreInitial releaseSupport level and end date
v1.8April 2024Beta
v1.7Nov 2, 2023Active Nov 1, 2024
v1.6Jul 31, 2023Critical Jul 30, 2024
v1.5Apr 27, 2023Critical Apr 27, 2024
v1.4Jan 25, 2023End of Life* ⚠️
v1.3Oct 12, 2022End of Life* ⚠️
v1.2Jul 26, 2022End of Life* ⚠️
v1.1Apr 28, 2022End of Life* ⚠️
v1.0Dec 3, 2021End of Life* ⚠️
v0.X ⛔️(Various dates)Deprecated ⛔️

*All versions of dbt Core since v1.0 are available in dbt Cloud until further notice. Versions that are EOL do not receive any fixes. For the best support, we recommend upgrading to a version released within the past 12 months.

Further reading

Version support prior to v1.0

All dbt Core versions released prior to 1.0 and their version-specific documentation have been deprecated. If upgrading to a currently supported version, reference our best practices for upgrading

EOL version support

All dbt Core minor versions that have reached end-of-life (EOL) will have no new patch releases. This means they will no longer receive any fixes, including for known bugs that have been identified. Fixes for those bugs will instead be made in newer minor versions that are still under active support.

We recommend upgrading to a newer version in dbt Cloud or dbt Core to continue receiving support.

All dbt Core v1.0 and later are available in dbt Cloud until further notice. In the future, we intend to align dbt Cloud availability with dbt Core ongoing support. You will receive plenty of advance notice before any changes take place.

Current version support

Minor versions

Minor versions include new features and capabilities. They will be supported for one year from their initial release date. dbt Labs is committed to this 12-month support timeframe. Our mechanism for continuing to support a minor version is by releasing new patches: small, targeted bug fixes. Whenever we refer to a minor version, such as v1.0, we always mean its latest available patch release (v1.0.x).

While a minor version is officially supported:

  • You can use it in dbt Cloud. For more on dbt Cloud versioning, see Choosing a dbt version.
  • You can select it from the version dropdown on this website, to see documentation that is accurate for use with that minor version.

Ongoing patches

During the 12-month support window, we will continue to release new patch versions that include fixes.

Active Support: In the first few months after a minor version's initial release, we will patch it with "bugfix" releases. These will include fixes for regressions and net-new bugs that were present in the minor version's original release.

Critical Support: When a newer minor version is available, we will transition the previous minor version into "Critical Support." Subsequent patches to that older minor version will be "security" releases only, limited to critical fixes related to security and installation.

After a minor version reaches the end of its critical support period, one year after its initial release, no new patches will be released.

Future versions

For the latest information about upcoming releases, including planned release dates and which features and fixes might be included, consult the dbt-core repository milestones and product roadmaps.

Best practices for upgrading

Because of our new version practice, we've outlined best practices and expectations for dbt users to upgrade as we continue to release new versions of dbt Core.

Upgrading to new patch versions

We expect users to upgrade to patches as soon as they're available. When we refer to a "minor version" of dbt Core, such as v1.0, we are always referring to the latest available patch release for that minor version. We encourage you to structure your development and production environments so that you can always install the latest patches of dbt-core and any adapter plugins. (Note that patch numbers may be different between dbt-core and plugins. See below for an explanation.)

Upgrading to new minor versions

During the official support period, minor versions will remain available in dbt Cloud and the version dropdown on the docs site. While we do not expect users to immediately upgrade to newer minor versions as soon as they're available, there will always be some features and fixes only available for users of the latest minor version.

Trying prereleases

All dbt Core versions are available as prereleases before the final release. "Release candidates" are available for testing, in production-like environments, two weeks before the final release. For minor versions, we also aim to release one or more "betas," which include new features and invite community feedback, 4+ weeks before the final release. It is in your interest to help us test prereleases—we need your help!

How dbt Core uses semantic versioning

Like many software projects, dbt Core releases follow semantic versioning, which defines three types of version releases.

  • Major versions: To date, dbt Core has had one major version release: v1.0.0. When v2.0.0 is released, it will introduce new features, and functionality that has been announced for deprecation will stop working.
  • Minor versions, also called "feature" releases, include a mix of new features, behind-the-scenes improvements, and changes to existing capabilities that are backwards compatible with previous minor versions. They will not break code in your project that relies on documented functionality.
  • Patch versions, also called "bugfix" or "security" releases, include fixes only. These fixes could be needed to restore previous (documented) behavior, fix obvious shortcomings of new features, or offer critical fixes for security or installation issues. We are judicious about which fixes are included in patch releases, to minimize the surface area of changes.

We are committed to avoiding breaking changes in minor versions for end users of dbt. There are two types of breaking changes that may be included in minor versions:

  • Changes to the Python interface for adapter plugins. These changes are relevant only to adapter maintainers, and they will be clearly communicated in documentation and release notes. For more information, refer to Build, test, document, and promote adapters guide.
  • Changes to metadata interfaces, including artifacts and logging, signalled by a version bump. Those version upgrades may require you to update external code that depends on these interfaces, or to coordinate upgrades between dbt orchestrations that share metadata, such as state-powered selection.

How we version adapter plugins

When you use dbt, you use a combination of dbt-core and an adapter plugin specific to your database. You can see the current list in Supported Data Platforms. Both dbt-core and dbt adapter plugins follow semantic versioning.

dbt-core and adapter plugins coordinate new features and behind-the-scenes changes in minor releases. When fixing bugs, sooner is better, so patch versions are released independently for dbt-core and plugins.

That means that patch version numbers will likely differ between dbt-core and the adapter plugin(s) you have installed. However, major and minor version numbers should always match.

For example, you may find you're using dbt-core==1.6.0 with dbt-snowflake==1.6.0. It is critical that you're using the latest patch available for both core and the adapter. Use the dbt --version command to see which versions you have installed:

$ dbt --version
Core:
- installed: 1.6.0
- latest: 1.6.0 - Up to date!

Plugins:
- snowflake: 1.6.0 - Up to date!

You can see which version of the registered adapter that's being invoked in the logs. Below is an example of the message in the logs/dbt.log file:

[0m13:13:48.572182 [info ] [MainThread]: Registered adapter: snowflake=1.6.0

It's likely that newer patches have become available since then, so it's always important to check and make sure you're up to date!

0