diff options
author | obache <obache@pkgsrc.org> | 2011-05-05 11:36:40 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2011-05-05 11:36:40 +0000 |
commit | b51a0b50d1cf46cca0085bcd864e76b868e13242 (patch) | |
tree | dab770163e7c2d95bbf7543f3dc176f410fe369a /databases/p5-Jifty-DBI | |
parent | 3b8c84aeafde27a13807c115c962c41f56ff016c (diff) | |
download | pkgsrc-b51a0b50d1cf46cca0085bcd864e76b868e13242.tar.gz |
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
Diffstat (limited to 'databases/p5-Jifty-DBI')
-rw-r--r-- | databases/p5-Jifty-DBI/Makefile | 11 | ||||
-rw-r--r-- | databases/p5-Jifty-DBI/distinfo | 8 |
2 files changed, 9 insertions, 10 deletions
diff --git a/databases/p5-Jifty-DBI/Makefile b/databases/p5-Jifty-DBI/Makefile index bd811223783..8351658f3a5 100644 --- a/databases/p5-Jifty-DBI/Makefile +++ b/databases/p5-Jifty-DBI/Makefile @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.6 2010/08/21 16:33:02 seb Exp $ +# $NetBSD: Makefile,v 1.7 2011/05/05 11:36:40 obache Exp $ -DISTNAME= Jifty-DBI-0.59 +DISTNAME= Jifty-DBI-0.68 PKGNAME= p5-${DISTNAME} -PKGREVISION= 1 CATEGORIES= databases perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Jifty/} @@ -23,7 +22,7 @@ DEPENDS+= p5-Class-Data-Inheritable-[0-9]*:../../devel/p5-Class-Data-Inheritable DEPENDS+= p5-Class-ReturnValue>=0.40:../../devel/p5-Class-ReturnValue DEPENDS+= p5-Class-Trigger>=0.12:../../devel/p5-Class-Trigger DEPENDS+= p5-Clone-[0-9]*:../../devel/p5-Clone -DEPENDS+= p5-DBD-SQLite-[0-9]*:../../databases/p5-DBD-SQLite +BUILD_DEPENDS+= p5-DBD-SQLite>=1.14:../../databases/p5-DBD-SQLite DEPENDS+= p5-DBI-[0-9]*:../../databases/p5-DBI DEPENDS+= p5-DBIx-DBSchema>=0.34:../../databases/p5-DBIx-DBSchema DEPENDS+= p5-Data-Page-[0-9]*:../../devel/p5-Data-Page @@ -36,8 +35,8 @@ DEPENDS+= p5-Hash-Merge-[0-9]*:../../devel/p5-Hash-Merge DEPENDS+= p5-Lingua-EN-Inflect-[0-9]*:../../textproc/p5-Lingua-EN-Inflect DEPENDS+= p5-Object-Declare>=0.22:../../devel/p5-Object-Declare DEPENDS+= p5-Scalar-Defer>=0.10:../../devel/p5-Scalar-Defer -DEPENDS+= p5-Test-Warn>=0.10:../../devel/p5-Test-Warn -DEPENDS+= p5-Time-Duration-Parse>=0.05:../../time/p5-Time-Duration-Parse +BUILD_DEPENDS+= p5-Test-Warn>=0.10:../../devel/p5-Test-Warn +DEPENDS+= p5-Time-Duration-Parse>=0.06:../../time/p5-Time-Duration-Parse DEPENDS+= p5-Time-Duration-[0-9]*:../../time/p5-Time-Duration DEPENDS+= p5-UNIVERSAL-require>=0.11:../../devel/p5-UNIVERSAL-require DEPENDS+= p5-URI-[0-9]*:../../www/p5-URI diff --git a/databases/p5-Jifty-DBI/distinfo b/databases/p5-Jifty-DBI/distinfo index 3c07bbc1d2c..27131c8ad14 100644 --- a/databases/p5-Jifty-DBI/distinfo +++ b/databases/p5-Jifty-DBI/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.4 2009/11/22 21:55:44 seb Exp $ +$NetBSD: distinfo,v 1.5 2011/05/05 11:36:40 obache Exp $ -SHA1 (Jifty-DBI-0.59.tar.gz) = 779c98c408520ae60b9587b4a2d5ccec7ea93c74 -RMD160 (Jifty-DBI-0.59.tar.gz) = ff359b198fc8c5db2358dad42e427caaca3285c0 -Size (Jifty-DBI-0.59.tar.gz) = 151892 bytes +SHA1 (Jifty-DBI-0.68.tar.gz) = 4f2d2c10f225a8e10afc04fb2745e99bd3dd5d4b +RMD160 (Jifty-DBI-0.68.tar.gz) = 792b78332b0c9900e2c87af202a1a45a994db521 +Size (Jifty-DBI-0.68.tar.gz) = 163841 bytes |