From f1f6e6f05411b7afe48e1c20d06904690ef098c3 Mon Sep 17 00:00:00 2001 From: Emily Rockman Date: Mon, 2 Dec 2024 10:25:55 -0600 Subject: [PATCH] Catch up changelogs (#226) * move changelogs into relevant folders * create changie markdown files * update full changelog --- .changes/1.10.0.md | 6 +++ .changes/1.11.0.md | 9 ++++ .changes/1.12.0.md | 9 ++++ .changes/1.13.0.md | 9 ++++ .changes/1.8.0.md | 9 ++++ .changes/1.9.0.md | 5 ++ .../unreleased/Features-20240808-194933.yaml | 6 --- .../unreleased/Features-20240918-114903.yaml | 6 --- .../unreleased/Features-20241015-174841.yaml | 6 --- .../unreleased/Features-20241105-093150.yaml | 6 --- .../unreleased/Fixes-20240709-190235.yaml | 6 --- .../unreleased/Fixes-20240920-165607.yaml | 7 --- .../unreleased/Fixes-20241010-164116.yaml | 6 --- .../unreleased/Security-20240808-154439.yaml | 6 --- .../Under the Hood-20241001-161733.yaml | 6 --- .../Under the Hood-20241021-130749.yaml | 6 --- .../Under the Hood-20241112-133750.yaml | 6 --- CHANGELOG.md | 53 +++++++++++++++++++ 18 files changed, 100 insertions(+), 67 deletions(-) create mode 100644 .changes/1.10.0.md create mode 100644 .changes/1.11.0.md create mode 100644 .changes/1.12.0.md create mode 100644 .changes/1.13.0.md create mode 100644 .changes/1.8.0.md create mode 100644 .changes/1.9.0.md delete mode 100644 .changes/unreleased/Features-20240808-194933.yaml delete mode 100644 .changes/unreleased/Features-20240918-114903.yaml delete mode 100644 .changes/unreleased/Features-20241015-174841.yaml delete mode 100644 .changes/unreleased/Features-20241105-093150.yaml delete mode 100644 .changes/unreleased/Fixes-20240709-190235.yaml delete mode 100644 .changes/unreleased/Fixes-20240920-165607.yaml delete mode 100644 .changes/unreleased/Fixes-20241010-164116.yaml delete mode 100644 .changes/unreleased/Security-20240808-154439.yaml delete mode 100644 .changes/unreleased/Under the Hood-20241001-161733.yaml delete mode 100644 .changes/unreleased/Under the Hood-20241021-130749.yaml delete mode 100644 .changes/unreleased/Under the Hood-20241112-133750.yaml diff --git a/.changes/1.10.0.md b/.changes/1.10.0.md new file mode 100644 index 00000000..c257c52b --- /dev/null +++ b/.changes/1.10.0.md @@ -0,0 +1,6 @@ +## dbt-common 1.10.0 - September 24, 2024 + +### Fixes + +- Do not cast unscrubbed values to a string ([#165](https://github.com/dbt-labs/dbt-common/issues/165)) +- Restrict behavior change warning to firing once per run to avoid noisy warnings in logs ([#197](https://github.com/dbt-labs/dbt-common/issues/197)) diff --git a/.changes/1.11.0.md b/.changes/1.11.0.md new file mode 100644 index 00000000..d6831bd5 --- /dev/null +++ b/.changes/1.11.0.md @@ -0,0 +1,9 @@ +## dbt-common 1.11.0 - October 15, 2024 + +### Fixes + +- Suppress logging event dictionary parsing exceptions ([#202](https://github.com/dbt-labs/dbt-common/issues/202)) + +### Under the Hood + +- Add a jinja "is_list" filter ([#200](https://github.com/dbt-labs/dbt-common/issues/200)) diff --git a/.changes/1.12.0.md b/.changes/1.12.0.md new file mode 100644 index 00000000..b1e9d2d0 --- /dev/null +++ b/.changes/1.12.0.md @@ -0,0 +1,9 @@ +## dbt-common 1.12.0 - November 05, 2024 + +### Features + +- Accelerate block tag iteration. ([#205](https://github.com/dbt-labs/dbt-common/issues/205)) + +### Under the Hood + +- Remove support and testing for Python 3.8 ([#212](https://github.com/dbt-labs/dbt-common/issues/212)) diff --git a/.changes/1.13.0.md b/.changes/1.13.0.md new file mode 100644 index 00000000..acae0cf2 --- /dev/null +++ b/.changes/1.13.0.md @@ -0,0 +1,9 @@ +## dbt-common 1.13.0 - November 19, 2024 + +### Features + +- Include JSON and text output in quiet mode for `dbt show` and `dbt compile` ([#216](https://github.com/dbt-labs/dbt-common/issues/216)) + +### Under the Hood + +- Upgrade protobuf to <=5.0 ([#218](https://github.com/dbt-labs/dbt-common/issues/218)) diff --git a/.changes/1.8.0.md b/.changes/1.8.0.md new file mode 100644 index 00000000..d649ee04 --- /dev/null +++ b/.changes/1.8.0.md @@ -0,0 +1,9 @@ +## dbt-common 1.8.0 - September 09, 2024 + +### Features + +- Add Behavior Flag Framework ([#178](https://github.com/dbt-labs/dbt-common/issues/178)) + +### Security + +- Fix arbitrary file write during tarfile extraction ([#182](https://github.com/dbt-labs/dbt-common/pull/182)) diff --git a/.changes/1.9.0.md b/.changes/1.9.0.md new file mode 100644 index 00000000..f9a5e149 --- /dev/null +++ b/.changes/1.9.0.md @@ -0,0 +1,5 @@ +## dbt-common 1.9.0 - September 19, 2024 + +### Features + +- Add MergeBehavior.Object for snapshot column feature ([#191](https://github.com/dbt-labs/dbt-common/issues/191)) diff --git a/.changes/unreleased/Features-20240808-194933.yaml b/.changes/unreleased/Features-20240808-194933.yaml deleted file mode 100644 index 1dfd106e..00000000 --- a/.changes/unreleased/Features-20240808-194933.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Features -body: Add Behavior Flag Framework -time: 2024-08-08T19:49:33.738569-04:00 -custom: - Author: mikealfare - Issue: "178" diff --git a/.changes/unreleased/Features-20240918-114903.yaml b/.changes/unreleased/Features-20240918-114903.yaml deleted file mode 100644 index f3bfb7fa..00000000 --- a/.changes/unreleased/Features-20240918-114903.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Features -body: Add MergeBehavior.Object for snapshot column feature -time: 2024-09-18T11:49:03.257411-04:00 -custom: - Author: gshank - Issue: "191" diff --git a/.changes/unreleased/Features-20241015-174841.yaml b/.changes/unreleased/Features-20241015-174841.yaml deleted file mode 100644 index afbc1bb4..00000000 --- a/.changes/unreleased/Features-20241015-174841.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Features -body: Accelerate block tag iteration. -time: 2024-10-15T17:48:41.299686-04:00 -custom: - Author: peterallenwebb - Issue: "205" diff --git a/.changes/unreleased/Features-20241105-093150.yaml b/.changes/unreleased/Features-20241105-093150.yaml deleted file mode 100644 index 6425776c..00000000 --- a/.changes/unreleased/Features-20241105-093150.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Features -body: Include JSON and text output in quiet mode for `dbt show` and `dbt compile` -time: 2024-11-05T09:31:50.780898-06:00 -custom: - Author: dbeatty10 - Issue: "216" diff --git a/.changes/unreleased/Fixes-20240709-190235.yaml b/.changes/unreleased/Fixes-20240709-190235.yaml deleted file mode 100644 index 2d4fa052..00000000 --- a/.changes/unreleased/Fixes-20240709-190235.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: Do not cast unscrubbed values to a string -time: 2024-07-09T19:02:35.755277-06:00 -custom: - Author: dbeatty10 - Issue: "165" diff --git a/.changes/unreleased/Fixes-20240920-165607.yaml b/.changes/unreleased/Fixes-20240920-165607.yaml deleted file mode 100644 index 04e40c25..00000000 --- a/.changes/unreleased/Fixes-20240920-165607.yaml +++ /dev/null @@ -1,7 +0,0 @@ -kind: Fixes -body: Restrict behavior change warning to firing once per run to avoid noisy warnings - in logs -time: 2024-09-20T16:56:07.951544-04:00 -custom: - Author: mikealfare - Issue: "197" diff --git a/.changes/unreleased/Fixes-20241010-164116.yaml b/.changes/unreleased/Fixes-20241010-164116.yaml deleted file mode 100644 index 60dbc5d5..00000000 --- a/.changes/unreleased/Fixes-20241010-164116.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: Suppress logging event dictionary parsing exceptions -time: 2024-10-10T16:41:16.06107-04:00 -custom: - Author: gshank - Issue: "202" diff --git a/.changes/unreleased/Security-20240808-154439.yaml b/.changes/unreleased/Security-20240808-154439.yaml deleted file mode 100644 index 0fddf2f7..00000000 --- a/.changes/unreleased/Security-20240808-154439.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Security -body: Fix arbitrary file write during tarfile extraction -time: 2024-08-08T15:44:39.601346-05:00 -custom: - Author: aranke - PR: "182" diff --git a/.changes/unreleased/Under the Hood-20241001-161733.yaml b/.changes/unreleased/Under the Hood-20241001-161733.yaml deleted file mode 100644 index 9ef3baa4..00000000 --- a/.changes/unreleased/Under the Hood-20241001-161733.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Under the Hood -body: Add a jinja "is_list" filter -time: 2024-10-01T16:17:33.652809-04:00 -custom: - Author: gshank - Issue: "200" diff --git a/.changes/unreleased/Under the Hood-20241021-130749.yaml b/.changes/unreleased/Under the Hood-20241021-130749.yaml deleted file mode 100644 index feb063aa..00000000 --- a/.changes/unreleased/Under the Hood-20241021-130749.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Under the Hood -body: Remove support and testing for Python 3.8 -time: 2024-10-21T13:07:49.210514-04:00 -custom: - Author: peterallenwebb - Issue: "212" diff --git a/.changes/unreleased/Under the Hood-20241112-133750.yaml b/.changes/unreleased/Under the Hood-20241112-133750.yaml deleted file mode 100644 index 500dac38..00000000 --- a/.changes/unreleased/Under the Hood-20241112-133750.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Under the Hood -body: Upgrade protobuf to <=5.0 -time: 2024-11-12T13:37:50.886196-05:00 -custom: - Author: gshank - Issue: "218" diff --git a/CHANGELOG.md b/CHANGELOG.md index 5666d54b..3131c35c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,59 @@ - "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-common/blob/main/CONTRIBUTING.md#adding-changelog-entry) +## dbt-common 1.13.0 - November 19, 2024 + +### Features + +- Include JSON and text output in quiet mode for `dbt show` and `dbt compile` ([#216](https://github.com/dbt-labs/dbt-common/issues/216)) + +### Under the Hood + +- Upgrade protobuf to <=5.0 ([#218](https://github.com/dbt-labs/dbt-common/issues/218)) + +## dbt-common 1.12.0 - November 05, 2024 + +### Features + +- Accelerate block tag iteration. ([#205](https://github.com/dbt-labs/dbt-common/issues/205)) + +### Under the Hood + +- Remove support and testing for Python 3.8 ([#212](https://github.com/dbt-labs/dbt-common/issues/212)) + +## dbt-common 1.11.0 - October 15, 2024 + +### Fixes + +- Suppress logging event dictionary parsing exceptions ([#202](https://github.com/dbt-labs/dbt-common/issues/202)) + +### Under the Hood + +- Add a jinja "is_list" filter ([#200](https://github.com/dbt-labs/dbt-common/issues/200)) + +## dbt-common 1.10.0 - September 24, 2024 + +### Fixes + +- Do not cast unscrubbed values to a string ([#165](https://github.com/dbt-labs/dbt-common/issues/165)) +- Restrict behavior change warning to firing once per run to avoid noisy warnings in logs ([#197](https://github.com/dbt-labs/dbt-common/issues/197)) + +## dbt-common 1.9.0 - September 19, 2024 + +### Features + +- Add MergeBehavior.Object for snapshot column feature ([#191](https://github.com/dbt-labs/dbt-common/issues/191)) + +## dbt-common 1.8.0 - September 09, 2024 + +### Features + +- Add Behavior Flag Framework ([#178](https://github.com/dbt-labs/dbt-common/issues/178)) + +### Security + +- Fix arbitrary file write during tarfile extraction ([#182](https://github.com/dbt-labs/dbt-common/pull/182)) + ## dbt-common 1.7.0 - July 30, 2024 ### Under the Hood