pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/databases/ruby-activerecord



Module Name:    pkgsrc
Committed By:   minskim
Date:           Mon Sep 15 05:38:29 UTC 2008

Modified Files:
        pkgsrc/databases/ruby-activerecord: Makefile PLIST distinfo

Log Message:
Update ruby-activerecord to 2.1.1.

Changes:

* Set config.active_record.timestamped_migrations = false to have
  migrations with numeric prefix instead of UTC
  timestamp. #446.

* Fixed that create database statements would always include "DEFAULT
  NULL" [#334]

* change_column_default preserves the not-null constraint.  #617

* Add :tokenizer option to validates_length_of to specify how to split
  up the attribute string. #507. Example :

  # Ensure essay contains at least 100 words.
  validates_length_of :essay, :minimum => 100, :too_short => "Your
  essay must be at least %d words."), :tokenizer => lambda {|str|
  str.scan(/\w+/) }

* Always treat integer :limit as byte length.  #420

* Partial updates don't update lock_version if nothing changed.  #426

* Fix column collision with named_scope and :joins.  #46

* db:migrate:down and :up update schema_migrations.  #369

* PostgreSQL: support :conditions => [':foo::integer', { :foo => 1 }]
  without treating the ::integer typecast as a bind variable.

* MySQL: rename_column preserves column defaults.  #466

* Add :from option to calculations.  #397

* Add :validate option to associations to enable/disable the automatic
  validation of associated models. Resolves #301.

* PostgreSQL: use 'INSERT ... RETURNING id' for 8.2 and later.

* Added SQL escaping for :limit and :offset in MySQL


To generate a diff of this commit:
cvs rdiff -r1.13 -r1.14 pkgsrc/databases/ruby-activerecord/Makefile \
    pkgsrc/databases/ruby-activerecord/distinfo
cvs rdiff -r1.12 -r1.13 pkgsrc/databases/ruby-activerecord/PLIST

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



Home | Main Index | Thread Index | Old Index