Skip to content

Commit b315b70

Browse files
Bumping version to 1.6.10 and generate changelog
1 parent 3da2b2d commit b315b70

File tree

13 files changed

+36
-32
lines changed

13 files changed

+36
-32
lines changed

.bumpversion.cfg

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

.changes/1.6.10.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
## dbt-core 1.6.10 - February 28, 2024
2+
3+
### Under the Hood
4+
5+
- Add test for docs generate catalog with external nodes ([#9481](https://github.com/dbt-labs/dbt-core/issues/9481))
6+
- Restrict protobuf to major version 4. ([#9566](https://github.com/dbt-labs/dbt-core/issues/9566))
7+
8+
### Security
9+
10+
- Update Jinja2 to >= 3.1.3 to address CVE-2024-22195 ([#CVE-2024-22195](https://github.com/dbt-labs/dbt-core/pull/CVE-2024-22195))

.changes/unreleased/Security-20240222-152445.yaml

-6
This file was deleted.

.changes/unreleased/Under the Hood-20240129-141543.yaml

-6
This file was deleted.

.changes/unreleased/Under the Hood-20240221-104518.yaml

-6
This file was deleted.

CHANGELOG.md

+13-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,19 @@
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.6.10 - February 28, 2024
9+
10+
### Under the Hood
11+
12+
- Add test for docs generate catalog with external nodes ([#9481](https://github.com/dbt-labs/dbt-core/issues/9481))
13+
- Restrict protobuf to major version 4. ([#9566](https://github.com/dbt-labs/dbt-core/issues/9566))
14+
15+
### Security
16+
17+
- Update Jinja2 to >= 3.1.3 to address CVE-2024-22195 ([#CVE-2024-22195](https://github.com/dbt-labs/dbt-core/pull/CVE-2024-22195))
18+
19+
20+
821
## dbt-core 1.6.9 - November 16, 2023
922

1023
### Fixes
@@ -18,7 +31,6 @@
1831
### Contributors
1932
- [@benmosher](https://github.com/benmosher) ([#n/a](https://github.com/dbt-labs/dbt-core/issues/n/a))
2033

21-
2234
## dbt-core 1.6.8 - November 08, 2023
2335

2436
### Fixes

core/dbt/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -232,5 +232,5 @@ def _get_adapter_plugin_names() -> Iterator[str]:
232232
yield plugin_name
233233

234234

235-
__version__ = "1.6.9"
235+
__version__ = "1.6.10"
236236
installed = get_installed_version()

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.6.9"
28+
package_version = "1.6.10"
2929
description = """With dbt, data analysts and engineers can build analytics \
3030
the way engineers build applications."""
3131

docker/Dockerfile

+6-6
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ FROM --platform=$build_for python:3.10.7-slim-bullseye as base
1616
# N.B. The refs updated automagically every release via bumpversion
1717
# N.B. dbt-postgres is currently found in the core codebase so a value of dbt-core@<some_version> is correct
1818

19-
20-
21-
22-
23-
24-
19+
20+
21+
22+
23+
24+
2525
# special case args
2626
ARG dbt_spark_version=all
2727
ARG dbt_third_party
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version = "1.6.9"
1+
version = "1.6.10"

plugins/postgres/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def _dbt_psycopg2_name():
4141

4242

4343
package_name = "dbt-postgres"
44-
package_version = "1.6.9"
44+
package_version = "1.6.10"
4545
description = """The postgres adapter plugin for dbt (data build tool)"""
4646

4747
this_directory = os.path.abspath(os.path.dirname(__file__))
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version = "1.6.9"
1+
version = "1.6.10"

tests/adapter/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121

2222
package_name = "dbt-tests-adapter"
23-
package_version = "1.6.9"
23+
package_version = "1.6.10"
2424
description = """The dbt adapter tests for adapter plugins"""
2525

2626
this_directory = os.path.abspath(os.path.dirname(__file__))

0 commit comments

Comments
 (0)