summaryrefslogtreecommitdiff
path: root/NEWS
Commit message (Collapse)AuthorAgeFilesLines
...
| * Build using OpenSSL 1.0.2nDaniele Varrazzo2018-01-291-1/+1
| |
| * Mention new wheel packages in news fileDaniele Varrazzo2018-01-291-2/+5
| | | | | | | | Close #543.
| * Fixed idempotence check changing connection characteristicsDaniele Varrazzo2018-01-111-0/+2
| |
| * 'cursor.mogrify()' can be called on closed cursorsmogrify-on-closed-cursorDaniele Varrazzo2018-01-111-0/+1
| | | | | | | | Fix #579.
| * pypi3 fix noted in the news fileDaniele Varrazzo2018-01-101-0/+1
| |
* | Drop 2to3 build step; make all code compatible with all PythonsJon Dufresne2017-12-111-2/+3
|/ | | | | | | | | | | | | | | | Make all library code compatible with both Python 2 and Python 3. Helps move to modern Python idioms. Can now write for Python 3 (with workarounds for Python 2) instead of the other way around. In the future, when it is eventually time to drop Python 2, the library will be in a better position to remove workarounds Added a very small comparability module compat.py where required. It includes definitions for: - text_type -- A type. str on Python 3. unicode on Python 2. - string_types -- A tuple. Contains only str on Python 3. Contains str & unicode on Python 2.
* Avoid installing tests to site-packagesJon Dufresne2017-12-101-0/+3
| | | | | | | | For library end users, there is no need to install tests alongside the package itself. This keeps the tests available for development without adding extra packages to user's site-packages directory. Reduces the size of the installed package. Avoids accidental execution of test code by an installed package.
* Drop long deprecated function register_tstz_w_secs()Jon Dufresne2017-12-101-0/+1
| | | | | | | | | | Deprecated in commit b263fbf274f9085a1bddca018ed8a50d37023fc7 on 2010-01-13. The deprecation warning was first released in version 2.2.2. The function used to register an alternate type caster for TIMESTAMP WITH TIME ZONE to deal with historical time zones with seconds in the UTC offset. These are now correctly handled by the default type caster, so currently the function doesn't do anything.
* Dropped psycopg1 modulegoodbye-psycopg1Daniele Varrazzo2017-12-041-0/+1
|
* Fixed NEWS file entriesDaniele Varrazzo2017-12-011-8/+4
| | | | | | - 2.6.3 has not been released (yet). Fixes for bug #420, bug #462 were relased in 2.7. - Added missing report for bug #489 fixed in 2.7.
* Collect rowcount in executemany even when discarding resultsDaniele Varrazzo2017-11-291-1/+3
| | | | Closes #633.
* Build and test packages with libpq 10.1 and OpenSSL 1.0.2mDaniele Varrazzo2017-11-281-0/+1
|
* Fixed __libpq_version__ for Postgres >= 10.1Daniele Varrazzo2017-11-281-1/+3
| | | | | | | | | The version should be considered as 10.0.1; the number was generated as 10.1.0 instead. Version number bumped to test building new wheels packages. Fix #632.
* Add news and update version checkHugo2017-11-281-0/+8
|
* Merge branch 'python3_mintimeloggingconnection'Daniele Varrazzo2017-11-281-0/+1
|\
| * Mention MinTimeLoggingCursor fix in NEWS fileDaniele Varrazzo2017-11-281-0/+6
| |
* | Merge branch 'solaris-support'Daniele Varrazzo2017-11-281-0/+1
|\ \
| * | Mention solaris support in NEWSDaniele Varrazzo2017-11-281-0/+6
| |/ | | | | | | Close #532.
* | NEWS updated after last bugfix.Daniele Varrazzo2017-11-161-2/+8
|/
* Preparing release 2.7.3.22_7_3_22_7_3_2Daniele Varrazzo2017-10-241-0/+1
| | | | Close #601, close #602.
* Bumping version to test libpq 10 wheel packageDaniele Varrazzo2017-10-181-0/+6
|
* Preparing release 2.7.3.1 to fix wheel packages2_7_3_1Daniele Varrazzo2017-08-251-0/+7
|
* Added back timestamptz[] default castfix-578Daniele Varrazzo2017-07-241-0/+7
| | | | | | | | | | It was registered as side effect of an excessive definition that got cleaned up in 338dbe70a6c78c7edddea985e2386ebd864378c6. Looking at other removed redundant type oids, this was the only one missing from the `string_types` map. Close #578.
* Accept Composable in start_replication_expert()Daniele Varrazzo2017-06-171-0/+3
| | | | Close #554
* Use an import style reported not broken on Python 3.6Daniele Varrazzo2017-06-171-0/+2
| | | | Couldn't reproduce the issue but it has been documented in #550.
* Merge branch 'fix-558'Daniele Varrazzo2017-06-161-0/+1
|\
| * Consider redshift interval supported after further testsDaniele Varrazzo2017-06-161-0/+1
| |
* | Added Json.prepare()fix-562Daniele Varrazzo2017-06-161-0/+2
| | | | | | | | Close #562
* | Merge branch 'mr-566'Daniele Varrazzo2017-06-161-0/+2
|\ \ | |/ |/|
| * Report issue #541 fixed in the NEWS fileDaniele Varrazzo2017-06-151-0/+2
| |
* | Check return code from decoding the connection statusDaniele Varrazzo2017-06-151-0/+1
|/ | | | | | | | | It fails on Py3 after receiving a SIGABRT. Because we don't handle it here it will resurface later with nonsense such as: SystemError: <some function> returned a result with an error set Close #551
* Updated docs about versions supported in errcodesDaniele Varrazzo2017-06-051-0/+1
|
* Merge branch 'fix-547'Daniele Varrazzo2017-04-191-0/+2
|\
| * Fixed args parsing in ReplicationCursor.consume_stream()Daniele Varrazzo2017-04-191-0/+2
| | | | | | | | Close #547.
* | Added news entries for the previous 2 merge requestsDaniele Varrazzo2017-04-191-0/+4
|/
* Don't clobber a Python exception with an unknown errorDaniele Varrazzo2017-04-051-0/+1
| | | | Close #410
* Return objects with timezone parsing infinity timestamptzDaniele Varrazzo2017-03-221-0/+2
| | | | Close #536.
* Obscure the password on url dsn tooDaniele Varrazzo2017-03-161-0/+2
| | | | | | Note that we don't leak anymore the password length. Fix #528
* Reported bug #443 fixed *again*fix-443Daniele Varrazzo2017-03-141-1/+10
| | | | Also see ticket #527.
* Connection state fixed noted in the newsDaniele Varrazzo2017-03-141-0/+2
|
* Report ticket 518 fixedDaniele Varrazzo2017-03-111-0/+2
| | | | | The fix is actually implemented in the openssl1 branch of https://github.com/psycopg/psycopg2-wheels
* Dropped "what's new in 2.7.1" from docs indexDaniele Varrazzo2017-03-031-1/+1
|
* Don't use PG_INT64_TYPEDaniele Varrazzo2017-03-021-0/+1
| | | | | | | Only defined in Postgres 9.3 Should close #520, but let's wait for the CI response (build on Windows etc.)
* Ignore None arguments passed to make_dsn()fix-517Daniele Varrazzo2017-03-011-0/+7
| | | | Close #517.
* Fixed integer overflow in interval typecasterDaniele Varrazzo2017-02-241-0/+1
| | | | Close #512.
* Fixed link to attribute in newsDaniele Varrazzo2017-02-161-1/+1
|
* Added readonly and deferrable attributesDaniele Varrazzo2017-02-161-1/+3
|
* Revert pre-2.7b1 behaviour of silent rollback on conn.set_isolation_level()Daniele Varrazzo2017-02-161-2/+0
| | | | Legacy method is legacy.
* connection.isolation_level is now writableDaniele Varrazzo2017-02-161-0/+1
|
* Don't convert '{}'::unknown into an empty listDaniele Varrazzo2017-02-081-0/+2
| | | | Close #506.