From cb9537330cb8a9768efef45f8c5dd37ca8889a56 Mon Sep 17 00:00:00 2001 From: Github Build Bot Date: Wed, 29 Jan 2025 21:15:30 +0000 Subject: [PATCH] Bumping version to 1.9.2 and generate changelog --- .bumpversion.cfg | 2 +- .changes/1.9.2.md | 12 ++++++++++++ .changes/unreleased/Fixes-20241216-134645.yaml | 6 ------ .changes/unreleased/Fixes-20241217-154848.yaml | 6 ------ .changes/unreleased/Fixes-20241218-112640.yaml | 6 ------ .changes/unreleased/Fixes-20250107-173719.yaml | 6 ------ .changes/unreleased/Fixes-20250109-123309.yaml | 6 ------ CHANGELOG.md | 15 ++++++++++++++- core/dbt/version.py | 2 +- core/setup.py | 2 +- 10 files changed, 29 insertions(+), 34 deletions(-) create mode 100644 .changes/1.9.2.md delete mode 100644 .changes/unreleased/Fixes-20241216-134645.yaml delete mode 100644 .changes/unreleased/Fixes-20241217-154848.yaml delete mode 100644 .changes/unreleased/Fixes-20241218-112640.yaml delete mode 100644 .changes/unreleased/Fixes-20250107-173719.yaml delete mode 100644 .changes/unreleased/Fixes-20250109-123309.yaml diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 12de8692c43..a57f14c1051 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.9.1 +current_version = 1.9.2 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.9.2.md b/.changes/1.9.2.md new file mode 100644 index 00000000000..f165ca0511a --- /dev/null +++ b/.changes/1.9.2.md @@ -0,0 +1,12 @@ +## dbt-core 1.9.2 - January 29, 2025 + +### Fixes + +- Error writing generic test at run time ([#11110](https://github.com/dbt-labs/dbt-core/issues/11110)) +- Run check_modified_contract for state:modified ([#11034](https://github.com/dbt-labs/dbt-core/issues/11034)) +- Fix unrendered_config for tests from dbt_project.yml ([#11146](https://github.com/dbt-labs/dbt-core/issues/11146)) +- Ensure warning about microbatch lacking filter inputs is always fired ([#11159](https://github.com/dbt-labs/dbt-core/issues/11159)) +- Fix microbatch dbt list --output json ([#10556](https://github.com/dbt-labs/dbt-core/issues/10556), [#11098](https://github.com/dbt-labs/dbt-core/issues/11098)) + +### Contributors +- [@internetcoffeephone](https://github.com/internetcoffeephone) ([#10556](https://github.com/dbt-labs/dbt-core/issues/10556), [#11098](https://github.com/dbt-labs/dbt-core/issues/11098)) diff --git a/.changes/unreleased/Fixes-20241216-134645.yaml b/.changes/unreleased/Fixes-20241216-134645.yaml deleted file mode 100644 index 2ef41dc0d2d..00000000000 --- a/.changes/unreleased/Fixes-20241216-134645.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: Error writing generic test at run time -time: 2024-12-16T13:46:45.936573-05:00 -custom: - Author: gshank - Issue: "11110" diff --git a/.changes/unreleased/Fixes-20241217-154848.yaml b/.changes/unreleased/Fixes-20241217-154848.yaml deleted file mode 100644 index fc6965547d4..00000000000 --- a/.changes/unreleased/Fixes-20241217-154848.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: Run check_modified_contract for state:modified -time: 2024-12-17T15:48:48.053054-05:00 -custom: - Author: gshank - Issue: "11034" diff --git a/.changes/unreleased/Fixes-20241218-112640.yaml b/.changes/unreleased/Fixes-20241218-112640.yaml deleted file mode 100644 index 38a72bc867a..00000000000 --- a/.changes/unreleased/Fixes-20241218-112640.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: Fix unrendered_config for tests from dbt_project.yml -time: 2024-12-18T11:26:40.270022-05:00 -custom: - Author: gshank - Issue: "11146" diff --git a/.changes/unreleased/Fixes-20250107-173719.yaml b/.changes/unreleased/Fixes-20250107-173719.yaml deleted file mode 100644 index 2d2310f1bac..00000000000 --- a/.changes/unreleased/Fixes-20250107-173719.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: Ensure warning about microbatch lacking filter inputs is always fired -time: 2025-01-07T17:37:19.373261-06:00 -custom: - Author: QMalcolm - Issue: "11159" diff --git a/.changes/unreleased/Fixes-20250109-123309.yaml b/.changes/unreleased/Fixes-20250109-123309.yaml deleted file mode 100644 index 611a1449dac..00000000000 --- a/.changes/unreleased/Fixes-20250109-123309.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: Fix microbatch dbt list --output json -time: 2025-01-09T12:33:09.958795+01:00 -custom: - Author: internetcoffeephone - Issue: 10556 11098 diff --git a/CHANGELOG.md b/CHANGELOG.md index 242c8eeac34..aaa3593829e 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,20 @@ - "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.2 - January 29, 2025 + +### Fixes + +- Error writing generic test at run time ([#11110](https://github.com/dbt-labs/dbt-core/issues/11110)) +- Run check_modified_contract for state:modified ([#11034](https://github.com/dbt-labs/dbt-core/issues/11034)) +- Fix unrendered_config for tests from dbt_project.yml ([#11146](https://github.com/dbt-labs/dbt-core/issues/11146)) +- Ensure warning about microbatch lacking filter inputs is always fired ([#11159](https://github.com/dbt-labs/dbt-core/issues/11159)) +- Fix microbatch dbt list --output json ([#10556](https://github.com/dbt-labs/dbt-core/issues/10556), [#11098](https://github.com/dbt-labs/dbt-core/issues/11098)) + +### Contributors +- [@internetcoffeephone](https://github.com/internetcoffeephone) ([#10556](https://github.com/dbt-labs/dbt-core/issues/10556), [#11098](https://github.com/dbt-labs/dbt-core/issues/11098)) + + ## dbt-core 1.9.1 - December 16, 2024 ### Fixes @@ -18,7 +32,6 @@ ### Contributors - [@dave-connors-3](https://github.com/dave-connors-3) ([#10230](https://github.com/dbt-labs/dbt-core/issues/10230)) - ## dbt-core 1.9.0 - December 09, 2024 ### Breaking Changes diff --git a/core/dbt/version.py b/core/dbt/version.py index ea8ff24c23a..fe411f01292 100644 --- a/core/dbt/version.py +++ b/core/dbt/version.py @@ -226,5 +226,5 @@ def _get_adapter_plugin_names() -> Iterator[str]: yield plugin_name -__version__ = "1.9.1" +__version__ = "1.9.2" installed = get_installed_version() diff --git a/core/setup.py b/core/setup.py index 6f15bcd5915..9cfdec3caad 100644 --- a/core/setup.py +++ b/core/setup.py @@ -25,7 +25,7 @@ package_name = "dbt-core" -package_version = "1.9.1" +package_version = "1.9.2" description = """With dbt, data analysts and engineers can build analytics \ the way engineers build applications."""