Skip to content

Commit 7a724fa

Browse files
FishtownBuildBotWilliamDee
authored andcommitted
Bumping version to 1.11.0b4 and generate changelog
1 parent deb2f3e commit 7a724fa

11 files changed

+57
-5
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.11.0b3
2+
current_version = 1.11.0b4
33
parse = (?P<major>[\d]+) # major version number
44
\.(?P<minor>[\d]+) # minor version number
55
\.(?P<patch>[\d]+) # patch version number

.changes/1.11.0-b4.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
## dbt-core 1.11.0-b4 - October 28, 2025
2+
3+
### Features
4+
5+
- Allow for the specification of function volatility ([#QMalcolm](https://github.com/dbt-labs/dbt-core/issues/QMalcolm))
6+
- Add python UDF parsing support ([#12043](https://github.com/dbt-labs/dbt-core/issues/12043))
7+
8+
### Fixes
9+
10+
- Move function node `type` into it's config ([#12101](https://github.com/dbt-labs/dbt-core/issues/12101))
11+
- Support setting function node configs from dbt_project.yml ([#12096](https://github.com/dbt-labs/dbt-core/issues/12096))
12+
13+
### Under the Hood
14+
15+
- Reorganize jsonschemas directory structure ([#12121](https://github.com/dbt-labs/dbt-core/issues/12121))
16+
17+
### Dependencies
18+
19+
- Upgrading dbt-semantic-interfaces to 0.10.x ([#None](https://github.com/dbt-labs/dbt-core/issues/None))
20+
21+
### Contributors
22+
- [@12030](https://github.com/12030) ([#QMalcolm](https://github.com/dbt-labs/dbt-core/issues/QMalcolm))
23+
- [@WilliamDee](https://github.com/WilliamDee) ([#None](https://github.com/dbt-labs/dbt-core/issues/None))
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
kind: Dependencies
2+
body: Upgrading dbt-semantic-interfaces to 0.10.x
3+
time: 2025-10-23T16:45:07.329402-04:00
4+
custom:
5+
Author: WilliamDee
6+
Issue: None

CHANGELOG.md

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,31 @@
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.11.0-b4 - October 28, 2025
9+
10+
### Features
11+
12+
- Allow for the specification of function volatility ([#QMalcolm](https://github.com/dbt-labs/dbt-core/issues/QMalcolm))
13+
- Add python UDF parsing support ([#12043](https://github.com/dbt-labs/dbt-core/issues/12043))
14+
15+
### Fixes
16+
17+
- Move function node `type` into it's config ([#12101](https://github.com/dbt-labs/dbt-core/issues/12101))
18+
- Support setting function node configs from dbt_project.yml ([#12096](https://github.com/dbt-labs/dbt-core/issues/12096))
19+
20+
### Under the Hood
21+
22+
- Reorganize jsonschemas directory structure ([#12121](https://github.com/dbt-labs/dbt-core/issues/12121))
23+
24+
### Dependencies
25+
26+
- Upgrading dbt-semantic-interfaces to 0.10.x ([#None](https://github.com/dbt-labs/dbt-core/issues/None))
27+
28+
### Contributors
29+
- [@12030](https://github.com/12030) ([#QMalcolm](https://github.com/dbt-labs/dbt-core/issues/QMalcolm))
30+
- [@WilliamDee](https://github.com/WilliamDee) ([#None](https://github.com/dbt-labs/dbt-core/issues/None))
31+
32+
833
## dbt-core 1.11.0-b3 - October 07, 2025
934

1035
### Features
@@ -16,8 +41,6 @@
1641
- Fix case of successful function status in logs ([#12075](https://github.com/dbt-labs/dbt-core/issues/12075))
1742
- Fix `ref` support in function nodes ([#12076](https://github.com/dbt-labs/dbt-core/issues/12076))
1843

19-
20-
2144
## dbt-core 1.11.0-b2 - October 02, 2025
2245

2346
### Fixes

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.11.0b3"
229+
__version__ = "1.11.0b4"
230230
installed = get_installed_version()

0 commit comments

Comments
 (0)