From 6095b023f686f5a3ff24399211bc36269652d914 Mon Sep 17 00:00:00 2001 From: Github Build Bot Date: Thu, 18 Apr 2024 17:15:19 +0000 Subject: [PATCH] Bumping version to 1.7.13 and generate changelog --- .bumpversion.cfg | 2 +- .changes/1.7.13.md | 8 ++++++++ .changes/unreleased/Security-20240417-141316.yaml | 6 ------ CHANGELOG.md | 12 ++++++++++-- core/dbt/version.py | 2 +- core/setup.py | 2 +- docker/Dockerfile | 12 ++++++------ .../postgres/dbt/adapters/postgres/__version__.py | 2 +- plugins/postgres/setup.py | 2 +- tests/adapter/dbt/tests/adapter/__version__.py | 2 +- tests/adapter/setup.py | 2 +- 11 files changed, 31 insertions(+), 21 deletions(-) create mode 100644 .changes/1.7.13.md delete mode 100644 .changes/unreleased/Security-20240417-141316.yaml diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 1f5608e5388..86e979cf285 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.7.12 +current_version = 1.7.13 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.7.13.md b/.changes/1.7.13.md new file mode 100644 index 00000000000..af8630b451d --- /dev/null +++ b/.changes/1.7.13.md @@ -0,0 +1,8 @@ +## dbt-core 1.7.13 - April 18, 2024 + +### Security + +- 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)) + +### Contributors +- [@emmoop](https://github.com/emmoop) ([#9951](https://github.com/dbt-labs/dbt-core/pull/9951)) diff --git a/.changes/unreleased/Security-20240417-141316.yaml b/.changes/unreleased/Security-20240417-141316.yaml deleted file mode 100644 index 16d8d572f89..00000000000 --- a/.changes/unreleased/Security-20240417-141316.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Security -body: Bump sqlparse to >=0.5.0, <0.6.0 to address GHSA-2m57-hf25-phgg -time: 2024-04-17T14:13:16.896353-05:00 -custom: - Author: emmoop - PR: "9951" diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e317ce8d86..028c786f186 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,16 @@ - "Breaking changes" listed under a version may require action from end users or external maintainers when upgrading to that version. - 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) +## dbt-core 1.7.13 - April 18, 2024 + +### Security + +- 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)) + +### Contributors +- [@emmoop](https://github.com/emmoop) ([#9951](https://github.com/dbt-labs/dbt-core/pull/9951)) + + ## dbt-core 1.7.12 - April 16, 2024 ### Fixes @@ -12,8 +22,6 @@ - Fix assorted source freshness edgecases so check is run or actionable information is given ([#9078](https://github.com/dbt-labs/dbt-core/issues/9078)) - Exclude password-like fields for considering reparse ([#9795](https://github.com/dbt-labs/dbt-core/issues/9795)) - - ## dbt-core 1.7.11 - March 28, 2024 ### Fixes diff --git a/core/dbt/version.py b/core/dbt/version.py index 6afb903491f..cd1ce4d0e56 100644 --- a/core/dbt/version.py +++ b/core/dbt/version.py @@ -232,5 +232,5 @@ def _get_adapter_plugin_names() -> Iterator[str]: yield plugin_name -__version__ = "1.7.12" +__version__ = "1.7.13" installed = get_installed_version() diff --git a/core/setup.py b/core/setup.py index 696e12cc6fb..719f3fb6afc 100644 --- a/core/setup.py +++ b/core/setup.py @@ -25,7 +25,7 @@ package_name = "dbt-core" -package_version = "1.7.12" +package_version = "1.7.13" description = """With dbt, data analysts and engineers can build analytics \ the way engineers build applications.""" diff --git a/docker/Dockerfile b/docker/Dockerfile index 083b629b571..3f132ed195b 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -16,12 +16,12 @@ FROM --platform=$build_for python:3.10.7-slim-bullseye as base # N.B. The refs updated automagically every release via bumpversion # N.B. dbt-postgres is currently found in the core codebase so a value of dbt-core@ is correct -ARG dbt_core_ref=dbt-core@v1.7.12 -ARG dbt_postgres_ref=dbt-core@v1.7.12 -ARG dbt_redshift_ref=dbt-redshift@v1.7.12 -ARG dbt_bigquery_ref=dbt-bigquery@v1.7.12 -ARG dbt_snowflake_ref=dbt-snowflake@v1.7.12 -ARG dbt_spark_ref=dbt-spark@v1.7.12 +ARG dbt_core_ref=dbt-core@v1.7.13 +ARG dbt_postgres_ref=dbt-core@v1.7.13 +ARG dbt_redshift_ref=dbt-redshift@v1.7.13 +ARG dbt_bigquery_ref=dbt-bigquery@v1.7.13 +ARG dbt_snowflake_ref=dbt-snowflake@v1.7.13 +ARG dbt_spark_ref=dbt-spark@v1.7.13 # special case args ARG dbt_spark_version=all ARG dbt_third_party diff --git a/plugins/postgres/dbt/adapters/postgres/__version__.py b/plugins/postgres/dbt/adapters/postgres/__version__.py index 53668e3f574..8cc272edbbd 100644 --- a/plugins/postgres/dbt/adapters/postgres/__version__.py +++ b/plugins/postgres/dbt/adapters/postgres/__version__.py @@ -1 +1 @@ -version = "1.7.12" +version = "1.7.13" diff --git a/plugins/postgres/setup.py b/plugins/postgres/setup.py index b38d6041d39..b316f021453 100644 --- a/plugins/postgres/setup.py +++ b/plugins/postgres/setup.py @@ -41,7 +41,7 @@ def _dbt_psycopg2_name(): package_name = "dbt-postgres" -package_version = "1.7.12" +package_version = "1.7.13" description = """The postgres adapter plugin for dbt (data build tool)""" this_directory = os.path.abspath(os.path.dirname(__file__)) diff --git a/tests/adapter/dbt/tests/adapter/__version__.py b/tests/adapter/dbt/tests/adapter/__version__.py index 53668e3f574..8cc272edbbd 100644 --- a/tests/adapter/dbt/tests/adapter/__version__.py +++ b/tests/adapter/dbt/tests/adapter/__version__.py @@ -1 +1 @@ -version = "1.7.12" +version = "1.7.13" diff --git a/tests/adapter/setup.py b/tests/adapter/setup.py index 429e215b2d1..f6b6f666c1a 100644 --- a/tests/adapter/setup.py +++ b/tests/adapter/setup.py @@ -20,7 +20,7 @@ package_name = "dbt-tests-adapter" -package_version = "1.7.12" +package_version = "1.7.13" description = """The dbt adapter tests for adapter plugins""" this_directory = os.path.abspath(os.path.dirname(__file__))