RELEASE:1.9.0#633
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Release PR for mssql-python v1.9.0, updating the package/version metadata and the PyPI long description so the published artifact reflects the new release version and customer-facing changelog.
Changes:
- Bump distribution version in
setup.pyto 1.9.0. - Bump runtime
__version__inmssql_python/__init__.pyto 1.9.0. - Update
PyPI_Description.md“What’s new” section to v1.9.0 release notes.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| setup.py | Updates the package version to 1.9.0 for distribution metadata. |
| PyPI_Description.md | Refreshes the PyPI “What’s new” section for the 1.9.0 release notes. |
| mssql_python/init.py | Updates the library runtime __version__ to 1.9.0. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
jahnvi480
previously approved these changes
Jun 12, 2026
📊 Code Coverage Report
Diff CoverageDiff: main...HEAD, staged and unstaged changes
Summary
📋 Files Needing Attention📉 Files with overall lowest coverage (click to expand)mssql_python.pybind.logger_bridge.cpp: 59.2%
mssql_python.pybind.ddbc_bindings.h: 59.9%
mssql_python.pybind.logger_bridge.hpp: 70.8%
mssql_python.pybind.ddbc_bindings.cpp: 76.3%
mssql_python.row.py: 76.9%
mssql_python.__init__.py: 77.3%
mssql_python.pybind.connection.connection.cpp: 77.3%
mssql_python.ddbc_bindings.py: 79.6%
mssql_python.logging.py: 85.5%
mssql_python.connection.py: 85.6%🔗 Quick Links
|
9c730b6 to
a2b3c49
Compare
sumitmsft
approved these changes
Jun 12, 2026
jahnvi480
approved these changes
Jun 12, 2026
subrata-ms
approved these changes
Jun 12, 2026
bewithgaurav
approved these changes
Jun 12, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
AB#45750
Release mssql-python v1.9.0. Bumps
__version__,setup.pyversion, and updatesPyPI_Description.mdwith this release's customer-facing changes.Summary
Enhancements
bulkcopynow acceptsRowobjects (and lists) directly, converting each row to a tuple automatically (FEAT: Accept Row objects in bulkcopy without manual tuple conversion #615).SQLDescribeParamresults are cached per statement when bindingNULLparameters, removing redundant server round-trips and fixing incorrect type fallbacks for all-NULL columns and VARBINARY types (FIX: Cache SQLDescribeParam results for NULL parameters to reduce server round-trips #614).Bug Fixes
SQL_C_NUMERICtype mismatch when insertingDecimalvalues outside the SQL ServerMONEYrange viaexecutemany(FIX: executemany SQL_C_NUMERIC mismatch #611). Resolves mssql-python 1.7.1 and 1.8.0 both fail on executemany #609.ConnectionStringParseErrornow implement__reduce__for correct pickle/unpickle round-trips (FIX: exception pickle/unpickle round-trip #616). Resolves Exceptions do not properly pickle and unpickle #587.SQL_SUCCESS_WITH_INFOduringnextset()(FIX: Capture PRINT messages in nextset() via SQL_SUCCESS_WITH_INFO #618). Resolves mysql-python loses anything past the first message #612.executemanyconvertsRowobjects to tuples in the DAE fallback path, fixingvarchar(max)writes (FIX: Handle Row objects in executemany DAE fallback path (GH-629) #630). Resolves 1.8.0 fails in writing to varchar(max) #629.fetchone/fetchmany/fetchallare no longer reassigned as instance attributes, fixing type-checking underty(FIX: fetchone/fetchmany/fetchall type-checking under ty (#620) #631). Resolves cursor.fetchall, fetchmany and fetchone fail to type-check underty#620.Version bump
mssql_python/__init__.py:__version__1.8.0 → 1.9.0setup.py: version 1.8.0 → 1.9.0PyPI_Description.md: updated "What's new" section to v1.9.0Bundled
mssql_py_coreversion unchanged (0.1.4).