Skip to content

Commit 83417ac

Browse files
authored
#300 - Additions and fixes to _sz_database.py, sz_explorer, and sz_sn… (#323)
* #300 - Additions and fixes to _sz_database.py, sz_explorer, and sz_snapshot * #300 - Fixes from pr feedback * PR error fixes * PR error fixes * PR error fixes
1 parent 8939abe commit 83417ac

File tree

6 files changed

+780
-447
lines changed

6 files changed

+780
-447
lines changed

.vscode/cspell.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
"ASORG",
1616
"atexit",
1717
"ATTRIBUTECLASS",
18+
"AURORAPOSTGRESQL",
19+
"aurorapostgresql",
1820
"autodoc",
1921
"autodocsumm",
2022
"begidx",
@@ -134,6 +136,7 @@
134136
"functools",
135137
"FVME",
136138
"FVMES",
139+
"GDEV",
137140
"getattr",
138141
"getenv",
139142
"getframe",
@@ -148,6 +151,7 @@
148151
"htmlcov",
149152
"htmlhelp",
150153
"ICLA",
154+
"ILIKE",
151155
"INDIANRED",
152156
"ints",
153157
"isdigit",
@@ -191,6 +195,7 @@
191195
"MEDIUMORCHID",
192196
"metaphone",
193197
"metavar",
198+
"mssqldriver",
194199
"mult",
195200
"MULTICHAR",
196201
"MXSR",
@@ -238,6 +243,7 @@
238243
"pydoc",
239244
"pygments",
240245
"pylint",
246+
"pyodbc",
241247
"pypa",
242248
"pyproject",
243249
"pytest",
@@ -364,4 +370,4 @@
364370
"data/**",
365371
"development-requirements.txt"
366372
]
367-
}
373+
}

CHANGELOG.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,20 @@ This project adheres to [Semantic Versioning].
77

88
## [Unreleased]
99

10-
## [0.0.33] - 2026-01-08
10+
## [0.0.34] - 2026-01-13
1111

12-
### Added in 0.0.33
12+
### Added in 0.0.34
1313

14-
- Security policy documentation
14+
- _sz_database.py support for AURORAPOSTGRESQL and new connection string parameters
1515

16-
### Changed in 0.0.33
16+
### Fixed in 0.0.34
1717

18-
- Updated Code of Conduct from Contributor Covenant 1.4 to version 3.0
19-
- Removed Docker-related documentation from development guides
18+
- Numerous small issues in _sz_database.py
19+
20+
### Changed in 0.0.34
21+
22+
- Method names in _sz_database.py to follow PEP8
23+
- sz_explorer and sz_snapshot for changes to_sz_database.py
2024

2125
## [0.0.32] - 2025-11-12
2226

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "sz-python-tools"
3-
version = "0.0.33"
3+
version = "0.0.34"
44
description = "Senzing Python Tools"
55
authors = [{ name = "senzing", email = "support@senzing.com" }]
66
readme = "README.md"
@@ -159,6 +159,7 @@ disable = [
159159
"too-many-branches",
160160
"too-many-instance-attributes",
161161
"too-many-locals",
162+
"too-many-public-methods",
162163
"too-many-statements",
163164
"undefined-variable",
164165
"unidiomatic-typecheck",

0 commit comments

Comments
 (0)