Skip to content

Commit cb95373

Browse files
Bumping version to 1.9.2 and generate changelog
1 parent d87b350 commit cb95373

10 files changed

+29
-34
lines changed

Diff for: .bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.9.1
2+
current_version = 1.9.2
33
parse = (?P<major>[\d]+) # major version number
44
\.(?P<minor>[\d]+) # minor version number
55
\.(?P<patch>[\d]+) # patch version number

Diff for: .changes/1.9.2.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
## dbt-core 1.9.2 - January 29, 2025
2+
3+
### Fixes
4+
5+
- Error writing generic test at run time ([#11110](https://github.com/dbt-labs/dbt-core/issues/11110))
6+
- Run check_modified_contract for state:modified ([#11034](https://github.com/dbt-labs/dbt-core/issues/11034))
7+
- Fix unrendered_config for tests from dbt_project.yml ([#11146](https://github.com/dbt-labs/dbt-core/issues/11146))
8+
- Ensure warning about microbatch lacking filter inputs is always fired ([#11159](https://github.com/dbt-labs/dbt-core/issues/11159))
9+
- 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))
10+
11+
### Contributors
12+
- [@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 for: .changes/unreleased/Fixes-20241216-134645.yaml

-6
This file was deleted.

Diff for: .changes/unreleased/Fixes-20241217-154848.yaml

-6
This file was deleted.

Diff for: .changes/unreleased/Fixes-20241218-112640.yaml

-6
This file was deleted.

Diff for: .changes/unreleased/Fixes-20250107-173719.yaml

-6
This file was deleted.

Diff for: .changes/unreleased/Fixes-20250109-123309.yaml

-6
This file was deleted.

Diff for: CHANGELOG.md

+14-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,20 @@
55
- "Breaking changes" listed under a version may require action from end users or external maintainers when upgrading to that version.
66
- 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)
77

8+
## dbt-core 1.9.2 - January 29, 2025
9+
10+
### Fixes
11+
12+
- Error writing generic test at run time ([#11110](https://github.com/dbt-labs/dbt-core/issues/11110))
13+
- Run check_modified_contract for state:modified ([#11034](https://github.com/dbt-labs/dbt-core/issues/11034))
14+
- Fix unrendered_config for tests from dbt_project.yml ([#11146](https://github.com/dbt-labs/dbt-core/issues/11146))
15+
- Ensure warning about microbatch lacking filter inputs is always fired ([#11159](https://github.com/dbt-labs/dbt-core/issues/11159))
16+
- 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))
17+
18+
### Contributors
19+
- [@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))
20+
21+
822
## dbt-core 1.9.1 - December 16, 2024
923

1024
### Fixes
@@ -18,7 +32,6 @@
1832
### Contributors
1933
- [@dave-connors-3](https://github.com/dave-connors-3) ([#10230](https://github.com/dbt-labs/dbt-core/issues/10230))
2034

21-
2235
## dbt-core 1.9.0 - December 09, 2024
2336

2437
### Breaking Changes

Diff for: core/dbt/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -226,5 +226,5 @@ def _get_adapter_plugin_names() -> Iterator[str]:
226226
yield plugin_name
227227

228228

229-
__version__ = "1.9.1"
229+
__version__ = "1.9.2"
230230
installed = get_installed_version()

Diff for: core/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626

2727
package_name = "dbt-core"
28-
package_version = "1.9.1"
28+
package_version = "1.9.2"
2929
description = """With dbt, data analysts and engineers can build analytics \
3030
the way engineers build applications."""
3131

0 commit comments

Comments
 (0)