Skip to content

Commit 1fbbf23

Browse files
v1.33.0 Release Preparation (#2794)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 94aa14b commit 1fbbf23

File tree

2 files changed

+25
-13
lines changed

2 files changed

+25
-13
lines changed

HISTORY.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Release Notes
22

3+
## v1.33.0 - 2026-01-30
4+
5+
### New Features
6+
7+
* When reading in CSV data, do not cut off any leading 0s - Issue [#2780](https://github.com/sdv-dev/SDV/issues/2780) by @fealho
8+
9+
### Maintenance
10+
11+
* Pin Pandas dependency below 3.0 - Issue [#2784](https://github.com/sdv-dev/SDV/issues/2784) by @rwedge
12+
* Support Python 3.14 - Issue [#2776](https://github.com/sdv-dev/SDV/issues/2776) by @gsheni
13+
* Update license information in pyproject.toml to use new format - Issue [#2773](https://github.com/sdv-dev/SDV/issues/2773) by @rwedge
14+
315
## v1.32.1 - 2026-01-09
416

517
### Bugs Fixed

static_code_analysis.txt

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
Run started:2026-01-09 18:05:08.415737
1+
Run started:2026-01-30 22:25:46.984921+00:00
22

33
Test results:
44
>> Issue: [B110:try_except_pass] Try, Except, Pass detected.
55
Severity: Low Confidence: High
66
CWE: CWE-703 (https://cwe.mitre.org/data/definitions/703.html)
7-
More Info: https://bandit.readthedocs.io/en/1.7.7/plugins/b110_try_except_pass.html
7+
More Info: https://bandit.readthedocs.io/en/1.9.2/plugins/b110_try_except_pass.html
88
Location: ./sdv/_utils.py:349:8
99
348
1010
349 except Exception:
@@ -15,7 +15,7 @@ Test results:
1515
>> Issue: [B105:hardcoded_password_string] Possible hardcoded password: '#'
1616
Severity: Low Confidence: Medium
1717
CWE: CWE-259 (https://cwe.mitre.org/data/definitions/259.html)
18-
More Info: https://bandit.readthedocs.io/en/1.7.7/plugins/b105_hardcoded_password_string.html
18+
More Info: https://bandit.readthedocs.io/en/1.9.2/plugins/b105_hardcoded_password_string.html
1919
Location: ./sdv/constraints/tabular.py:1160:16
2020
1159 def _get_diff_column_name(self, table_data):
2121
1160 token = '#'
@@ -25,7 +25,7 @@ Test results:
2525
>> Issue: [B101:assert_used] Use of assert detected. The enclosed code will be removed when compiling to optimised byte code.
2626
Severity: Low Confidence: High
2727
CWE: CWE-703 (https://cwe.mitre.org/data/definitions/703.html)
28-
More Info: https://bandit.readthedocs.io/en/1.7.7/plugins/b101_assert_used.html
28+
More Info: https://bandit.readthedocs.io/en/1.9.2/plugins/b101_assert_used.html
2929
Location: ./sdv/data_processing/utils.py:17:4
3030
16 """
3131
17 assert path.exists(), 'The expected file was not found.'
@@ -35,7 +35,7 @@ Test results:
3535
>> Issue: [B112:try_except_continue] Try, Except, Continue detected.
3636
Severity: Low Confidence: High
3737
CWE: CWE-703 (https://cwe.mitre.org/data/definitions/703.html)
38-
More Info: https://bandit.readthedocs.io/en/1.7.7/plugins/b112_try_except_continue.html
38+
More Info: https://bandit.readthedocs.io/en/1.9.2/plugins/b112_try_except_continue.html
3939
Location: ./sdv/datasets/demo.py:125:8
4040
124 matches.append(key)
4141
125 except Exception:
@@ -46,7 +46,7 @@ Test results:
4646
>> Issue: [B112:try_except_continue] Try, Except, Continue detected.
4747
Severity: Low Confidence: High
4848
CWE: CWE-703 (https://cwe.mitre.org/data/definitions/703.html)
49-
More Info: https://bandit.readthedocs.io/en/1.7.7/plugins/b112_try_except_continue.html
49+
More Info: https://bandit.readthedocs.io/en/1.9.2/plugins/b112_try_except_continue.html
5050
Location: ./sdv/datasets/demo.py:190:8
5151
189
5252
190 except Exception:
@@ -57,7 +57,7 @@ Test results:
5757
>> Issue: [B112:try_except_continue] Try, Except, Continue detected.
5858
Severity: Low Confidence: High
5959
CWE: CWE-703 (https://cwe.mitre.org/data/definitions/703.html)
60-
More Info: https://bandit.readthedocs.io/en/1.7.7/plugins/b112_try_except_continue.html
60+
More Info: https://bandit.readthedocs.io/en/1.9.2/plugins/b112_try_except_continue.html
6161
Location: ./sdv/datasets/demo.py:580:8
6262
579
6363
580 except Exception:
@@ -68,7 +68,7 @@ Test results:
6868
>> Issue: [B306:blacklist] Use of insecure and deprecated function (mktemp).
6969
Severity: Medium Confidence: High
7070
CWE: CWE-377 (https://cwe.mitre.org/data/definitions/377.html)
71-
More Info: https://bandit.readthedocs.io/en/1.7.7/blacklists/blacklist_calls.html#b306-mktemp-q
71+
More Info: https://bandit.readthedocs.io/en/1.9.2/blacklists/blacklist_calls.html#b306-mktemp-q
7272
Location: ./sdv/logging/utils.py:41:19
7373
40 elif os.access(store_path, os.W_OK):
7474
41 tmp_path = tempfile.mktemp(dir=store_path, suffix='.yml')
@@ -78,7 +78,7 @@ Test results:
7878
>> Issue: [B105:hardcoded_password_string] Possible hardcoded password: 'id'
7979
Severity: Low Confidence: Medium
8080
CWE: CWE-259 (https://cwe.mitre.org/data/definitions/259.html)
81-
More Info: https://bandit.readthedocs.io/en/1.7.7/plugins/b105_hardcoded_password_string.html
81+
More Info: https://bandit.readthedocs.io/en/1.9.2/plugins/b105_hardcoded_password_string.html
8282
Location: ./sdv/metadata/single_table.py:499:24
8383
498 for token in tokens:
8484
499 if token == 'id':
@@ -88,7 +88,7 @@ Test results:
8888
>> Issue: [B110:try_except_pass] Try, Except, Pass detected.
8989
Severity: Low Confidence: High
9090
CWE: CWE-703 (https://cwe.mitre.org/data/definitions/703.html)
91-
More Info: https://bandit.readthedocs.io/en/1.7.7/plugins/b110_try_except_pass.html
91+
More Info: https://bandit.readthedocs.io/en/1.9.2/plugins/b110_try_except_pass.html
9292
Location: ./sdv/metadata/single_table.py:555:12
9393
554
9494
555 except Exception:
@@ -99,7 +99,7 @@ Test results:
9999
>> Issue: [B110:try_except_pass] Try, Except, Pass detected.
100100
Severity: Low Confidence: High
101101
CWE: CWE-703 (https://cwe.mitre.org/data/definitions/703.html)
102-
More Info: https://bandit.readthedocs.io/en/1.7.7/plugins/b110_try_except_pass.html
102+
More Info: https://bandit.readthedocs.io/en/1.9.2/plugins/b110_try_except_pass.html
103103
Location: ./sdv/multi_table/hma.py:401:12
104104
400 index.append(foreign_key_value)
105105
401 except Exception:
@@ -111,7 +111,7 @@ Test results:
111111
>> Issue: [B110:try_except_pass] Try, Except, Pass detected.
112112
Severity: Low Confidence: High
113113
CWE: CWE-703 (https://cwe.mitre.org/data/definitions/703.html)
114-
More Info: https://bandit.readthedocs.io/en/1.7.7/plugins/b110_try_except_pass.html
114+
More Info: https://bandit.readthedocs.io/en/1.9.2/plugins/b110_try_except_pass.html
115115
Location: ./sdv/single_table/dayz.py:62:4
116116
61 params['num_decimal_digits'] = num_decimal_digits
117117
62 except Exception:
@@ -121,7 +121,7 @@ Test results:
121121
--------------------------------------------------
122122

123123
Code scanned:
124-
Total lines of code: 17347
124+
Total lines of code: 17415
125125
Total lines skipped (#nosec): 0
126126
Total potential issues skipped due to specifically being disabled (e.g., #nosec BXXX): 0
127127

0 commit comments

Comments
 (0)