diff --git a/.bumpversion.cfg b/.bumpversion.cfg index dce735bec71..cef5869c92a 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.8.2 +current_version = 1.8.3 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.8.3.md b/.changes/1.8.3.md new file mode 100644 index 00000000000..fa423897f6a --- /dev/null +++ b/.changes/1.8.3.md @@ -0,0 +1,13 @@ +## dbt-core 1.8.3 - June 20, 2024 + +### Features + +- add --empty value to jinja context as flags.EMPTY ([#10317](https://github.com/dbt-labs/dbt-core/issues/10317)) + +### Fixes + +- DOn't warn on `unit_test` config paths that are properly used ([#10311](https://github.com/dbt-labs/dbt-core/issues/10311)) + +### Docs + +- Fix npm security vulnerabilities as of June 2024 ([dbt-docs/#513](https://github.com/dbt-labs/dbt-docs/issues/513)) diff --git a/.changes/unreleased/Docs-20240613-151048.yaml b/.changes/unreleased/Docs-20240613-151048.yaml deleted file mode 100644 index f8554c0a995..00000000000 --- a/.changes/unreleased/Docs-20240613-151048.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Docs -body: Fix npm security vulnerabilities as of June 2024 -time: 2024-06-13T15:10:48.301989+01:00 -custom: - Author: aranke - Issue: "513" diff --git a/.changes/unreleased/Features-20240617-103948.yaml b/.changes/unreleased/Features-20240617-103948.yaml deleted file mode 100644 index a64867d569a..00000000000 --- a/.changes/unreleased/Features-20240617-103948.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Features -body: add --empty value to jinja context as flags.EMPTY -time: 2024-06-17T10:39:48.275801-04:00 -custom: - Author: michelleark - Issue: "10317" diff --git a/.changes/unreleased/Fixes-20240613-183117.yaml b/.changes/unreleased/Fixes-20240613-183117.yaml deleted file mode 100644 index 14b1ee2bf08..00000000000 --- a/.changes/unreleased/Fixes-20240613-183117.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: DOn't warn on `unit_test` config paths that are properly used -time: 2024-06-13T18:31:17.486497-07:00 -custom: - Author: QMalcolm - Issue: "10311" diff --git a/CHANGELOG.md b/CHANGELOG.md index 85d07f342f2..efdc1025955 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,22 @@ - "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.8.3 - June 20, 2024 + +### Features + +- add --empty value to jinja context as flags.EMPTY ([#10317](https://github.com/dbt-labs/dbt-core/issues/10317)) + +### Fixes + +- DOn't warn on `unit_test` config paths that are properly used ([#10311](https://github.com/dbt-labs/dbt-core/issues/10311)) + +### Docs + +- Fix npm security vulnerabilities as of June 2024 ([dbt-docs/#513](https://github.com/dbt-labs/dbt-docs/issues/513)) + + + ## dbt-core 1.8.2 - June 05, 2024 ### Features @@ -15,8 +31,6 @@ - Fix: Order-insensitive unit test equality assertion for expected/actual with multiple nulls ([#10167](https://github.com/dbt-labs/dbt-core/issues/10167)) - - ## dbt-core 1.8.1 - May 22, 2024 ### Fixes diff --git a/core/dbt/version.py b/core/dbt/version.py index 83ff9bba603..4a5d3997f82 100644 --- a/core/dbt/version.py +++ b/core/dbt/version.py @@ -229,5 +229,5 @@ def _get_adapter_plugin_names() -> Iterator[str]: yield plugin_name -__version__ = "1.8.2" +__version__ = "1.8.3" installed = get_installed_version() diff --git a/core/setup.py b/core/setup.py index dcba3cf2911..f99a1b5f274 100644 --- a/core/setup.py +++ b/core/setup.py @@ -25,7 +25,7 @@ package_name = "dbt-core" -package_version = "1.8.2" +package_version = "1.8.3" description = """With dbt, data analysts and engineers can build analytics \ the way engineers build applications."""