Skip to content

Commit d01d33c

Browse files
Bumping version to 1.7.9 and generate changelog
1 parent 1e064ef commit d01d33c

15 files changed

+51
-45
lines changed

.bumpversion.cfg

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

.changes/1.7.9.md

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
## dbt-core 1.7.9 - February 28, 2024
2+
3+
### Fixes
4+
5+
- Fix node_info contextvar handling so incorrect node_info doesn't persist ([#8866](https://github.com/dbt-labs/dbt-core/issues/8866))
6+
- Add target-path to retry ([#8948](https://github.com/dbt-labs/dbt-core/issues/8948))
7+
8+
### Under the Hood
9+
10+
- Make dbt-core compatible with Python 3.12 ([#9007](https://github.com/dbt-labs/dbt-core/issues/9007))
11+
- Restrict protobuf to major version 4. ([#9566](https://github.com/dbt-labs/dbt-core/issues/9566))
12+
13+
### Security
14+
15+
- 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))
16+
17+
### Contributors
18+
- [@l1xnan](https://github.com/l1xnan) ([#9007](https://github.com/dbt-labs/dbt-core/issues/9007))

.changes/unreleased/Fixes-20240222-100958.yaml

-6
This file was deleted.

.changes/unreleased/Fixes-20240223-162107.yaml

-6
This file was deleted.

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

-6
This file was deleted.

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

-6
This file was deleted.

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

-6
This file was deleted.

CHANGELOG.md

+20-2
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,33 @@
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.7.9 - February 28, 2024
9+
10+
### Fixes
11+
12+
- Fix node_info contextvar handling so incorrect node_info doesn't persist ([#8866](https://github.com/dbt-labs/dbt-core/issues/8866))
13+
- Add target-path to retry ([#8948](https://github.com/dbt-labs/dbt-core/issues/8948))
14+
15+
### Under the Hood
16+
17+
- Make dbt-core compatible with Python 3.12 ([#9007](https://github.com/dbt-labs/dbt-core/issues/9007))
18+
- Restrict protobuf to major version 4. ([#9566](https://github.com/dbt-labs/dbt-core/issues/9566))
19+
20+
### Security
21+
22+
- 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))
23+
24+
### Contributors
25+
- [@l1xnan](https://github.com/l1xnan) ([#9007](https://github.com/dbt-labs/dbt-core/issues/9007))
26+
27+
828
## dbt-core 1.7.8 - February 14, 2024
929

1030
### Fixes
1131

1232
- When patching versioned models, set constraints after config ([#9364](https://github.com/dbt-labs/dbt-core/issues/9364))
1333
- Store node_info in node associated logging events ([#9557](https://github.com/dbt-labs/dbt-core/issues/9557))
1434

15-
16-
1735
## dbt-core 1.7.7 - February 01, 2024
1836

1937
### 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.7.8"
235+
__version__ = "1.7.9"
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.7.8"
28+
package_version = "1.7.9"
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.7.8"
1+
version = "1.7.9"

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.7.8"
44+
package_version = "1.7.9"
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.7.8"
1+
version = "1.7.9"

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.7.8"
23+
package_version = "1.7.9"
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)