Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-10-31 | tag 8.2.11REL8_2_11 | Marc G. Fournier | |
2008-10-30 | Translation updates | Peter Eisentraut | |
2008-09-19 | tag for 8.2.10REL8_2_10 | Marc G. Fournier | |
2008-08-20 | Make libpq on windows not try to send chunks larger than 64Kb. | Magnus Hagander | |
Per Microsoft knowledge base article Q201213, early versions of Windows fail when we do this. Later versions of Windows appear to have a higher limit than 64Kb, but do still fail on large sends, so we unconditionally limit it for all versions. Patch from Tom Lane. | |||
2008-06-08 | Stamp 8.2.9 (except for configure.in/configure) | Tom Lane | |
2008-06-05 | Stamp 8.2.8 (except for configure.in/configure) | Tom Lane | |
2008-06-05 | Translation updates. | Tom Lane | |
2008-05-05 | Add more dependencies from libpgport required by | Magnus Hagander | |
standalone msvc build of libpq. Hiroshi Saito | |||
2008-04-16 | Avoid using unnecessary pgwin32_safestat in libpq. | Andrew Dunstan | |
2008-03-14 | Translation updatesREL8_2_7 | Peter Eisentraut | |
2008-03-13 | Stamp version 8.2.7, except for configure.in/configure. | Tom Lane | |
2008-01-14 | Fix an ancient oversight in libpq's handling of V3-protocol COPY OUT mode: | Tom Lane | |
we need to be able to swallow NOTICE messages, and potentially also ParameterStatus messages (although the latter would be a bit weird), without exiting COPY OUT state. Fix it, and adjust the protocol documentation to emphasize the need for this. Per off-list report from Alexander Galler. | |||
2008-01-03 | Stamp release 8.2.6.REL8_2_6 | Tom Lane | |
Security: CVE-2007-4769, CVE-2007-4772, CVE-2007-6067, CVE-2007-6600, CVE-2007-6601 | |||
2007-11-30 | Add win32error.c to libpq, needed to resolve _dosmaperr. | Magnus Hagander | |
2007-10-09 | Don't try to free pgpassfile since it's a stack variable. | Magnus Hagander | |
Martin Pitt | |||
2007-09-13 | Translation updates | Peter Eisentraut | |
2007-09-11 | Stamp releases 8.2.5, 8.1.10, 8.0.14, 7.4.18, 7.3.20. | Bruce Momjian | |
Update FAQs for 8.2.5. | |||
2007-07-23 | The correct min buffer size is | Magnus Hagander | |
INITIAL_EXPBUFFER_SIZE, not PQERRORMSG_LENGTH. Backpatch only, the proper fix in HEAD is to use PQExpBuffers everywhere. | |||
2007-07-12 | Fix freenig of names in Kerberos when using MIT - need to use the | Magnus Hagander | |
free function provided in the Kerberos library. This fixes a very hard to track down heap corruption on windows when using debug runtimes. | |||
2007-04-19 | Stamp releases 8.2.4, 8.1.9, 8.0.13, 7.4.17, 7.3.19. | Bruce Momjian | |
2007-04-18 | Translation updates | Peter Eisentraut | |
2007-03-08 | Remove unsafe calling of WSAStartup and WSACleanup from DllMain. Move the | Magnus Hagander | |
inline cleanup call around so it will be called in the right order, and be called on errors. Per report from Tokuharu Yuzawa. | |||
2007-02-07 | Stamp releases 8.2.3, 8.1.8, 8.0.12. No release notes yet. | Bruce Momjian | |
2007-02-02 | Stamp release 8.2.2.REL8_2_2 | Tom Lane | |
Security: CVE-2007-0555, CVE-2007-0556 | |||
2007-01-31 | Translation updates | Peter Eisentraut | |
2007-01-11 | Allow Borland CC to compile libpq and psql. | Bruce Momjian | |
Backpatch to 8.2.X. L Bayuk | |||
2007-01-05 | Stamp release 8.2.1. Update FAQs. | Bruce Momjian | |
2006-12-28 | Revert exports.list change pending closer study. | Tom Lane | |
2006-12-27 | Use a more backward-compatible syntax for exports.list on Linux. | Tom Lane | |
Per Thorkil Olesen. | |||
2006-12-04 | Patch of Win32 Encoding problem for server messages using | Bruce Momjian | |
FormatMessage() (This should have been in 8.2.0, patched to 8.2.X and HEAD): I think this problem to be complex.... http://archives.postgresql.org/pgsql-hackers/2006-11/msg00042.php FormatMessage of windows cannot consider the encoding of the database. However, I should try the solution now. It is necessary to clear the problem. Multi character-code exists together in message and log. It doesn't consider the data base encoding that the user intended.... The user in multi-byte country can try this. http://inet.winpg.jp/~saito/pg_bug/MessageCheck.c That is, it is likely to become it in this manner.(Japanese) http://inet.winpg.jp/~saito/pg_bug/FormatMessage998.png Hiroshi Saito | |||
2006-12-02 | Translation updates | Peter Eisentraut | |
2006-11-24 | Translation updates | Peter Eisentraut | |
2006-11-21 | Get rid of retail definitions of HAVE_STRDUP and HAVE_VSNPRINTF in | Tom Lane | |
some of the Windows-only makefiles; the correct place to assert these things is pg_config.h.win32. Per bug #2677. | |||
2006-11-21 | If SSL negotiation fails and SSLMODE is 'prefer', then retry without SSL. | Tom Lane | |
Negotiation failure is only likely to happen if one side or the other is misconfigured, eg. bad client certificate. I'm not 100% convinced that a retry is really the best thing, hence not back-patching this fix for now. Per gripe from Sergio Cinos. | |||
2006-10-21 | Translations update | Peter Eisentraut | |
2006-10-10 | MSVC/BCC Win32 compiler fixes. | Bruce Momjian | |
Hiroshi Saito | |||
2006-10-06 | Message style improvements | Peter Eisentraut | |
2006-10-04 | pgindent run for 8.2. | Bruce Momjian | |
2006-10-01 | Make some marginal performance improvements in reportErrorPosition(), | Tom Lane | |
which turns out to be a dominant part of the runtime in scenarios involving lots of parse-time warnings (such as Stephen Frost's example of an INSERT with a lot of backslash-containing strings). There's not a whole lot we can do about the character-at-a-time scanning, but we can at least avoid traversing the query twice. | |||
2006-09-27 | Oops, forgot that libpq needs extra steps to make use of src/port/ files. | Tom Lane | |
2006-09-27 | Remove separate strdup.h header file; it's redundant with port.h. | Tom Lane | |
2006-09-22 | Fix bugs in plpgsql and ecpg caused by assuming that isspace() would only | Tom Lane | |
return true for exactly the characters treated as whitespace by their flex scanners. Per report from Victor Snezhko and subsequent investigation. Also fix a passel of unsafe usages of <ctype.h> functions, that is, ye olde char-vs-unsigned-char issue. I won't miss <ctype.h> when we are finally able to stop using it. | |||
2006-09-15 | Fix some uses of str[n]casecmp that should be pg_str[n]casecmp, | Tom Lane | |
per Magnus. | |||
2006-09-09 | Revise OpenLDAP configuration and linking to work on more platforms | Tom Lane | |
than before. Albe Laurenz (but editorialized heavily by me, so if it doesn't work it's my fault). | |||
2006-09-07 | Specify lo_write() to take a _const_ buffer, to match documentation. | Bruce Momjian | |
2006-09-04 | Add missing gettext calls for some SSL errors. | Peter Eisentraut | |
2006-08-18 | Add PQdescribePrepared, PQdescribePortal, and related functions to libpq | Tom Lane | |
to allow obtaining information about previously prepared statements and open cursors. Volkan Yazici | |||
2006-08-09 | Suppress MSVC warnings about weak functions by using | Bruce Momjian | |
_CRT_SECURE_NO_DEPRECATE. Hiroshi Saito | |||
2006-08-04 | Add some blank lines for formatting. | Bruce Momjian | |
2006-08-04 | #ifdef fix for MSVC builds of libpq. | Bruce Momjian | |
Hiroshi Saito |