diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 0cfbd91b50b..370df83d9d6 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.9.0b3 +current_version = 1.9.0b4 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.9.0-b4.md b/.changes/1.9.0-b4.md new file mode 100644 index 00000000000..55e464a8a4c --- /dev/null +++ b/.changes/1.9.0-b4.md @@ -0,0 +1,19 @@ +## dbt-core 1.9.0-b4 - November 06, 2024 + +### Features + +- Emit debug logging event whenever artifacts are written ([#10937](https://github.com/dbt-labs/dbt-core/issues/10937)) +- Support --empty for snapshots ([#10372](https://github.com/dbt-labs/dbt-core/issues/10372)) + +### Fixes + +- Ensure KeyboardInterrupt/SystemExit halts microbatch model execution ([#10862](https://github.com/dbt-labs/dbt-core/issues/10862)) +- Handle exceptions in `get_execution_status` more broadly to better ensure `run_results.json` gets written ([#10934](https://github.com/dbt-labs/dbt-core/issues/10934)) + +### Under the Hood + +- Behavior change for mf timespine without yaml configuration ([#10959](https://github.com/dbt-labs/dbt-core/issues/10959)) +- Behavior change for cumulative metric type param ([#10960](https://github.com/dbt-labs/dbt-core/issues/10960)) + +### Contributors +- [@DevonFulcher](https://github.com/DevonFulcher) ([#10959](https://github.com/dbt-labs/dbt-core/issues/10959), [#10960](https://github.com/dbt-labs/dbt-core/issues/10960)) diff --git a/.changes/unreleased/Features-20241029-181728.yaml b/.changes/1.9.0/Features-20241029-181728.yaml similarity index 100% rename from .changes/unreleased/Features-20241029-181728.yaml rename to .changes/1.9.0/Features-20241029-181728.yaml diff --git a/.changes/unreleased/Features-20241031-163149.yaml b/.changes/1.9.0/Features-20241031-163149.yaml similarity index 100% rename from .changes/unreleased/Features-20241031-163149.yaml rename to .changes/1.9.0/Features-20241031-163149.yaml diff --git a/.changes/unreleased/Fixes-20241017-153022.yaml b/.changes/1.9.0/Fixes-20241017-153022.yaml similarity index 100% rename from .changes/unreleased/Fixes-20241017-153022.yaml rename to .changes/1.9.0/Fixes-20241017-153022.yaml diff --git a/.changes/unreleased/Fixes-20241029-182034.yaml b/.changes/1.9.0/Fixes-20241029-182034.yaml similarity index 100% rename from .changes/unreleased/Fixes-20241029-182034.yaml rename to .changes/1.9.0/Fixes-20241029-182034.yaml diff --git a/.changes/unreleased/Under the Hood-20241031-093251.yaml b/.changes/1.9.0/Under the Hood-20241031-093251.yaml similarity index 100% rename from .changes/unreleased/Under the Hood-20241031-093251.yaml rename to .changes/1.9.0/Under the Hood-20241031-093251.yaml diff --git a/.changes/unreleased/Under the Hood-20241031-094609.yaml b/.changes/1.9.0/Under the Hood-20241031-094609.yaml similarity index 100% rename from .changes/unreleased/Under the Hood-20241031-094609.yaml rename to .changes/1.9.0/Under the Hood-20241031-094609.yaml diff --git a/CHANGELOG.md b/CHANGELOG.md index 6aa0fe66104..2920dfba786 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,27 @@ - "Breaking changes" listed under a version may require action from end users or external maintainers when upgrading to that version. - Do not edit this file directly. This file is auto-generated using [changie](https://github.com/miniscruff/changie). For details on how to document a change, see [the contributing guide](https://github.com/dbt-labs/dbt-core/blob/main/CONTRIBUTING.md#adding-changelog-entry) +## dbt-core 1.9.0-b4 - November 06, 2024 + +### Features + +- Emit debug logging event whenever artifacts are written ([#10937](https://github.com/dbt-labs/dbt-core/issues/10937)) +- Support --empty for snapshots ([#10372](https://github.com/dbt-labs/dbt-core/issues/10372)) + +### Fixes + +- Ensure KeyboardInterrupt/SystemExit halts microbatch model execution ([#10862](https://github.com/dbt-labs/dbt-core/issues/10862)) +- Handle exceptions in `get_execution_status` more broadly to better ensure `run_results.json` gets written ([#10934](https://github.com/dbt-labs/dbt-core/issues/10934)) + +### Under the Hood + +- Behavior change for mf timespine without yaml configuration ([#10959](https://github.com/dbt-labs/dbt-core/issues/10959)) +- Behavior change for cumulative metric type param ([#10960](https://github.com/dbt-labs/dbt-core/issues/10960)) + +### Contributors +- [@DevonFulcher](https://github.com/DevonFulcher) ([#10959](https://github.com/dbt-labs/dbt-core/issues/10959), [#10960](https://github.com/dbt-labs/dbt-core/issues/10960)) + + ## dbt-core 1.9.0-b3 - October 30, 2024 ### Features @@ -44,7 +65,6 @@ - [@danlsn](https://github.com/danlsn) ([#10915](https://github.com/dbt-labs/dbt-core/issues/10915)) - [@plypaul](https://github.com/plypaul) ([#10531](https://github.com/dbt-labs/dbt-core/issues/10531)) - ## dbt-core 1.9.0-b2 - October 07, 2024 ## dbt-core 1.9.0-b1 - October 01, 2024 diff --git a/core/dbt/version.py b/core/dbt/version.py index 841f0e6fca2..41881a6b649 100644 --- a/core/dbt/version.py +++ b/core/dbt/version.py @@ -231,5 +231,5 @@ def _get_adapter_plugin_names() -> Iterator[str]: yield plugin_name -__version__ = "1.9.0b3" +__version__ = "1.9.0b4" installed = get_installed_version() diff --git a/core/setup.py b/core/setup.py index 273934d5be8..456e5fedc15 100644 --- a/core/setup.py +++ b/core/setup.py @@ -25,7 +25,7 @@ package_name = "dbt-core" -package_version = "1.9.0b3" +package_version = "1.9.0b4" description = """With dbt, data analysts and engineers can build analytics \ the way engineers build applications."""