Skip to content

Commit 12cd79d

Browse files
[Automated] Merged prep-release/1.10.13_18019090648 into target 1.10.latest during release process
2 parents 767f18e + 28e0650 commit 12cd79d

File tree

9 files changed

+34
-29
lines changed

9 files changed

+34
-29
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.10.12
2+
current_version = 1.10.13
33
parse = (?P<major>[\d]+) # major version number
44
\.(?P<minor>[\d]+) # minor version number
55
\.(?P<patch>[\d]+) # patch version number

.changes/1.10.13.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
## dbt-core 1.10.13 - September 25, 2025
2+
3+
### Fixes
4+
5+
- Propagate column meta/tags from config to tests ([#11984](https://github.com/dbt-labs/dbt-core/issues/11984))
6+
- Skip initial render of loaded_at_query when specified as source or table config ([#11973](https://github.com/dbt-labs/dbt-core/issues/11973))
7+
8+
### Under the Hood
9+
10+
- Introduce dbt_version-based manifest json upgrade framework to avoid state:modified false positives on minor evolutions ([#12006](https://github.com/dbt-labs/dbt-core/issues/12006))
11+
12+
### Dependencies
13+
14+
- Loosen dbt-semantic-interfaces lower pin to >=0.9.0 ([#12005](https://github.com/dbt-labs/dbt-core/issues/12005))

.changes/unreleased/Dependencies-20250911-095731.yaml

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changes/unreleased/Fixes-20250910-163905.yaml

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changes/unreleased/Fixes-20250911-171648.yaml

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changes/unreleased/Under the Hood-20250911-110154.yaml

Lines changed: 0 additions & 6 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,23 @@
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.10.13 - September 25, 2025
9+
10+
### Fixes
11+
12+
- Propagate column meta/tags from config to tests ([#11984](https://github.com/dbt-labs/dbt-core/issues/11984))
13+
- Skip initial render of loaded_at_query when specified as source or table config ([#11973](https://github.com/dbt-labs/dbt-core/issues/11973))
14+
15+
### Under the Hood
16+
17+
- Introduce dbt_version-based manifest json upgrade framework to avoid state:modified false positives on minor evolutions ([#12006](https://github.com/dbt-labs/dbt-core/issues/12006))
18+
19+
### Dependencies
20+
21+
- Loosen dbt-semantic-interfaces lower pin to >=0.9.0 ([#12005](https://github.com/dbt-labs/dbt-core/issues/12005))
22+
23+
24+
825
## dbt-core 1.10.12 - September 10, 2025
926

1027
### Features
@@ -15,8 +32,6 @@
1532

1633
- Implement checked_agg_time_dimension_for_simple_metric to satisfy dbt-semantic-interfaces>0.9.0 ([#11998](https://github.com/dbt-labs/dbt-core/issues/11998))
1734

18-
19-
2035
## dbt-core 1.10.11 - September 04, 2025
2136

2237
### Features

core/dbt/version.py

Lines changed: 1 addition & 1 deletion
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.10.12"
229+
__version__ = "1.10.13"
230230
installed = get_installed_version()

core/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626

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

0 commit comments

Comments
 (0)