]> git.ipfire.org Git - thirdparty/psycopg.git/shortlog
thirdparty/psycopg.git
2020-05-04  Daniele VarrazzoMore consistent names for numeric adaptation functions
2020-04-23  Daniele VarrazzoSkip flake check of the .eggs dir
2020-04-23  Daniele VarrazzoDon't import Python API function from the main cpython...
2020-04-23  Daniele VarrazzoFixed import of optimized Transformer
2020-04-22  Daniele VarrazzoAvoid creating an intermadiate tuple
2020-04-22  Daniele VarrazzoAn ounce faster by using an array of loaders instead...
2020-04-22  Daniele VarrazzoAdded some C decoders stubs
2020-04-19  Daniele VarrazzoPlaying around using a static definition for PQresult.
2020-04-19  Daniele VarrazzoAdded basic cython implementation of the Transform...
2020-04-19  Daniele Varrazzopq objects defined as proto rather than stub
2020-04-18  Daniele VarrazzoAdded result to transformer, fetching data from there
2020-04-17  Daniele VarrazzoSome ctypes tweaking to create better C
2020-04-16  Daniele VarrazzoSmall fixes to the ctypes module
2020-04-16  Daniele VarrazzoAdded conforming psycopg3.pq implementation in cython
2020-04-16  Daniele VarrazzoPq fixtures in their own module, report the implementat...
2020-04-16  Daniele Varrazzoadded __impl__ constant to ctypes pq module
2020-04-15  Daniele VarrazzoMinor optimizations to data fetching in the cursor
2020-04-14  Daniele VarrazzoAdded async implementation for executemany, fetchmany...
2020-04-14  Daniele VarrazzoDropped tempenv fixture
2020-04-14  Daniele VarrazzoFixed connect parameters
2020-04-14  Daniele Varrazzoconnection and cursor's close() made async
2020-04-14  Daniele VarrazzoDefine connection.close as asynchronous
2020-04-14  Daniele VarrazzoFixed dispatcher -> dispchar typo
2020-04-14  Daniele VarrazzoAdded stub for the pq package
2020-04-12  Daniele VarrazzoAdded helper object to convert Python query into a...
2020-04-11  Daniele VarrazzoAdded first implementation of executemany based on...
2020-04-11  Daniele VarrazzoAdded async query prepare functions in pq wrapper
2020-04-11  Daniele Varrazzoexec generator split in send and receive
2020-04-11  Daniele Varrazzocursor.conn renamed to connection
2020-04-11  Daniele Varrazzolibpq protocol generators moved to their own module
2020-04-11  Daniele VarrazzoAdded cursor.status property and exposing ExecStatus...
2020-04-11  Daniele VarrazzoAdded connection.status property
2020-04-11  Daniele VarrazzoAdded .close() and .closed on connection and cursor
2020-04-11  Daniele VarrazzoAdded connection status check on send_query
2020-04-11  Daniele VarrazzoAdded test to verify pq.error_message() is sane on...
2020-04-11  Daniele VarrazzoEnsure a valid connection with escaping functions
2020-04-11  Daniele VarrazzoGuard for null connections in exec functions
2020-04-11  Daniele VarrazzoAdded test for idempotent PGresult.clear()
2020-04-11  Daniele Varrazzoreset and poll fail too if the connection is gone
2020-04-11  Daniele VarrazzoMore care with functions returning null in PGconn methods
2020-04-11  Daniele VarrazzoMore care in None return values from libpq result functions
2020-04-11  Daniele VarrazzoAdded barebone implementation of dbapi 2.0
2020-04-11  Daniele VarrazzoFixed some shenanigan around connection params
2020-04-09  Daniele VarrazzoThe big rename: adapters -> dumpers, typecasters -...
2020-04-09  Daniele VarrazzoFixed composite info query to work for pg <= 10
2020-04-08  Daniele VarrazzoAdded tuple text adaptation
2020-04-08  Daniele VarrazzoFixed formats in query with repeated arguments
2020-04-08  Daniele VarrazzoAdded composite.fetch_info_async
2020-04-08  Daniele Varrazzofetchone() made async on async cursor
2020-04-08  Daniele Varrazzoregister_array() renamed to array.register()
2020-04-08  Daniele VarrazzoFixed registration scope of composite array adapters
2020-04-08  Daniele VarrazzoAdded typecasting of composite types
2020-04-08  Daniele VarrazzoAdded cast from varchar, bpchar, name
2020-04-07  Daniele VarrazzoAdded tests for all numeric types arrays
2020-04-07  Daniele VarrazzoDropped ArrayCaster, expose register_array function...
2020-04-07  Daniele VarrazzoReally use the context to transform components types
2020-04-07  Daniele VarrazzoThe Transformer is an adaptation context
2020-04-07  Daniele VarrazzoWork around mypy error of Format not exposed by psycopg...
2020-04-07  Daniele VarrazzoAdded binary cast of record type
2020-04-07  Daniele VarrazzoAdded Transformer.cast_sequence() in place of cast_row()
2020-04-07  Daniele VarrazzoAdded text cast of records
2020-04-07  Daniele VarrazzoDropped accepting None as Transformer.cast() input
2020-04-07  Daniele VarrazzoLess global objects in types.array module
2020-04-05  Daniele VarrazzoAdded xfailing tests to remember what is left to implement
2020-04-05  Daniele VarrazzoCleanup of the array adapter algorithm
2020-04-05  Daniele VarrazzoCheck that arrays contain consistent objects.
2020-04-05  Daniele VarrazzoDropped spurious comment
2020-04-05  Daniele VarrazzoAdded adaptation of binary arrays
2020-04-04  Daniele VarrazzoConsistent name of 'format' parameter
2020-04-04  Daniele VarrazzoConsistent 'src' name for the first argument of the...
2020-04-04  Daniele VarrazzoAdded cast of binary arrays
2020-04-04  Daniele VarrazzoFixed typing typo
2020-04-03  Daniele VarrazzoAdaptation context transferred to the adapters objects
2020-04-03  Daniele VarrazzoUse classmethod instead of staticmethod to play better...
2020-04-03  Daniele VarrazzoAdded array tests for sql_ascii db and bytea
2020-04-03  Daniele VarrazzoFixed TypeCasterType and AdapterType types
2020-04-03  Daniele VarrazzoAdded wrapper for escape_bytea with no connection
2020-04-03  Daniele VarrazzoTypecaster renamed to TypeCaster
2020-04-03  Daniele VarrazzoAdded basic array adaptation infrastructure
2020-04-03  Daniele VarrazzoFixed names of wrapper functions
2020-04-03  Daniele VarrazzoAdded object to map oid and data types
2020-04-02  Daniele VarrazzoAdded array delimiter to the data types info
2020-04-02  Daniele VarrazzoCleanup of the encodings table and lookup
2020-04-02  Daniele VarrazzoHandle sql_ascii encoding as binary
2020-04-02  Daniele VarrazzoAdded pq.Escaping object and bytea adaptation
2020-04-02  Daniele VarrazzoAdded connection.encoding
2020-04-02  Daniele VarrazzoAdded bytes adaptation
2020-04-02  Daniele VarrazzoAdded binary typecasting of int, float, bool.
2020-04-02  Daniele Varrazzo'pgresult' is part of the Cursor interface
2020-04-02  Daniele VarrazzoModules import to register builtin types moved to types...
2020-04-02  Daniele Varrazzoexceptions module renamed to errors
2020-04-02  Daniele VarrazzoModule adaptation renamed to adapt
2020-04-02  Daniele VarrazzoAdded text types conversion for numeric types and bools
2020-04-01  Daniele VarrazzoAdded tests about adapters/casters selection, some...
2020-04-01  Daniele VarrazzoInclude None in AdaptContext
2020-03-31  Daniele VarrazzoDefinition with a wrong default changed into declaration
2020-03-31  Daniele VarrazzoAdded mypy tests on travis
2020-03-31  Daniele VarrazzoAdded install instruction to readme
2020-03-31  Daniele VarrazzoUse == instead of is to check the Wait states
2020-03-31  Daniele VarrazzoUse the selectors module instead of select
next