Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This release PR prepares mssql-python for the 1.5.0 release by updating package version metadata and refreshing the PyPI long description “What’s new” section.
Changes:
- Bumped package version to
1.5.0in distribution metadata (setup.py) and runtime metadata (mssql_python/__init__.py). - Updated
PyPI_Description.mdrelease notes section to “What’s new in v1.5.0” with new feature/bug-fix bullets.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| setup.py | Updates the package version used for builds/distribution. |
| PyPI_Description.md | Updates PyPI long description release notes for v1.5.0. |
| mssql_python/init.py | Updates the runtime __version__ constant to 1.5.0. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
📊 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: 67.8%
mssql_python.row.py: 70.5%
mssql_python.pybind.logger_bridge.hpp: 70.8%
mssql_python.pybind.ddbc_bindings.cpp: 74.2%
mssql_python.pybind.connection.connection.cpp: 75.3%
mssql_python.__init__.py: 77.3%
mssql_python.ddbc_bindings.py: 79.6%
mssql_python.pybind.connection.connection_pool.cpp: 79.6%
mssql_python.connection.py: 85.2%🔗 Quick Links
|
b7fd362 to
65474b0
Compare
sumitmsft
approved these changes
Apr 10, 2026
jahnvi480
approved these changes
Apr 10, 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.
Work Item / Issue Reference
Summary
This pull request updates the library to version 1.5.0 and introduces several major new features, enhancements, and bug fixes. The release focuses on improving data integration performance, expanding SQL Server type support, and increasing library usability and reliability.
New Features and Enhancements
cursor.arrow(),cursor.arrow_batch(), andcursor.arrow_reader(), enabling zero-copy integration with pandas, Polars, and other Arrow-native data frameworks.sql_variantcomplex SQL Server data type.Rowclass is now publicly exported from the top-levelmssql_pythonmodule for easier use in type annotations and downstream code.Bug Fixes and Reliability Improvements
?) detection for?appearing inside bracketed identifiers, string literals, and SQL comments.pycore_contextafter token acquisition during bulk copy operations.__all__exports from the main library module to prevent import resolution issues.datetime.timevalues incorrectly havingmicrosecondsset to zero.Version Updates
1.5.0in__init__.pyandsetup.pyto reflect the new release. [1] [2]For a full list of changes and more details, refer to the updated release notes in
PyPI_Description.md.