diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 05176d325c5..0d925a52651 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.7.18 +current_version = 1.7.19 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.7.19.md b/.changes/1.7.19.md new file mode 100644 index 00000000000..7e366c4d6a2 --- /dev/null +++ b/.changes/1.7.19.md @@ -0,0 +1,6 @@ +## dbt-core 1.7.19 - December 02, 2024 + +### Under the Hood + +- Remove support and testing for Python 3.8, which is now EOL. ([#10861](https://github.com/dbt-labs/dbt-core/issues/10861)) +- Pin mashumaro < 3.15 ([#11087](https://github.com/dbt-labs/dbt-core/issues/11087)) diff --git a/.changes/unreleased/Under the Hood-20241016-144056.yaml b/.changes/unreleased/Under the Hood-20241016-144056.yaml deleted file mode 100644 index 454724607cc..00000000000 --- a/.changes/unreleased/Under the Hood-20241016-144056.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Under the Hood -body: Remove support and testing for Python 3.8, which is now EOL. -time: 2024-10-16T14:40:56.451972-04:00 -custom: - Author: gshank peterallenwebb - Issue: "10861" diff --git a/.changes/unreleased/Under the Hood-20241202-115626.yaml b/.changes/unreleased/Under the Hood-20241202-115626.yaml deleted file mode 100644 index 6d78cfebf37..00000000000 --- a/.changes/unreleased/Under the Hood-20241202-115626.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Under the Hood -body: Pin mashumaro < 3.15 -time: 2024-12-02T11:56:26.18892-05:00 -custom: - Author: michelleark - Issue: "11087" diff --git a/CHANGELOG.md b/CHANGELOG.md index c18bc635927..ccad55c45b8 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,14 +5,21 @@ - "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.19 - December 02, 2024 + +### Under the Hood + +- Remove support and testing for Python 3.8, which is now EOL. ([#10861](https://github.com/dbt-labs/dbt-core/issues/10861)) +- Pin mashumaro < 3.15 ([#11087](https://github.com/dbt-labs/dbt-core/issues/11087)) + + + ## dbt-core 1.7.18 - August 07, 2024 ### Fixes - respect --quiet and --warn-error-options for flag deprecations ([#10105](https://github.com/dbt-labs/dbt-core/issues/10105)) - - ## dbt-core 1.7.17 - June 20, 2024 ### Docs diff --git a/core/dbt/version.py b/core/dbt/version.py index 8650f5aa81a..c227d552636 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.18" +__version__ = "1.7.19" installed = get_installed_version() diff --git a/core/setup.py b/core/setup.py index 7a009b5f5fd..07cfd159d96 100644 --- a/core/setup.py +++ b/core/setup.py @@ -25,7 +25,7 @@ package_name = "dbt-core" -package_version = "1.7.18" +package_version = "1.7.19" description = """With dbt, data analysts and engineers can build analytics \ the way engineers build applications.""" diff --git a/docker/Dockerfile b/docker/Dockerfile index 4b57790e7f2..5b696f12677 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.18 -ARG dbt_postgres_ref=dbt-core@v1.7.18 -ARG dbt_redshift_ref=dbt-redshift@v1.7.18 -ARG dbt_bigquery_ref=dbt-bigquery@v1.7.18 -ARG dbt_snowflake_ref=dbt-snowflake@v1.7.18 -ARG dbt_spark_ref=dbt-spark@v1.7.18 +ARG dbt_core_ref=dbt-core@v1.7.19 +ARG dbt_postgres_ref=dbt-core@v1.7.19 +ARG dbt_redshift_ref=dbt-redshift@v1.7.19 +ARG dbt_bigquery_ref=dbt-bigquery@v1.7.19 +ARG dbt_snowflake_ref=dbt-snowflake@v1.7.19 +ARG dbt_spark_ref=dbt-spark@v1.7.19 # 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 b5da603fa98..013715be1ab 100644 --- a/plugins/postgres/dbt/adapters/postgres/__version__.py +++ b/plugins/postgres/dbt/adapters/postgres/__version__.py @@ -1 +1 @@ -version = "1.7.18" +version = "1.7.19" diff --git a/plugins/postgres/setup.py b/plugins/postgres/setup.py index 1e0ad1d7347..b403323246d 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.18" +package_version = "1.7.19" 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 b5da603fa98..013715be1ab 100644 --- a/tests/adapter/dbt/tests/adapter/__version__.py +++ b/tests/adapter/dbt/tests/adapter/__version__.py @@ -1 +1 @@ -version = "1.7.18" +version = "1.7.19" diff --git a/tests/adapter/setup.py b/tests/adapter/setup.py index f387f433966..e771c072948 100644 --- a/tests/adapter/setup.py +++ b/tests/adapter/setup.py @@ -20,7 +20,7 @@ package_name = "dbt-tests-adapter" -package_version = "1.7.18" +package_version = "1.7.19" description = """The dbt adapter tests for adapter plugins""" this_directory = os.path.abspath(os.path.dirname(__file__))