From 611cdbf2a2b3c1cd615892872bc80240f7f64eba Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 13 Feb 2026 20:43:12 +0000 Subject: [PATCH 1/2] Prepare release for v1.34.0 --- HISTORY.md | 7 +++++++ static_code_analysis.txt | 16 ++++++++-------- 2 files changed, 15 insertions(+), 8 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index 20d12986a..391a4c7fe 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,12 @@ # Release Notes +## v1.34.0 - 2026-02-13 + +### New Features + +* Allow a primary key to also be a foreign key (in the metadata and also for modeling) - Issue [#2779](https://github.com/sdv-dev/SDV/issues/2779) by @gsheni +* Allow a column to be both a primary key and foreign key at the same time - Issue [#2455](https://github.com/sdv-dev/SDV/issues/2455) by @gsheni + ## v1.33.1 - 2026-02-06 ### New Features diff --git a/static_code_analysis.txt b/static_code_analysis.txt index a255138fb..31804944b 100644 --- a/static_code_analysis.txt +++ b/static_code_analysis.txt @@ -1,4 +1,4 @@ -Run started:2026-02-06 21:10:18.899704+00:00 +Run started:2026-02-13 20:43:11.713100+00:00 Test results: >> Issue: [B110:try_except_pass] Try, Except, Pass detected. @@ -100,12 +100,12 @@ Test results: Severity: Low Confidence: High CWE: CWE-703 (https://cwe.mitre.org/data/definitions/703.html) More Info: https://bandit.readthedocs.io/en/1.9.2/plugins/b110_try_except_pass.html - Location: ./sdv/multi_table/hma.py:401:12 -400 index.append(foreign_key_value) -401 except Exception: -402 # Skip children rows subsets that fail -403 pass -404 + Location: ./sdv/multi_table/hma.py:407:12 +406 index.append(foreign_key_value) +407 except Exception: +408 # Skip children rows subsets that fail +409 pass +410 -------------------------------------------------- >> Issue: [B110:try_except_pass] Try, Except, Pass detected. @@ -121,7 +121,7 @@ Test results: -------------------------------------------------- Code scanned: - Total lines of code: 17448 + Total lines of code: 17482 Total lines skipped (#nosec): 0 Total potential issues skipped due to specifically being disabled (e.g., #nosec BXXX): 0 From 6de425214e39fcdeddd9787e67d602273ed952d1 Mon Sep 17 00:00:00 2001 From: Sarah Alnegheimish <40212131+sarahmish@users.noreply.github.com> Date: Fri, 13 Feb 2026 17:14:07 -0500 Subject: [PATCH 2/2] remove duplicate issue --- HISTORY.md | 1 - 1 file changed, 1 deletion(-) diff --git a/HISTORY.md b/HISTORY.md index 391a4c7fe..669bd98ea 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -5,7 +5,6 @@ ### New Features * Allow a primary key to also be a foreign key (in the metadata and also for modeling) - Issue [#2779](https://github.com/sdv-dev/SDV/issues/2779) by @gsheni -* Allow a column to be both a primary key and foreign key at the same time - Issue [#2455](https://github.com/sdv-dev/SDV/issues/2455) by @gsheni ## v1.33.1 - 2026-02-06