--- - branch: pkgsrc-2012Q2 date: Mon Aug 20 08:22:29 UTC 2012 files: - new: 1.4.2.2 old: 1.4.2.1 path: pkgsrc/databases/ruby-activerecord32/distinfo pathrev: pkgsrc/databases/ruby-activerecord32/distinfo@1.4.2.2 type: modified - new: 1.4.2.2 old: 1.4.2.1 path: pkgsrc/devel/ruby-activemodel32/distinfo pathrev: pkgsrc/devel/ruby-activemodel32/distinfo@1.4.2.2 type: modified - new: 1.4.2.2 old: 1.4.2.1 path: pkgsrc/devel/ruby-activesupport32/distinfo pathrev: pkgsrc/devel/ruby-activesupport32/distinfo@1.4.2.2 type: modified - new: 1.4.2.2 old: 1.4.2.1 path: pkgsrc/devel/ruby-railties32/distinfo pathrev: pkgsrc/devel/ruby-railties32/distinfo@1.4.2.2 type: modified - new: 1.24.2.6 old: 1.24.2.5 path: pkgsrc/lang/ruby/rails.mk pathrev: pkgsrc/lang/ruby/rails.mk@1.24.2.6 type: modified - new: 1.4.2.2 old: 1.4.2.1 path: pkgsrc/mail/ruby-actionmailer32/distinfo pathrev: pkgsrc/mail/ruby-actionmailer32/distinfo@1.4.2.2 type: modified - new: 1.4.2.2 old: 1.4.2.1 path: pkgsrc/www/ruby-actionpack32/distinfo pathrev: pkgsrc/www/ruby-actionpack32/distinfo@1.4.2.2 type: modified - new: 1.4.2.2 old: 1.4.2.1 path: pkgsrc/www/ruby-activeresource32/distinfo pathrev: pkgsrc/www/ruby-activeresource32/distinfo@1.4.2.2 type: modified - new: 1.4.2.2 old: 1.4.2.1 path: pkgsrc/www/ruby-rails32/distinfo pathrev: pkgsrc/www/ruby-rails32/distinfo@1.4.2.2 type: modified id: 20120820T082229Z.6c66e2e4b7f7d48b73b524857e2ade7af33a65ae log: "Pullup ticket #3904 - requested by taca\nRuby on Rails 3.2.8 security update\n\nRevisions pulled up:\n- databases/ruby-activerecord32/distinfo 1.6\n- devel/ruby-activemodel32/distinfo 1.6\n- devel/ruby-activesupport32/distinfo \ 1.6\n- devel/ruby-railties32/distinfo 1.6\n- lang/ruby/rails.mk 1.30\n- mail/ruby-actionmailer32/distinfo \ 1.6\n- www/ruby-actionpack32/distinfo 1.6\n- www/ruby-activeresource32/distinfo 1.6\n- www/ruby-rails32/distinfo \ 1.6\n\n---\n Module Name:\tpkgsrc\n Committed By:\ttaca\n Date:\t\tSun Aug 12 12:37:06 UTC 2012\n\n Modified Files:\n \tpkgsrc/lang/ruby: rails.mk\n\n Log Message:\n Start update of Ruby on Rails 3.2.8.\n\n---\n \ Module Name:\tpkgsrc\n Committed By:\ttaca\n Date:\t\tSun Aug 12 12:38:09 UTC 2012\n\n Modified Files:\n \tpkgsrc/devel/ruby-activesupport32: distinfo\n\n \ Log Message:\n Update ruby-activesupport32 to 3.2.8.\n\n ## Rails 3.2.8 (Aug 9, 2012) ##\n\n * Fix ActiveSupport integration with Mocha > 0.12.1. *Mike Gunderloy*\n\n * Reverted the deprecation of ActiveSupport::JSON::Variable.\n \ *Rafael Mendonè»\x8B Franè»\x8B*\n\n---\n Module Name:\tpkgsrc\n Committed By:\ttaca\n Date:\t\tSun Aug 12 12:38:41 UTC 2012\n\n Modified Files:\n \tpkgsrc/devel/ruby-activemodel32: distinfo\n\n Log Message:\n Update ruby-activemodel32 to 3.2.8.\n\n ## Rails 3.2.8 (Aug 9, 2012) ##\n\n * No changes.\n\n---\n Module Name:\tpkgsrc\n \ Committed By:\ttaca\n Date:\t\tSun Aug 12 12:40:00 UTC 2012\n\n Modified Files:\n \tpkgsrc/www/ruby-actionpack32: distinfo\n\n Log Message:\n Update ruby-actionpack32 to 3.2.8.\n\n ## Rails 3.2.8 (Aug 9, 2012) ##\n\n * There is an XSS vulnerability in the strip_tags helper in Ruby on Rails, the\n helper doesn't correctly handle malformed html. As a result an attacker can\n execute arbitrary javascript through the use of specially crafted malformed\n html.\n\n \ *Marek from Nethemba (www.nethemba.com) & Santiago Pastorino*\n\n * When a \"prompt\" value is supplied to the `select_tag` helper, the \"prompt\"\n value is not escaped.\n If untrusted data is not escaped, and is supplied as the prompt value, there\n is a potential for XSS attacks.\n Vulnerable code will look something like this:\n\n select_tag(\"name\", options, :prompt => UNTRUSTED_INPUT)\n\n *Santiago Pastorino*\n\n---\n Module Name:\tpkgsrc\n \ Committed By:\ttaca\n Date:\t\tSun Aug 12 12:41:02 UTC 2012\n\n Modified Files:\n \tpkgsrc/databases/ruby-activerecord32: distinfo\n\n Log Message:\n \ Update ruby-activerecord32 to 3.2.8.\n\n ## Rails 3.2.8 (Aug 9, 2012) ##\n\n \ * Do not consider the numeric attribute as changed if the old value is zero\n \ and the new value is not a string.\n Fixes #7237.\n\n *Rafael Mendonè»\x8B Franè»\x8B*\n\n * Removes the deprecation of `update_attribute`. *fxn*\n\n * Reverted the deprecation of `composed_of`. *Rafael Mendonè»\x8B Franè»\x8B*\n\n \ * Reverted the deprecation of `*_sql` association options. They will be\n deprecated in 4.0 instead. *Jon Leighton*\n\n * Do not eager load AR session store. ActiveRecord::SessionStore depends on\n the abstract store in Action Pack. Eager loading this class would break\n client code that eager loads Active Record standalone.\n Fixes #7160\n\n *Xavier Noria*\n\n * Do not set RAILS_ENV to \"development\" when using `db:test:prepare` and\n related rake tasks.\n This was causing the truncation of the development database data when using\n RSpec.\n\n Fixes #7175.\n\n *Rafael Mendonè»\x8B Franè»\x8B*\n\n---\n Module Name:\tpkgsrc\n \ Committed By:\ttaca\n Date:\t\tSun Aug 12 12:41:37 UTC 2012\n\n Modified Files:\n \tpkgsrc/www/ruby-activeresource32: distinfo\n\n Log Message:\n Update ruby-activeresource32 to 3.2.8.\n\n ## Rails 3.2.8 (Aug 9, 2012) ##\n\n * \ No changes.\n\n---\n Module Name:\tpkgsrc\n Committed By:\ttaca\n Date:\t\tSun Aug 12 12:42:14 UTC 2012\n\n Modified Files:\n \tpkgsrc/mail/ruby-actionmailer32: distinfo\n\n Log Message:\n Update ruby-actionmailer32 to 3.2.8.\n\n ## Rails 3.2.8 (Aug 9, 2012) ##\n\n * No changes.\n\n---\n Module Name:\tpkgsrc\n \ Committed By:\ttaca\n Date:\t\tSun Aug 12 12:43:08 UTC 2012\n\n Modified Files:\n \tpkgsrc/devel/ruby-railties32: distinfo\n\n Log Message:\n Update ruby-railties32 to 3.2.8.\n\n ## Rails 3.2.8 (Aug 9, 2012) ##\n\n * ERB scaffold generator use the `:data => { :confirm => \"Text\" }` syntax\n instead of `:confirm`.\n\n *Rafael Mendonè»\x8B Franè»\x8B*\n\n---\n Module Name:\tpkgsrc\n \ Committed By:\ttaca\n Date:\t\tSun Aug 12 12:44:30 UTC 2012\n\n Modified Files:\n \tpkgsrc/www/ruby-rails32: distinfo\n\n Log Message:\n Update ruby-rails32 to 3.2.8.\n\n This is a meta-like package and no changes.\n" module: pkgsrc subject: 'CVS commit: [pkgsrc-2012Q2] pkgsrc' unixtime: '1345450949' user: sbd