Skip to content

Commit 6095b02

Browse files
Bumping version to 1.7.13 and generate changelog
1 parent 483a4e8 commit 6095b02

File tree

11 files changed

+31
-21
lines changed

11 files changed

+31
-21
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.7.12
2+
current_version = 1.7.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.7.13.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
## dbt-core 1.7.13 - April 18, 2024
2+
3+
### Security
4+
5+
- Bump sqlparse to >=0.5.0, <0.6.0 to address GHSA-2m57-hf25-phgg ([#9951](https://github.com/dbt-labs/dbt-core/pull/9951))
6+
7+
### Contributors
8+
- [@emmoop](https://github.com/emmoop) ([#9951](https://github.com/dbt-labs/dbt-core/pull/9951))

.changes/unreleased/Security-20240417-141316.yaml

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

CHANGELOG.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +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.7.13 - April 18, 2024
9+
10+
### Security
11+
12+
- Bump sqlparse to >=0.5.0, <0.6.0 to address GHSA-2m57-hf25-phgg ([#9951](https://github.com/dbt-labs/dbt-core/pull/9951))
13+
14+
### Contributors
15+
- [@emmoop](https://github.com/emmoop) ([#9951](https://github.com/dbt-labs/dbt-core/pull/9951))
16+
17+
818
## dbt-core 1.7.12 - April 16, 2024
919

1020
### Fixes
1121

1222
- Fix assorted source freshness edgecases so check is run or actionable information is given ([#9078](https://github.com/dbt-labs/dbt-core/issues/9078))
1323
- Exclude password-like fields for considering reparse ([#9795](https://github.com/dbt-labs/dbt-core/issues/9795))
1424

15-
16-
1725
## dbt-core 1.7.11 - March 28, 2024
1826

1927
### Fixes

core/dbt/version.py

Lines changed: 1 addition & 1 deletion
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.12"
235+
__version__ = "1.7.13"
236236
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.7.12"
28+
package_version = "1.7.13"
2929
description = """With dbt, data analysts and engineers can build analytics \
3030
the way engineers build applications."""
3131

docker/Dockerfile

Lines changed: 6 additions & 6 deletions
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
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version = "1.7.12"
1+
version = "1.7.13"

plugins/postgres/setup.py

Lines changed: 1 addition & 1 deletion
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.12"
44+
package_version = "1.7.13"
4545
description = """The postgres adapter plugin for dbt (data build tool)"""
4646

4747
this_directory = os.path.abspath(os.path.dirname(__file__))
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version = "1.7.12"
1+
version = "1.7.13"

0 commit comments

Comments
 (0)