Next | Query returned 88 messages, browsing 31 to 40 | Previous

History of commit frequency

CVS Commit History:


   2014-07-28 01:37:21 by Wen Heping | Files touched by this commit (2)
Log message:
Update to 3.3.0

Upstream changes:
Version 3.3.0  Released May 31, 2014 (git commit \ 
055f788cf96b380b9fe0e80b6cedb88f8d1799b8)

  - Major cleanup of UTF-8 support:
      Fix quoting of UTF-8 values
      Add support for UTF-8 statement strings
      Fix UTF-8 support in placeholders and return values
    [Dagfinn Ilmari Manns氓ker] (CPAN bug #95214 and #91655)
      Test that the Pg server agrees with us about the lengths of input strings.
      Refactor Unicode test to use anon hashes to describe the tests to run.
      Test pg_enable_utf8 of -1, in addition to 0 and 1.
      Extend the Unicode round-trip tests to verify ASCII, BMP and non-BMP code \ 
points.
      Test that characters created in the server reach the client correctly.
    [Nicholas Clark]

  - Rewrite foreign_key_info to be just one query
    [Dagfinn Ilmari Manns氓ker]

  - Remove ODBC support from foreign_key_info
    [Dagfinn Ilmari Manns氓ker]

  - Remove use of dTHX in functions in quote.c and types.c
    [Nicholas Clark]

Version 3.2.1  Released May 20, 2014 (git commit \ 
a56ef5c4715440d4fc2054df5477996b0e287467)

  - Stricter testing for array slices: disallow number-colon-number from being
    parsed as a placeholder.
    [Greg Sabino Mullane] (CPAN bug #95713)

  - Fix for small leak with AutoInactiveDestroy
    [David Dick] (CPAN bug #95505)

  - Adjust test regex to fix failing t/01_connect.t on some platforms
    [Greg Sabino Mullane]

  - Further tweaks to get PGINITDB working for test suite.
    [Nicholas Clark]

Version 3.2.0  Released May 15, 2014 (git commit \ 
897974c2865259bb9786d8b0989f8e42db0a0d79)

  - Add new attribute pg_placeholder_nocolons to turn off all parsing of
    colons into placeholders.
    [Graham Ollis] (CPAN bug #95173)

  - Fix incorrect skip count for HandleSetErr
    [Greg Sabino Mullane] (CPAN bug #94841)

  - Don't attempt to use the POSIX signalling stuff if the OS is Win
    [Greg Sabino Mullane] (CPAN bug ##94841)

  - Fix missing check for PGINITDB in the test suite.
    [Nicholas Clark]

Version 3.1.1  Released April 6, 2014 (git commit \ 
d337f93133e67267d54b65dc22a23f06e6883ad0)

  - Minor adjustments so tests pass in varying locales.

Version 3.1.0  Released April 4, 2014 (git commit \ 
26517a3531f93de79375a02da45a79789cd3caae)

  - Make sure UTF-8 enabled notifications are handled correctly
    [Greg Sabino Mullane]

  - Allow "WITH" and "VALUES" as valid words starting a DML \ 
statement
    [Greg Sabino Mullane] (CPAN bug #92724)
   2014-05-30 01:38:20 by Thomas Klausner | Files touched by this commit (3049)
Log message:
Bump for perl-5.20.0.
Do it for all packages that
* mention perl, or
* have a directory name starting with p5-*, or
* depend on a package starting with p5-
like last time, for 5.18, where this didn't lead to complaints.
Let me know if you have any this time.
   2014-02-06 14:11:32 by David Brownlee | Files touched by this commit (2)
Log message:
Updated databases/p5-DBD-postgresql to 3.0.0

Version 3.0.0

  - Major change in UTF-8 handling. If client_encoding is set to UTF-8,
    always mark returned Perl strings as utf8. See the pg_enable_utf8 docs
    for more information.
    [Greg Sabino Mullane, David E. Wheeler, David Christensen]

  - Bump DBI requirement to 1.614

  - Bump Perl requirement to 5.8.1

  - Add new handle attribute, switch_prepared, to control when we stop
    using PQexecParams and start using PQexecPrepared. The default is 2:
    in previous versions, the effective behavior was 1 (i.e. PQexecParams
    was never used).
    [Greg Sabino Mullane]

  - Better handling of items inside of arrays, particularly bytea arrays.
    [Greg Sabino Mullane] (CPAN bug #91454)

  - Map SQL_CHAR back to bpchar, not char
    [Greg Sabino Mullane, reported by H.Merijn Brand]

  - Do not force oids to Perl ints
    [Greg Sabino Mullane] (CPAN bug #85836)

  - Return better sqlstate codes on fatal errors
    [Rainer Weikusat]

  - Better prepared statement names to avoid bug
    [Spencer Sun] (CPAN bug #88827)

  - Add pg_expression field to statistics_info output to show
    functional index information
    [Greg Sabino Mullane] (CPAN bug #76608)

  - Adjust lo_import_with_oid check for 8.3
    (CPAN bug #83145)

  - Better handling of libpq errors to return SQLSTATE 08000
    [Stephen Keller]

  - Make sure CREATE TABLE .. AS SELECT returns rows in non do() cases

  - Add support for AutoInactiveDestroy
    [David Dick] (CPAN bug #68893)

  - Fix ORDINAL_POSITION in foreign_key_info
    [Dagfinn Ilmari Mannsåker] (CPAN bug #88794)

  - Fix foreign_key_info with unspecified schema
    [Dagfinn Ilmari Mannsåker] (CPAN bug #88787)

  - Allow foreign_key_info to work when pg_expand_array is off
    [Greg Sabino Mullane and Tim Bunce] (CPAN bug #51780)

  - Remove math.h linking, as we no longer need it
    (CPAN bug #79256)

  - Spelling fixes
    (CPAN bug #78168)

  - Better wording for the AutoCommit docs
    (CPAN bug #82536)

  - Change NOTICE to DEBUG1 in t/02attribs.t test for handle attribute \ 
"PrintWarn":
    implicit index creation is now quieter in Postgres.
    [Erik Rijkers]

  - Use correct SQL_BIGINT constant for int8
    [Dagfinn Ilmari Mannsåker]

  - Fix assertion when binding array columns on debug perls >= 5.16
    [Dagfinn Ilmari Mannsåker]

  - Adjust test to use 3 digit exponential values
    [Greg Sabino Mullane] (CPAN bug #59449)

  - Avoid reinstalling driver methods in threads
    [Dagfinn Ilmari Mannsåker] (CPAN bug #83638)

  - Make sure App::Info does not prompt for pg_config location
    if AUTOMATED_TESTING or PERL_MM_USE_DEFAULT is set
    [David E. Wheeler] (CPAN bug #90799)

  - Fix typo in docs for pg_placeholder_dollaronly
    [Bryan Carpenter] (CPAN bug #91400)

  - Cleanup dangling largeobjects in tests
    [Fitz Elliott] (CPAN bug #92212)

  - Fix skip test counting in t/09arrays.t
    [Greg Sabino Mullane] (CPAN bug #79544)

  - Explicitly specify en_US for spell checking
    [Dagfinn Ilmari Mannsåker] (CPAN bug #91804)
   2013-05-31 14:42:58 by Thomas Klausner | Files touched by this commit (2880)
Log message:
Bump all packages for perl-5.18, that
a) refer 'perl' in their Makefile, or
b) have a directory name of p5-*, or
c) have any dependency on any p5-* package

Like last time, where this caused no complaints.
   2012-10-22 00:05:40 by Thomas Klausner | Files touched by this commit (2)
Log message:
Update to 2.19.3:

Version 2.19.3  Released August 21, 2012

  - Fix bug in pg_st_split_statement causing segfaults
    (CPAN bug #79035)
   2012-10-03 23:59:10 by Thomas Klausner | Files touched by this commit (2798)
Log message:
Bump all packages that use perl, or depend on a p5-* package, or
are called p5-*.

I hope that's all of them.
   2012-10-02 23:25:56 by Aleksej Saushev | Files touched by this commit (323)
Log message:
Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.
   2012-08-05 12:02:14 by OBATA Akio | Files touched by this commit (44)
Log message:
Bump PKGREVISION for change of PostgreSQL default version to 9.1.
   2012-05-18 11:06:58 by Havard Eidnes | Files touched by this commit (2)
Log message:
Update to version 2.19.2.  Changes:

Version 2.19.2  Released March 12, 2012
  - Fix errors when multiple same-named placeholders are used. [GSM]
    (CPAN bug #75713)

Version 2.19.1  Released March 10, 2012 (git commit \ 
db6f6da00467c7ea28d32c4df97e93ccc4d38f2b)
  - Fix crash when passing in an array with undefined elements. [GSM]

Version 2.19.0  Released March 9, 2012 (git commit \ 
05ab092905ce6891ed83e173412ee70d6cdb8cb5)
  - Use proper formatting for warn() and croak() (CPAN bug #75642)
    [Niko Tyni]
  - Fix localized regex in test (CPAN bug #70759)
  - Fix for named placeholders (CPAN bug #70953) [Jan Pazdziora]
  - Various fixes to the array-marshalling code [Noah Misch, Mark
    Stosberg, and David Christensen] (CPAN bug #58552)
  - Allow hi-bit chars in dollar-quoted identifiers
    [David Christensen] (CPAN bug #73832)
  - Have do() return count for things such as CREATE TABLE .. AS SELECT
    Will only work on 9.0 or better. (CPAN bug #71073) [Pavel Stehule]
  - Better error message when trying to do things post-disconnect [GSM]
  - Always respect pg_server_prepare=0 by using PQexec not PQexecParams. [GSM]
  - Fix error in async docs (CPAN bug #72812)
  - Switch from subversion to git.
    git clone git://bucardo.org/dbdpg.git [GSM]
   2011-08-06 22:31:02 by Adam Ciarcinski | Files touched by this commit (2)
Log message:
Changes 2.18.1:
* Fix LANG testing issue
* Fix bug when async commands issued immediately after a COPY

Next | Query returned 88 messages, browsing 31 to 40 | Previous