Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Releases: pymssql/pymssql

2.1.5

18 Sep 02:24
Compare
Choose a tag to compare

General

  • Revert deprecation
  • Support Python-3.8. Update tests for Python-3.8 compatibility.
  • Use correct language level for building Cython extension.
  • Fix FreeTDS version checks. Add check for version 7.4.
  • Use Github Actions for building wheels for Linux, macOS and Windows.
  • Drop bundled FreeTDS-0.95 binaries.

2.1.4

28 Aug 17:56
f3c63bd
Compare
Choose a tag to compare

Version 2.1.4 - 2018-08-28

General

  • Drop support for versions of FreeTDS older than 0.91.

  • Add Python 3.7 support

  • Drop Python 3.3 support

Features

  • Support for new in SQL Server 2008 DATE, TIME and DATETIME2 data
    types (GH-156). The following conditions need to be additionally met so
    values of these column types can be returned from the database as their
    native corresponding Python data types instead of as strings:

    • Underlying FreeTDS must be 0.95 or newer.
    • TDS protocol version in use must be 7.3 or newer.

    Thanks Ed Avis for the implementation. (GH-331)

Bug fixes

  • Fix tds_version _mssql connection property value for TDS version.
    7.1 is actually 7.1 and not 8.0.

2.1.4.rc1

05 Aug 04:32
c2ca251
Compare
Choose a tag to compare
2.1.4.rc1 Pre-release
Pre-release

2.1.4 Release Candidate 1

v2.1.4.dev5

15 Mar 14:35
Compare
Choose a tag to compare
v2.1.4.dev5 Pre-release
Pre-release
fix twine upload

v2.1.4.dev4

08 Mar 20:20
Compare
Choose a tag to compare
v2.1.4.dev4 Pre-release
Pre-release
change test pypi url

v2.1.4.dev3

08 Mar 20:00
Compare
Choose a tag to compare
v2.1.4.dev3 Pre-release
Pre-release
update dev version

v2.1.4.dev2

08 Mar 18:52
Compare
Choose a tag to compare
v2.1.4.dev2 Pre-release
Pre-release
fix version number

v2.1.4.dev1

08 Mar 18:18
Compare
Choose a tag to compare
v2.1.4.dev1 Pre-release
Pre-release
change win-iconv download url

pymssql 2.1.3

22 Jun 20:50
Compare
Choose a tag to compare
  • Windows official binaries: Rollback changes to Windows binaries we had implemented in pymssql 2.1.2; go back to using:
    • A statically linked version of FreeTDS (v0.95.95)
    • No SSL support
  • Update bundled Linux static version of FreeTDS to v0.95.95.
  • We now publish Linux PEP 513 manylinux wheels on PyPI.
  • Add support for reporting TDS version 7.3 is in use via the tds_version property of a _mssql-level connection.

pymssql 2.1.2

21 Feb 21:43
Compare
Choose a tag to compare

Attention Windows users: You need to download and install additional files. pymssql version 2.1.2 includes a change in the official Windows binaries: FreeTDS isn't statically linked as it happened up to release 2.1.1, as that FreeTDS copy lacked SSL support.

Please see http://pymssql.org/en/v2.1.2/freetds.html#windows for futher details.

We are trying to find a balance between security and convenience and will be evaluating the situation for future releases. Your feedback is greatly welcome.

Supported Python versions: Add 3.5, drop 2.6. Update bundled Linux FreeTDS static libs to 0.95. Add ability to set TDS protocol version from pymssql when connecting. Add Dockerfile and a Docker image. Fix a couple of very common causes of segmentation faults in presence of network partitions. Fix build fatal error when using Cython >= 0.22, and more...