Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Release Notes

## v1.37.0 - 2026-05-29

### New Features

* Optimize demo data loading by reducing in-memory consumption - Issue [#2895](https://github.com/sdv-dev/SDV/issues/2895) by @gsheni
* Add ability to store and load constraints from file - Issue [#2891](https://github.com/sdv-dev/SDV/issues/2891) by @frances-h

### Maintenance

* Release notes generator failing to fetch latest milestone - Issue [#2897](https://github.com/sdv-dev/SDV/issues/2897) by @frances-h
* Use Node.js 24 compatible github actions - Issue [#2893](https://github.com/sdv-dev/SDV/issues/2893) by @gsheni

## v1.36.3 - 2026-05-22

### New Features
Expand Down
34 changes: 17 additions & 17 deletions static_code_analysis.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Run started:2026-05-22 14:45:44.883166+00:00
Run started:2026-05-28 21:23:08.901553+00:00

Test results:
>> Issue: [B110:try_except_pass] Try, Except, Pass detected.
Expand Down Expand Up @@ -36,33 +36,33 @@ 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/b112_try_except_continue.html
Location: ./sdv/datasets/demo.py:125:8
124 matches.append(key)
125 except Exception:
126 continue
127
Location: ./sdv/datasets/demo.py:139:8
138 matches.append(key)
139 except Exception:
140 continue
141

--------------------------------------------------
>> Issue: [B112:try_except_continue] Try, Except, Continue detected.
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/b112_try_except_continue.html
Location: ./sdv/datasets/demo.py:190:8
189
190 except Exception:
191 continue
192
Location: ./sdv/datasets/demo.py:204:8
203
204 except Exception:
205 continue
206

--------------------------------------------------
>> Issue: [B112:try_except_continue] Try, Except, Continue detected.
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/b112_try_except_continue.html
Location: ./sdv/datasets/demo.py:580:8
579
580 except Exception:
581 continue
582
Location: ./sdv/datasets/demo.py:590:8
589
590 except Exception:
591 continue
592

--------------------------------------------------
>> Issue: [B306:blacklist] Use of insecure and deprecated function (mktemp).
Expand Down Expand Up @@ -121,7 +121,7 @@ Test results:
--------------------------------------------------

Code scanned:
Total lines of code: 17935
Total lines of code: 18149
Total lines skipped (#nosec): 0
Total potential issues skipped due to specifically being disabled (e.g., #nosec BXXX): 0

Expand Down
Loading