Received: from mail.netbsd.org (mail.netbsd.org [149.20.53.66]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 99A14A5D7F for ; Mon, 28 Oct 2013 23:38:04 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 0AD3814A1AA; Mon, 28 Oct 2013 23:38:04 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 90EDC14A217 for ; Mon, 28 Oct 2013 23:37:37 +0000 (UTC) X-Virus-Scanned: amavisd-new at NetBSD.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.NetBSD.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id NVQVbkjiAelS for ; Mon, 28 Oct 2013 23:37:34 +0000 (UTC) Received: from cvs.netbsd.org (cvs.NetBSD.org [IPv6:2001:4f8:3:7:2e0:81ff:fe30:95bd]) by mail.netbsd.org (Postfix) with ESMTP id CCBB214A227 for ; Mon, 28 Oct 2013 23:37:33 +0000 (UTC) Received: by cvs.netbsd.org (Postfix, from userid 500) id 5D76E96; Mon, 28 Oct 2013 23:37:33 +0000 (UTC) Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" MIME-Version: 1.0 Date: Mon, 28 Oct 2013 23:37:33 +0000 From: "Matthias Scheler" Subject: CVS commit: [pkgsrc-2013Q3] pkgsrc To: pkgsrc-changes@NetBSD.org Reply-To: tron@netbsd.org X-Mailer: log_accum Message-Id: <20131028233733.5D76E96@cvs.netbsd.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk Module Name: pkgsrc Committed By: tron Date: Mon Oct 28 23:37:33 UTC 2013 Modified Files: pkgsrc/databases/ruby-activerecord32 [pkgsrc-2013Q3]: distinfo pkgsrc/devel/ruby-activemodel32 [pkgsrc-2013Q3]: distinfo pkgsrc/devel/ruby-activesupport32 [pkgsrc-2013Q3]: distinfo pkgsrc/devel/ruby-railties32 [pkgsrc-2013Q3]: distinfo pkgsrc/lang/ruby [pkgsrc-2013Q3]: rails.mk pkgsrc/mail/ruby-actionmailer32 [pkgsrc-2013Q3]: distinfo pkgsrc/www/ruby-actionpack32 [pkgsrc-2013Q3]: distinfo pkgsrc/www/ruby-activeresource32 [pkgsrc-2013Q3]: distinfo pkgsrc/www/ruby-rails32 [pkgsrc-2013Q3]: distinfo Log Message: Pullup ticket #4248 - requested by taca databases/ruby-activerecord32: security update devel/ruby-activemodel32: security update devel/ruby-activesupport32: security update devel/ruby-railties32: security update mail/ruby-actionmailer32: security update www/ruby-actionpack32: security update www/ruby-activeresource32: security update www/ruby-rails32: security update Revisions pulled up: - databases/ruby-activerecord32/distinfo 1.13 - devel/ruby-activemodel32/distinfo 1.13 - devel/ruby-activesupport32/distinfo 1.13 - devel/ruby-railties32/distinfo 1.13 - lang/ruby/rails.mk 1.45 - mail/ruby-actionmailer32/distinfo 1.13 - www/ruby-actionpack32/distinfo 1.13 - www/ruby-activeresource32/distinfo 1.13 - www/ruby-rails32/distinfo 1.13 --- Module Name: pkgsrc Committed By: taca Date: Fri Oct 18 15:22:42 UTC 2013 Modified Files: pkgsrc/lang/ruby: rails.mk Log Message: Start update of Ruby on Rails 3.2.15. --- Module Name: pkgsrc Committed By: taca Date: Fri Oct 18 15:24:38 UTC 2013 Modified Files: pkgsrc/devel/ruby-activesupport32: distinfo Log Message: Update ruby-activesupport32 to 3.2.15. ## Rails 3.2.15 (Oct 16, 2013) ## * Fix ActiveSupport::Cache::FileStore#cleanup to no longer rely on missing each_key method. *Murray Steele* * Add respond_to_missing? for TaggedLogging which is best practice when overriding method_missing. This permits wrapping TaggedLogging by another log abstraction such as em-logger. *Wolfram Arnold* --- Module Name: pkgsrc Committed By: taca Date: Fri Oct 18 15:26:02 UTC 2013 Modified Files: pkgsrc/devel/ruby-activemodel32: distinfo Log Message: Update ruby-activemodel32 to ## Rails 3.2.15 (Oct 16, 2013) ## * No changes. --- Module Name: pkgsrc Committed By: taca Date: Fri Oct 18 15:27:20 UTC 2013 Modified Files: pkgsrc/www/ruby-actionpack32: distinfo Log Message: Update ruby-actionpack32 to 3.2.15. ## Rails 3.2.15 (Oct 16, 2013) ## * Fix `ActionDispatch::RemoteIp::GetIp#calculate_ip` to only check for spoofing attacks if both `HTTP_CLIENT_IP` and `HTTP_X_FORWARDED_FOR` are set. Fixes #12410 Backports #10844 *Tamir Duberstein* * Fix the assert_recognizes test method so that it works when there are constraints on the querystring. Issue/Pull Request #9368 Backport #5219 *Brian Hahn* * Fix to render partial by context(#11605). *Kassio Borges* * Fix `ActionDispatch::Assertions::ResponseAssertions#assert_redirected_to` does not show user-supplied message. Issue: when `assert_redirected_to` fails due to the response redirect not matching the expected redirect the user-supplied message (second parameter) is not shown. This message is only shown if the response is not a redirect. *Alexey Chernenkov* --- Module Name: pkgsrc Committed By: taca Date: Fri Oct 18 15:30:05 UTC 2013 Modified Files: pkgsrc/databases/ruby-activerecord32: distinfo Log Message: Update ruby-activerecord32 to 3.2.15. ## Rails 3.2.15 (Oct 16, 2013) ## * When calling the method .find_or_initialize_by_* from a collection_proxy it should set the inverse_of relation even when the entry was found on the db. *arthurnn* * Callbacks on has_many should access the in memory parent if a inverse_of is set. *arthurnn* * Fix `FinderMethods#last` unscoped primary key. Fixes #11917. *Eugene Kalenkovich* * Load fixtures from linked folders. *Kassio Borges* * When using optimistic locking, `update` was not passing the column to `quote_value` to allow the connection adapter to properly determine how to quote the value. This was affecting certain databases that use specific colmn types. Fixes: #6763 *Alfred Wong* --- Module Name: pkgsrc Committed By: taca Date: Fri Oct 18 15:31:00 UTC 2013 Modified Files: pkgsrc/www/ruby-activeresource32: distinfo Log Message: Update ruby-activeresource32 to 3.2.15. ## Rails 3.2.15 (Oct 16, 2013) ## * No changes. --- Module Name: pkgsrc Committed By: taca Date: Fri Oct 18 15:33:16 UTC 2013 Modified Files: pkgsrc/mail/ruby-actionmailer32: distinfo Log Message: Update ruby-actionmailer32 to 3.2.15. CHANGELOG.md says "No changes." but it fixes possible dos vulnerability. --- Module Name: pkgsrc Committed By: taca Date: Fri Oct 18 15:34:47 UTC 2013 Modified Files: pkgsrc/devel/ruby-railties32: distinfo Log Message: Update ruby-railties32 to 3.2.15. CHANGELOG.md says "No changes." but really it contains a few bug fixes. --- Module Name: pkgsrc Committed By: taca Date: Fri Oct 18 15:38:03 UTC 2013 Modified Files: pkgsrc/www/ruby-rails32: distinfo Log Message: Update ruby-rails32 to 3.2.15. This is a bug fix release and also contains one security fix. To generate a diff of this commit: cvs rdiff -u -r1.12 -r1.12.2.1 pkgsrc/databases/ruby-activerecord32/distinfo cvs rdiff -u -r1.12 -r1.12.2.1 pkgsrc/devel/ruby-activemodel32/distinfo cvs rdiff -u -r1.12 -r1.12.2.1 pkgsrc/devel/ruby-activesupport32/distinfo cvs rdiff -u -r1.12 -r1.12.2.1 pkgsrc/devel/ruby-railties32/distinfo cvs rdiff -u -r1.44 -r1.44.2.1 pkgsrc/lang/ruby/rails.mk cvs rdiff -u -r1.12 -r1.12.2.1 pkgsrc/mail/ruby-actionmailer32/distinfo cvs rdiff -u -r1.12 -r1.12.2.1 pkgsrc/www/ruby-actionpack32/distinfo cvs rdiff -u -r1.12 -r1.12.2.1 pkgsrc/www/ruby-activeresource32/distinfo cvs rdiff -u -r1.12 -r1.12.2.1 pkgsrc/www/ruby-rails32/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.