root/tags/3.1.0/NEWS

Revision 1639, 27.4 KB (checked in by jtv, 5 months ago)

Fixed #104: -Werror always used. Works around RedHat? gcc build problem.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
13.1
2 - Shared libraries are now versioned by ABI: 3.1 instead of 3.1.0 etc.
3 - Threading behaviour is now documented, and can be queried.
4 - Version information available at compile time.
5 - Supports parameterized statements.
6 - Result tuples now support slicing.
7 - Configure with --with-tr1=boost to use BOOST shared_ptr.
8 - String conversion now has its own header file.
9 - Supports read-only transactions.
10 - Fixed breakage with Solaris "make".
11 - Uses shared_ptr if available.
12 - binarystring::str() is no longer cached; no longer returns reference.
13 - Fixed problems in Visual C++ Makefile for test suite.
14 - Fixed problems with RPM packaging.
15 - Fixed build problem on RedHat/CentOS 5.
16 - Lets you check whether a prepared statement has been defined.
17 - "Varargs" prepared statements.
18 - Unnamed prepared statements now supported.
19 - Results have iterator as well as const_iterator.
20 - Rewrite of robusttransaction logic; may actually do its job now.
21 - Connections support async query cancel from signal handler or thread.
22 - More documentation for performance features.
233.0
24 - Website is now at http://pqxx.org/ (no redirects)
25 - Completely replaced cursor classes
26 - More helpful error messages on failed connections
27 - More detailed hierarchy of constraint-violation exception classes
28 - trigger is now called notify_listener, trigger header is now notify-listen
29 - New mixin base class pqxx_exception distinguishes libpqxx exception types
30 - Quoting is back!  transaction_base::quote() & connection_base::quote()
31 - Several build & documentation problems with Visual C++ fixed
32 - Compile fixes for gcc 4.2, 4.3
33 - Compile fixes for Sun Studio Express 5.9
34 - Uses strlcpy() where available, instead of strncpy()
35 - Keeps better track of applicable text encodings
36 - Fixed bug with prepared statement parameters in separate C++ statements
37 - robusttransaction now works for multiple users
38 - Pipeline lets you cancel ongoing queries, e.g. because they run for too long
39 - Fixed broken escaping of binary values in tablewriter
40 - Floating-point types now represented with full precision
41 - Proper unit tests for new functionality
42 - New traits-based system for adding data types
43 - Floating-point infinities now supported
44 - Flushing/completing a pipeline now frees up the transaction for other use
45 - Completely reworked test suite, builds and runs much faster
46 - tablewriter supports writing of raw lines
472.6.9
48 - Removed old 1.x API (that means all identifiers with capital letters!)
49 - Tested with all current libpq versions and oldest/newest supported backends
50 - No longer have old OnCommit()/OnAbort()/OnDoubt() callbacks in transactor!
51 - Fixes failure when closing cursors with upper-case letters in their names
52 - Fixes bug when adding triggers to connections that aren't open yet
53 - Fixes bug when removing triggers
54 - Fixes small memory leak when preparing statements
55 - Fixes many problems with older backends
56 - Fixes bug in result::swap(): protocol versions were not swapped
57 - Some errors went undetected when using certain libpq versions
58 - Fixes prepared statements on new libpq versions talking to old backends
59 - Can estimate server version if libpq does not know how to obtain it
60 - Greatly reduced memory usage while escaping strings
61 - With Visual C++, creates lib/ directory if not already present
62 - Useful error messages when preparing statements
63 - Allows prepared statements to be registered explicitly
64 - Support for "long long" types; enable with PQXX_ALLOW_LONG_LONG macro
65 - Compilation errors for older libpq versions fixed
66 - Some new small utility classes for disabling notice processing etc.
67 - Result sets remember the queries that yielded them
68 - New test script, pqxx-fulltest, tests against all current postgres versions
69 - Connections can simulate failure
70 - Adds password encryption function
712.6.8
72 - Fixes bug: binary parameters to prepared statements truncated at nul bytes
73 - New, more specific exception types to distinguish errors from server
74 - Resolved serious problems with generated reference documentation
75 - Automatically detect Windows socket library with MinGW
76 - Windows "make" fixed to run from main directory, not win32
77 - Fixes "mktemp" problems on some BSD-based platforms
78 - pqxx-config is deprecated; use pkg-config instead
79 - On GNU/Linux, uses poll() instead of select() to avoid file descriptor limit
80 - Will provide server and protocol version information where available
81 - New cursor class, absolute_cursor
822.6.7
83 - New escape functions for binary data: transaction_base::esc_raw()
84 - Improved detection of socket libraries, especially for MinGW
85 - Works around bug in some versions of GNU grep 2.5.1
86 - Fixes problem with configuration headers
87 - Fixes PQprepare() detection
88 - Fixes incomplete Visual C++ Makefile
89 - Fixes compile error in workaround for older libpq versions
90 - Removes "rpath" link option
912.6.6
92 - New, encoding-safe string-escaping functions
93 - Upper-case letters now allowed in prepared-statement names
94 - Fixes crash in test005
95 - More Visual C++ improvements
96 - Removed collaboration diagrams from reference docs
97 - New templating system for generating Windows Makefiles etc.
982.6.5
99 - Visual C++ users: copy win32/common-sample to win32/common before editing it
100 - Should fix problems finding socket library on MinGW
101 - Even more work on Visual C++ problems
102 - Updated documentation for Visual C++ users
103 - Fixed bug in prepared statements (mostly visible on Visual C++)
104 - Nested transactions work harder to detect backend support
1052.6.4
106 - Massively improved compatibility with Windows and Visual C++
107 - Fixed late initialization of "direct" connection state
108 - Fixed problem with initialization of connection capabilities
109 - Fixed configuration bug for libpq in nonstandard locations
110 - Sample configuration header for libpq found in PostgreSQL 8.1
1112.6.3
112 - Radical rework of prepared statements; INCOMPATIBLE INTERFACE CHANGE!
113 - Dropped support for g++ 2.95
114 - Emulate prepared statements support on old libpq or old backend
115 - Bug fix: missing tutorial (release script now tests for this)
116 - Automatically links in socket library on Windows or Solaris, if needed
117 - Bug fix: check for std namespace didn't work
118 - Fixes for Cygwin/MSYS/MinGW
1192.6.2
120 - Bug fix: connection state was not set up properly in some common cases
121 - Bug fix: headers were installed in "include" instead of "include/pqxx"
122 - Bug fix: sqlesc(string) broke with multibyte or multiple encodings
123 - namedclass is now used as a virtual base; affects all subclass constructors
124 - Initial implementation of subtransactions
125 - Detect more connection capabilities
126 - Standard library namespace can be set from configure script's command line
127 - Completely reworked connection hierarchy, with separate policy objects
128 - Clients can now define their own connection policies
129 - Paved the way for client-defined thread synchronization
130 - Now lives at http://thaiopensource.org/development/libpqxx/
1312.6.1
132 - Hugely improved recognition of different strerror_r() versions
133 - Resolved link problems with gcc 4.0 and shared library
1342.6.0
135 - New macro PQXX_SHARED defines whether to use/build libpqxx as shared library
136 - Robusttransaction compatible with PostgreSQL 8.1
137 - Infrastructure for querying connection/backend capabilities at runtime
138 - Greatly improved cursor support
139 - Connection reactivation can be inhibited explicitly
140 - Tries even harder to make sense of conflicting strerror_r() definitions
141 - Detects connection failures that libpq glosses over
142 - Reference documentation grouped into more coherent sections
143 - Assumes strerror() is threadsafe on systems that have no strerror_r()
144 - Now allows connection's socket number to be queried
145 - New internal_error class for libpqxx-internal errors
146 - With Visual C++, doesn't redefine NOMINMAX if it is defined already
147 - Several compatibility improvements for Visual C++
148 - Fixes and workarounds for HP-UX and HP aCC compiler
149 - Phased old cursor interface out of test suite; tests ported to new interface
150 - Added documentation on thread safety
151 - New thread safety model
152 - Large objects have functions to tell current position
153 - Minor updates to tutorial (somebody pay me and I'll do more :)
154 - No longer needs libpq-fs.h header
155 - Meaningful error messages for ambiguous string conversions fixed
1562.5.6
157 - Support null parameters to prepared statements (use C-style char pointers)
1582.5.5
159 - Diagnoses connection failure during result transfer
160 - Fixes invalid -R link option in pqxx-config
1612.5.4
162 - Fix workaround code for older libpq versions without PQunescapeBytea()
163 - Work around grep bug in Fedora Core 4 that broke configure in UTF-8 locales
164 - In Visual C++, assume libpqxx is a DLL when linking to std library as DLL
165 - Missing documentation in distribution archive is back again
166 - Export fewer symbols from library binary with gcc 4.0
167 - Releases now automatically tested against gcc 4.0
168 - Meaningful link errors for additional ambiguous string conversions
169 - DLL symbol exports now automatically tested before each release
1702.5.3
171 - Greatly improved builds on MinGW with MSYS
172 - All known problems with MinGW fixed
173 - Fix bugs in stream classes that caused failures and crashes with STLport
174 - Detects and uses STLport automatically
1752.5.2
176 - Fix memory leaks
177 - Fix problems with NaN (not-a-number values) on some compilers
1782.5.1
179 - Fix configure script; broke when very recent libpqxx was already installed
180 - Fix cursor breakage when "long" is more than 32 bits
181 - Fix cases where new-style abort/doubt handlers are used
182 - Fix for division-by-zero error in Visual C++ (changed sample headers)
183 - Improved checking for strerror_r in configure script
184 - Fix for problem MinGW has with configure script
185 - Fix spurious failure of Oid check in configure script
1862.5.0
187 - Fix race condition in removing triggers
188 - Fix binary string conversion with older libpq
189 - Fix some error strings that may previously have come out wrong
190 - No longer includes any libpq headers while compiling client code
191 - Improved thread safety: avoid strerror() where possible
192 - Prepared statements
193 - Translate more error conditions to std::bad_alloc exception
194 - Clearer and more specific explanations for configuration failures
195 - Improved documentation
196 - Looks for standard library in global namespace as well as std
197 - Accepts standard C library in std namespace
198 - Release script automatically tests with a range of compilers, not just one
199 - Compatible with g++ 2.95 again; this time it's tested automatically
2002.4.4
201 - Fix problems building shared library in Visual C++
202 - Fix autobuild in Debian, which was broken by mistake in BSD grep workaround
203 - Fix conversion of string to floating-point type NaN
204 - Remove stray CVS directories from distribution archive
205 - Workaround for Visual C++ problem when issuing messages from destructors
206 - Yet more workarounds for Visual C++ bugs
207 - Fix situation where connection state might not be restored after failure
208 - Fix configuration problem on SunOS
209 - Network speedup in connection setup with pending variables and/or triggers
2102.4.3
211 - Yet more workarounds for bugs in Visual C++ .NET 2003
212 - Fixes for SunC++ 5.5
213 - On Visual C++, now defines NOMINMAX, fixing large object support
214 - Workaround for BSD grep
215 - Improvements for builds from CVS
216 - Sample config headers for Sun ONE Studio 8
2172.4.2
218 - Fix minor problems with Apple's version of g++ 3.3
219 - Fix problem with MingW on Windows
220 - Workarounds and fixes for Visual C++.NET 2003
221 - Renewed compatibility with g++ 2.95
222 - More sample configuration headers
223 - Updated reference documentation
224 - Removed assert code
2252.4.1
226 - Several bugs in icursor_iterator fixed; incompatible interface changes
227 - Tightens throw specifications on begin(), end(), size(), capacity()
228 - Containers define reference and pointer types
229 - Implements swap() in all container types
230 - Implements == and != in all container types
231 - Stabilizes new (but still limited) cursor interface
232 - icursor_iterator thinks purely in stride granularity
233 - Introduces </<=/>/>= comparisons for icursor_iterators
234 - Allows "adopted SQL cursors" in new cursor interface
235 - Reference-counting in binarystrings, so they can be copied (and efficiently)
236 - Fixes reference-to-temporary problem with std::reverse_iterator in results
237 - Result/tuple reverse_iterators no longer require std::reverse_iterator
238 - Includes some sample config headers (in config/sample-headers)
239 - Replaces iffy autoconf checks (avoid failures with maintainer mode's -Werror)
240 - Fixes incompatibility with some implementations of Unix "cut" program (again)
2412.4.0
242 - Fixes incompatibility with some implementations of Unix "cut" program
243 - Fixes "ptrdiff_t redefinition" problem in some environments
244 - More container-like tuples, so fields can be iterated
245 - All size_type types are now unsigned
246 - More conservative robusttransaction--thanks Tom Lane
247 - Stream-like extraction operator for result field conversion
248 - Warnings about deprecated headers now suppressed while compiling library
249 - Iterator constructors and copy assignments now have empty throw specs
2502.3.0
251 - Generates MinGW Makefile automatically
252 - Documents MinGW build
253 - Workaround for missing prepared-statement support
254 - Potential bug fixed in closing of connections
255 - Fixed incompatibility between new cursor streams and older backends
256 - Removed pqxxbench
2572.2.9
258 - Bugfix in removing trigger
259 - Added "failed connection" to regression test
260 - Some changes to throw specifications
261 - Putting libpq in its own namespace is optional
2622.2.8
263 - Moved libpq into pqxx::internal::pq namespace
264 - New config system separates compiler-related items from libpq-related ones
265 - Auto-generates Visual C++ Makefile, should always remain up-to-date now
2662.2.7
267 - Bugfix: from_string() didn't handle LONG_MIN--thanks Yannick Boivin
2682.2.6
269 - Complete "pipeline" rewrite, for better exception safety
270 - New garbage collection scheme for "result;" constructors now exception-free
2712.2.5
272 - First new cursor classes!
273 - Fixed strange failure in tablewriter during large insertions
274 - Updated tutorial
2752.2.4
276 - New utility class template, items<> for easy container initialization
277 - New utility function template, separated_list()
278 - Error handling bugfix in tablewriter
279 - Fixed tablereader handling of lines ending in empty fields
280 - tablereader lines no longer end in newline with old libpq versions
2812.2.3
282 - Trigger names no longer need to be proper identifiers
283 - Compile fixes for g++ 3.4.0 and other modern compilers
284 - Tablestreams may specify column lists
285 - Deprecated Quote() in favour of sqlesc(); improved quoting
286 - Fixed generation of libpqxx.spec
2872.2.2
288 - Bugfix in fieldstream w.r.t. reading strings on some systems
289 - Renamed config.h to internalconfig.h to avoid confusion
290 - New connection functions allow client to sleep until notification arrives
291 - Notification functions return number of notifications received
292 - Even fewer client-visible macros exported by libconfig.h
2932.2.1
294 - New, 2.x-style string conversions without locale problem
295 - Documentation improvements
296 - Implemented result::swap()
2972.2.0
298 - Installs to /usr/local by default, NOT to /usr/local/pqxx like before!
299 - Uses Postgres-provided script to find Postgres (thanks Peter Eisentraut)
300 - Which means no more configure arguments required on Irix (thanks Arjen Baart)
301 - Fixes long-standing bug in result class!
302 - New pipeline class for throughput optimization
303 - New field stream class: read result field as C++ stream
304 - Separate namespace pqxx::internal for definitions not relevant to the user
305 - More Windows compilation fixes
306 - SUN Workshop 6 compile fixes and workarounds (thanks Jon Meinecke)
307 - Implemented reverse_iterator for result class
308 - Checks for functional std::reverse_iterator template
309 - Preliminary Makefile for MinGW compiler (thanks Pasquale Fersini)
310 - Changed the way unique<> works
311 - Checks for functional std::count_if()
312 - Bugs fixed & test programs added
3132.1.3
314 - Makefile fixes for Visual C++, thanks Paresh Patel
315 - Library ABI versioning implemented, thanks Roger Leigh
316 - Uses old SQL isolation level syntax for compatibility, thanks koun@sina.com
317 - tablestreams can explicitly complete() before destructor
318 - Bugfix in robusttransaction: forgot to set isolation level
319 - Fixed off-by-ones in tablewriter escape code
320 - tablestreams now use \n-style escape sequences
321 - tablestreams support octal numbers
322 - Freely definable "null" strings in tablestreams, as originally intended
323 - Improved Debian packaging, thanks Roger Leigh
324 - tablestreams use libpq's new-style COPY functions, if available
325 - Extended automation of build/release procedure
326 - tablewriter writes in nonblocking mode to help hide communication latency
327 - Can get backend variables as well as set them
328 - More configuration macro cleanups
329 - Workaround for missing clear() in standard string
330 - Merry Christmas!
3312.1.2
332 - Compile fix for gcc libstdc++ 2.9, thanks Jaroslaw Staniek
333 - Moved deprecated functions below current ones
334 - Cleanups for Debian packaging (thanks Roger Leigh, new Debian maintainer!)
335 - Updated authors listings
336 - Bumped ABI version number for the first time (now 2:0:1)
3372.1.1
338 - More workarounds for gcc 2.95
339 - Automated tools keep test makefiles up to date
3402.1.0
341 - Asynchronous connections
342 - Fixed configure --includedir option (thanks Ray Dassen!)
343 - Compile fixes for SUN Workshop 6, and one for gcc on FreeBSD 4.8
3442.0.0
345 - New stable release!
346 - Includes all changes since 1.5 release.
347 - Workarounds for Microsoft Visual C++ 7 problems.  Thanks Costin Musteata!
348 - No longer need to define PQXX_NO_PARTIAL_CLASS_TEMPLATE_SPECIALISATION
349 - Integrated Windows configuration into regular configuration
350 - Only uses #warning if preprocessor supports it
351 - Works on libpq versions without PQ[un]escapeBytea()
3521.9.9
353 - Minor documentation changes
3541.9.8
355 - Workaround for compile problem with postgres 7.3
356 - Convenience typedef for transaction<>: "work"
3571.9.7
358 - binarystring rewritten and moved to its own file
359 - binarystring::size() does not include terminating null byte!
360 - Implemented escaping of binary strings
361 - Fix in workaround for missing numeric_limits on some compilers
362 - String conversion supported for unsigned char *
363 - More helpful link errors for unsupported string conversions
364 - Complete test coverage
3651.9.6
366 - Fixes in "field table" support
367 - Improved coexistence with client program's config.h, if any
368 - Prefixed autoconf macros used in headers with "PQXX_"
3691.9.5
370 - Header file contents moved to .hxx files for editor filetype recognition
371 - Fixes wrong timestamp for include/pqxx/result in 1.9.4 distribution
3721.9.4
373 - Fixes Visual C++ build problem when compiling as library
3741.9.3
375 - Quick release for various minor changes
3761.9.2
377 - Renamed most public member functions to all-lower-case names
378 - <pqxx/all> (previously <pqxx/all.h> is now called <pqxx/pqxx>
3791.9.1
380 - tablestream destructor crashed if table didn't exist (thanks Sean [Rogers?])
381 - Renamed all header files to remove ".h" suffix
382 - Tables created by regression test now prefixed with "pqxx" for safety
383 - Large objects now considered stable
384 - Migrated tutorial from SGML to DocBook XML (thanks Wichert Akkerman)
385 - Added tests 57-59
386 - Fixed compile error in largeobject
387 - Updated Windows makefiles
3881.9.0
389 - EVERYTHING HAS CHANGED.  Read the list or run into trouble!
390 - CURSOR HAS INCOMPATIBLE CHANGES AND MAY BE REPLACED COMPLETELY
391 - CACHEDRESULT HAS INCOMPATIBLE CHANGES (won't compile without changes)
392 - REVISE YOUR TRANSACTORS; now templatized on transaction type
393 - Finally got license file in order
394 - Incompatible change in setting transactor quality of service
395 - Cursors require serializable isolation level (checked at link time)
396 - Renamed Connection_base to connection_base, Connection to connection,
397   LazyConnection to lazyconnection
398 - Renamed LargeObject to largeobject, LargeObjectAccess to largeobjectaccess
399 - Renamed Noticer to noticer
400 - Renamed Trigger to trigger
401 - Renamed Result to result, Tuple to tuple, Field to field
402 - Renamed Unique<> to unique<>
403 - Renamed CachedResult to cachedresult
404 - Transformed Transaction Taxonomy (TTT):
405 - Renamed Transaction_base to transaction_base
406 - Renamed Transaction to transaction
407 - Renamed Transactor to transactor<> (now a template)
408 - Implemented transaction isolation levels as compile-time static properties
409 - transaction and robusttransaction now templatized on their isolation levels
410 - cachedresult requires serializable isolation level (checked at link time)
411 - Now need to include pqxx/transactor.h yourself if you need transactors
412 - Large objects require real backend transaction at compile time
413 - New type oid and constant oid_none for row identifiers resp. null oid
414 - Added some forgotten PQXX_LIBEXPORTs
415 - Tweaked documentation in many places
4161.8.1
417 - By popular request: more convenient way to read field values
418 - Documented locale sensitivity of ToString(), FromString(), Field::to()
4191.8.0
420 - Compiles on gcc 2.95 again (heavy streambuf workarounds in largeobject.h)
421 - ConnectionItf renamed to Connection_base, TransactionItf to Transaction_base
422 - connectionitf.h is now connection_base.h, transactionitf.h connection_base.h
4231.7.8
424 - BinaryString class for unescaping bytea strings
425 - PQAlloc template keeps track of libpq-allocated objects
426 - Removed some consts in Unique<>, ConnectionItf, sorry!
427 - Can now set session variables on connections, transactions
4281.7.7
429 - ./configure also looks for postgres in /usr/local/pgsql
430 - test007 now uses SQL_ASCII as its test encoding
431 - integrated Greg Hookey's Debian packaging
4321.7.6
433 - added postgres library (libpq) to dynamic link path
4341.7.5
435 - added test052 - test055
436 - added Result::Tuple::ColumnNumber()
437 - also test setting of client encodings
438 - removed superfluous versions of to_file() from large object classes
4391.7.4
440 - new exception class, sql_error, remembers query text
441 - moved exception classes to new file include/pqxx/except.h
442 - test cases report texts of any failed queries
443 - added tools/rmlo.cxx
4441.7.3
445 - default constructors for connection classes
446 - revamped seeking operations on large objects
447 - better error messages in large objects
448 - added test050, test051
4491.7.2
450 - more workarounds for Sun CC 5.1, thanks Jeroen van Erp!
451 - preliminary support for "named" queries
452 - can now Quote() string constants
453 - included Doxyfile in distribution archive
454 - helps avoid Windows memory allocation problem in DLLs
455 - allows setting of client character set encoding
4561.7.1
457 - regenerated documentation
4581.7.0
459 - removed all deprecated features
460 - connection string documentation in README
461 - separate Connection, LazyConnection classes
462 - made test001 more concise
463 - added test049
4641.6.4
465 - configure script now respects different std namespace
4661.6.3
467 - olostream, lostream now flush themselves before closing
468 - fixed compilation problems when using ToString<>() on a plain char *
469 - compilation fixes for Sun compiler (thanks Jeroen van Erp!)
470 - added .pc file for pkgconfig (thanks Ray Dassen!)
4711.6.2
472 - Debian packaging added to distribution archive
473 - new ilostream, olostream, lostream classes
4741.6.1
475 - large object's cunlink() replaced by remove()
476 - default constructor for LargeObject
4771.6.0
478 - new large objects interface
479 - added test048
4801.5.0
481 - allow result fields to be written to streams
482 - removed confusing CachedResult::clear()
483 - minor documentation updates
484 - added test046, test047
485 - added <pqxx/all.h> convenience header
4861.4.5
487 - fixed crash CachedResult that was less shallow than I thought
488 - fixed quoting problem with adopted SQL cursors
4891.4.4
490 - (forgot to save cursor.cxx with new constructor in 1.4.4, sorry)
4911.4.3
492 - all tests now have three-digit numbers
493 - Cursor can adopt SQL cursor returned by a function
4941.4.2
495 - bugfix in CachedResult when accessing empty Results
496 - minor documentation improvements
4971.4.1
498 - documents new homepage: http://pqxx.tk/
499 - Connection constructor accepts null connect string
500 - Exec() now also takes queries as C++ strings
5011.4.0
502 - Connection::IsOpen() renamed to is_open()
503 - NoticeProcessor replaced by Noticer (with C++ linkage)
5041.3.7:
505 - detects nasty rare problem case with Cursors in unknown positions
5061.3.6:
507 - fixed detection of missing PQescapeString().  Thanks David Wright!
508v1.3.5:
509 - documented Windows build procedure
510 - fixed problem with upper-case letters in cursor names.  Thanks key88!
5112003-01-19 16:00, v1.3.4:
512 - support long double type
513 - clarified some error messages
5142003-01-08 18:45, v1.3.3:
515 - fix missing include in test13
5162003-01-07 02:30, v1.3.2:
517 - configure looks for postgres includes/library in more places, thanks Ray!
5182003-01-02 23:00, v1.3.1:
519 - bugfix in Cursor positioning
5202003-01-02 20:30, v1.3.0:
521 - absolute positioning for Cursor
522 - better documentation on cursors
523 - reduced, but improved test suite output
5242002-12-23 17:30, v1.2.8:
525 - Cursor::Move() returns number of rows skipped
526 - new typedef Cursor::size_type
5272002-12-14 23:30, v1.2.7:
528 - test suite now distinguishes expected errors from unexpected ones
5292002-12-09 20:00, v1.2.6:
530 - fixed some Cursor test cases for change in postgres 7.3
531 - added important warning to Cursor
5322002-12-09 02:00, v1.2.5:
533 - added important warning to CachedResult
5342002-12-08 14:14, v1.2.4:
535 - fixed compile error on some systems in include/pqxx/util.h
5362002-12-04 12:00, v1.2.3:
537 - workaround for broken <sys/select.h> on some systems
538 - fixed Quote() bug
5392002-12-03 01:30, v1.2.2:
540 - fixed serious CachedResult bug
541 - added test41
5422002-12-02 17:00, v1.2.1:
543 - hopefully fixed cursor bug with PostgreSQL 7.3
5442002-12-01 22:00, v1.2.0:
545 - new CachedResult class
5462002-11-07 13:15, v1.1.4:
547 - workaround for missing InvalidOid definition
5482002-10-23 16:00, v1.1.3:
549 - Cursor & TableStream hierarchy now work on any transaction type
550 - get no. of affected rows & oid of inserted row from Result
551 - increased test coverage
5522002-10-21 01:30, v1.1.2:
553 - updated build procedure
554 - Debian packaging improvements
5552002-09-25 03:00, v1.1.1:
556 - supports activating/deactivating of connections
557 - various Connection getters now activate deferred connection first
5582002-09-23 01:00, v1.1.0:
559 - supports lazy connections (added 19 test cases just for these)
560 - greatly reduced performance overhead for RobustTransaction
561 - removed id field from RobustTransaction's transaction log tables
5622002-09-14 20:00, v1.0.1:
563 - now lives on GBorg
564 - various packaging updates
5652002-06-12 17:30, v0.5.1:
566 - no longer have to destroy one transaction before creating the next
5672002-06-07 17:15, v0.5.0:
568 - "make install" now finally installs headers!
569 - distribution now includes SGML (DocBook) version of tutorial
5702002-06-04 15:00, v0.4.4:
571 - may now have multiple triggers with same name on single connection
5722002-06-02 23:00, v0.4.3:
573 - fixed TableReader problem with \t and \n
5742002-06-01 21:00, v0.4.2:
575 - hopefully fixes compile problem with broken std::iterator
576 - configure no longer requires --with-postgres-include=/usr/include/postgresql
5772002-05-29 22:00, v0.4.1:
578 - can now also handle bool, unsigned char, short field types
5792002-05-27 22:30, v0.4.0:
580 - RENAMED Transactor::TRANSACTIONTYPE to argument_type for STL conformance
581 - RENAMED Result::Field::name() to Name()
582 - documentation improvements
583 - minor optimizations
5842002-05-18 00:00, v0.3.1:
585 - removed broken postgres_fe.h dependency (hopefully permanent fix)
5862002-05-12 22:45, v0.3.0:
587 - also looks for postgres_fe.h in postgres' internal/ directory (tmp fix)
5882002-05-05 01:30, v0.2.3:
589 - extensive build instructions in README
590 - make check now controlled through PG environment variables
5912002-05-04 19:30, v0.2.2:
592 - more STL conformance
593 - fixed regression test
594 - test6 now copies "orgevents" to "events" by default
5952002-04-28 23:45 Version bumped to 0.2
5962002-04-28 23:45 Self-generated distribution archive
5972002-04-27 14:20 Replaced automake symlinks with actual files
5982002-04-07 02:30 Released with configure script
5992002-03-29 01:15 Not yet released.  Still integrating autogen stuff...
Note: See TracBrowser for help on using the browser.