./databases/p5-Jifty-DBI, Perl 5 object-relational persistence framework

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ] [ Add to tracker ]


Branch: pkgsrc-2011Q1, Version: 0.68, Package name: p5-Jifty-DBI-0.68, Maintainer: pkgsrc-users

The Perl 5 module Jifty::DBI deals with databases, so that you
don't have to. This module provides an object-oriented mechanism
for retrieving and updating data in a DBI-accessible database.
This module is the direct descendent of DBIx::SearchBuilder. If
you're familiar with SearchBuilder, Jifty::DBI should be quite
familiar to you.


Required to run:
[www/p5-URI] [textproc/p5-YAML-Syck] [textproc/p5-Encode] [textproc/p5-Lingua-EN-Inflect] [databases/p5-DBI] [databases/p5-DBIx-DBSchema] [lang/perl5] [time/p5-DateTime] [time/p5-Time-Duration] [time/p5-Time-Duration-Parse] [time/p5-DateTime-Format-ISO8601] [time/p5-DateTime-Format-Strptime] [devel/p5-Hash-Merge] [devel/p5-Cache-Memcached] [devel/p5-Object-Declare] [devel/p5-Class-Trigger] [devel/p5-UNIVERSAL-require] [devel/p5-Class-ReturnValue] [devel/p5-Exporter-Lite] [devel/p5-Cache-Simple-TimedExpiry] [devel/p5-Data-Page] [devel/p5-Scalar-Defer] [devel/p5-Class-Data-Inheritable] [devel/p5-Clone] [devel/p5-Class-Accessor]

Required to build:
[databases/p5-DBD-SQLite] [devel/p5-Test-Warn]

Master sites: (Expand)

SHA1: 4f2d2c10f225a8e10afc04fb2745e99bd3dd5d4b
RMD160: 792b78332b0c9900e2c87af202a1a45a994db521
Filesize: 160.001 KB

Version history: (Expand)


CVS history: (Expand)


   2011-05-07 12:30:37 by Matthias Scheler | Files touched by this commit (2) | Package updated
Log message:
Pullup ticket #3422 - requested by obache
databases/p5-Jifty-DBI: security update

Revisions pulled up:
- databases/p5-Jifty-DBI/Makefile                               1.7
- databases/p5-Jifty-DBI/distinfo                               1.5

---
   Module Name:	pkgsrc
   Committed By:	obache
   Date:		Thu May  5 11:36:40 UTC 2011

   Modified Files:
   	pkgsrc/databases/p5-Jifty-DBI: Makefile distinfo

   Log message:
   Update p5-Jifty-DBI to 0.68.

   0.68 2011-04-14
   - Security:
        * Prevent SQL injection in column names, operators, order and group by
          (Alex Vandiver)
        * Fix distinct_query to catch injection and correctly rewrite to
          function => '' (Alex Vandiver)
        * Prevent SQL injection via IS

   - Fixes:
        * There is no need to check $args{column} around our LIKE adjustments
          (Alex Vandiver)
        * Slightly unify nigh-identical codepaths between Pg and Oracle
          (Alex Vandiver)

   0.67 2011-02-28
   - Features:
        * Make ->distinct_column_values use ->simple_query, thus going \ 
through our
          SQL logging infrastructure (Alex Vandiver)

   - Fixes:
        * Set raw_values in load_by_hash so the __raw_value method works when the
          record is loaded by a collection (Thomas Sibley)

   - Tests:
        * Author tests for no tabs (Shawn M Moore)

   0.66 2011-02-14
   - Features:
        * Provide a sane way to wrap a function around an aliased column in order_by
        * Pass old_value to triggers on column update

   - Fixes:
        * Respect the 'by' attribute for refers_to columns in create and set
        * Use the right FK when using a record object in load_by_cols or
          limit [rt.cpan.org #64779]
        * Don't encode fields when attempting to limit with IS
        * Fix since/till by refactoring columns to use an updated all_columns

   - Installation:
        * Only run these URI filter tests if we have URI [rt.cpan.org #65047]

   0.64 Wed Dec  8 15:21:17 EST 2010
   - Installation:
        * Minor distribution fixes

   0.63 Wed Dec  8 15:14:17 EST 2010
   - Features:
        * distinct_column_values method, docs and tests

   - Fixes:
        * Warn about load(arg => value)
        * Include column_name in the value passed to reader warning
        * It is a rare but possible case that 0 is a valid id
        * Ensure encode_base64 doesn't choke on utf8

   0.62 Thu May 20 13:58:53 EST 2010
   - Features:
        * Computed columns let you have the Jifty-DBI scaffolding but without
          touching the database
        * Column->is_boolean

   - Fixes:
        * Don't attempt to store undef values in memcached
        * Avoid undef warnings

   0.61 Mon Jan  4 13:04:20 EST 2010
   - Installation:
        * Minor distribution fixes

   0.60 Mon Jan  4 13:02:17 EST 2010
   - Features:
        * Allow passing of extra parameters to canonicalizers
        * Add an attribute which controls placeholder use for load_by_cols

   - Fixes:
        * Don't add LOWER() on <= or >= operators, only = and !=
        * Better case sensitivity tests
        * Expose quote_value() on Jifty::DBI::Handle
        * When generating COUT, don't add a DISTINCT unless needed
        * Fix t/12prefetch.t's assumptions on row ordering