[libdbix-class-perl] branch master updated (1d8ae4a -> aac9f88)

gregor herrmann gregoa at debian.org
Tue Jun 28 14:38:10 UTC 2016


This is an automated email from the git hooks/post-receive script.

gregoa pushed a change to branch master
in repository libdbix-class-perl.

      from  1d8ae4a   update changelog
      adds  2135734   Fix last remaining tests with -T under < 5.10
      adds  504d192   Make sure Win32-like DBICTest checks are not tripped by repeated disconnects
      adds  5e65042   The complete fix for intermittent t/750firebird.t failures (RT#110979)
      adds  58fc8e6   Temporary work around to play well with Sub::Quote
      adds  209e3f3   (travis) Port all travis changes since last release
      adds  cae96f7   Fix parsing DSN when the driver part includes DBI attributes
      adds  7150ea4   Proxy the 'unsafe' attribute to the internal ::Versioned storage
      adds  5da5cf2   Fix another ::FilterColumn bug sigh...
      adds  e8f23a7   Fix annoying warnings on innocent looking MSSQL code
      adds  294c6f2   Fix incorrect exception propagation in ::Replicated::execute_reliably
      adds  0f69bb8   Fix missing handling of on_(dis)connect* failures
      adds  2fb5f18   Fix spurious ROLLBACK statements when a TxnScopeGuard fails a deferred commit
      adds  c5d7250   Really fix SQLite savepoints unlike the shortsighted 398215b1
      adds  f21ae8f   Apply debian downstream spelling patch 481e21bf
      adds  e407b4a   Stop requiring explicit bindtype specification for non-scalar references
      adds  2bbdb85   Detect and very loudly warn about Return::Multilevel in exception_action()
      adds  0844bb3   Fix *stupid* silencing of exceptions introduced in 4e9fc3f3
      adds  576ea48   Fix ordering by 1:M prefetched boolean columns in Pg
      adds  7ae29d7   Avoid infinite loop if save point does not exist
      adds  ce738b8   Fix ::Sybase::ASE incorrect attempt to retrieve an autoinc on blob inserts
      adds  9d69f6d   Throw away taint test (it is kept in mainline 2ff029823 as xt/)
      adds  e9f8bc4   Slight POD corrections
      adds  0f2b916   Fix incorrect port of test skippage in 5e65042b
      adds  645e7af   Port t/00describe_environment as seen in master
      adds  2b2c98d   Run xt/ tests on non-plain installs
      adds  a2da3dc   Ensure describe_environment does not break its output in half
      adds  6274881   Really work around RT#108390 (630e2ea8a)
      adds  9407bf0   Couple more skips/clarifications (not applicable to master)
      adds  ceb5f41   Release v0.082830
      adds  b58ec61   Revert incorrectly backported fix for RT#102166 ( e8f23a77 )
      adds  72119d6   Release v0.082840
      adds  ef6ebe1   Imported Upstream version 0.082840
       new  6e33561   Merge tag 'upstream/0.082840'
       new  63ed411   Update debian/changelog
       new  364a06d   Update list of upstream copyright holders.
       new  ba7ee99   Drop spelling.patch, merged upstream.
       new  d6884fb   Remove version constraints from (build) dependencies
       new  ccbf03b   Declare compliance with Debian Policy 3.9.8.
       new  f04f8ac   autopkgtest: run more smoke tests
       new  aac9f88   releasing package libdbix-class-perl version 0.082840-1

The 8 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 AUTHORS                                   |   4 +
 Changes                                   |  38 ++
 MANIFEST                                  |   4 +-
 META.yml                                  |   6 +-
 Makefile.PL                               |  17 +-
 README                                    |  12 +-
 debian/changelog                          |  11 +-
 debian/control                            |  28 +-
 debian/copyright                          |   4 +
 debian/patches/series                     |   1 -
 debian/patches/spelling.patch             |  62 ---
 debian/tests/pkg-perl/smoke-skip          |   2 +
 debian/tests/pkg-perl/smoke-tests         |   2 +
 examples/Schema/db/example.db             | Bin 10240 -> 10240 bytes
 lib/DBIx/Class.pm                         |   8 +-
 lib/DBIx/Class.pod                        |  16 +-
 lib/DBIx/Class/FilterColumn.pm            |  28 +-
 lib/DBIx/Class/FilterColumn.pod           |   2 +-
 lib/DBIx/Class/Manual/Cookbook.pod        |   2 +-
 lib/DBIx/Class/Manual/Troubleshooting.pod |   2 +-
 lib/DBIx/Class/Optional/Dependencies.pod  |   2 +-
 lib/DBIx/Class/ResultSet.pm               |   2 +-
 lib/DBIx/Class/SQLMaker/LimitDialects.pm  |   2 +-
 lib/DBIx/Class/Schema.pm                  |  65 ++-
 lib/DBIx/Class/Schema/Versioned.pm        |  13 +-
 lib/DBIx/Class/Storage.pm                 |  11 +-
 lib/DBIx/Class/Storage/DBI.pm             | 118 +++--
 lib/DBIx/Class/Storage/DBI/Pg.pm          |  16 +
 lib/DBIx/Class/Storage/DBI/Replicated.pm  |  12 +-
 lib/DBIx/Class/Storage/DBI/SQLite.pm      |  27 +-
 lib/DBIx/Class/Storage/DBI/Sybase/ASE.pm  |   5 +
 lib/DBIx/Class/Storage/DBIHacks.pm        |  15 +-
 lib/DBIx/Class/Storage/TxnScopeGuard.pm   |   7 +-
 lib/DBIx/Class/_Util.pm                   |  30 +-
 t/00describe_environment.t                | 762 +++++++++++++++++++++---------
 t/35exception_inaction.t                  | 102 ++++
 t/54taint.t                               | 120 -----
 t/55namespaces_cleaned.t                  |  26 +-
 t/72pg.t                                  |  26 +-
 t/746sybase.t                             |   7 +
 t/750firebird.t                           |  15 +-
 t/752sqlite.t                             |   5 +
 t/94versioning.t                          |  34 ++
 t/lib/DBICTest.pm                         |   1 +
 t/lib/DBICTest/BaseSchema.pm              |   2 +-
 t/lib/DBICTest/Util.pm                    |  16 +-
 t/lib/DBICTest/Util/LeakTracer.pm         |  19 +-
 t/lib/DBICTest/WithTaint.pm               |   4 -
 t/resultset/inflate_result_api.t          |  17 +
 t/row/filter_column.t                     |  75 +++
 t/sqlmaker/bind_transport.t               |  45 +-
 t/sqlmaker/pg.t                           |  77 +++
 t/storage/base.t                          |  30 +-
 t/storage/dbi_env.t                       |   4 +
 t/storage/debug.t                         |   6 +-
 t/storage/error.t                         |  57 +++
 t/storage/quote_names.t                   |   2 +-
 t/storage/replicated.t                    |  18 +-
 t/storage/savepoints.t                    |  19 +-
 xt/podcoverage.t                          |   7 +
 60 files changed, 1454 insertions(+), 616 deletions(-)
 delete mode 100644 debian/patches/series
 delete mode 100644 debian/patches/spelling.patch
 create mode 100644 debian/tests/pkg-perl/smoke-skip
 create mode 100644 debian/tests/pkg-perl/smoke-tests
 create mode 100644 t/35exception_inaction.t
 delete mode 100644 t/54taint.t
 delete mode 100644 t/lib/DBICTest/WithTaint.pm
 create mode 100644 t/sqlmaker/pg.t

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libdbix-class-perl.git



More information about the Pkg-perl-cvs-commits mailing list