summaryrefslogtreecommitdiff
path: root/devel
diff options
context:
space:
mode:
authorghen <ghen@pkgsrc.org>2007-12-10 17:08:10 +0000
committerghen <ghen@pkgsrc.org>2007-12-10 17:08:10 +0000
commita1da5db895ed93d18445fff093d957f341d849a4 (patch)
tree767877cb1c41782b57573eebbba48e46a5adbaa3 /devel
parentffe10e09b796c1806e28a04112974312e196c1a7 (diff)
downloadpkgsrc-a1da5db895ed93d18445fff093d957f341d849a4.tar.gz
Pullup ticket 2244 - requested by minskim
security update for ruby-actionpack - pkgsrc/databases/ruby-activerecord/Makefile 1.10 - pkgsrc/databases/ruby-activerecord/distinfo 1.10 - pkgsrc/devel/ruby-activesupport/Makefile 1.12 - pkgsrc/devel/ruby-activesupport/distinfo 1.10 - pkgsrc/mail/ruby-actionmailer/Makefile 1.9 - pkgsrc/mail/ruby-actionmailer/distinfo 1.10 - pkgsrc/www/rails/Makefile 1.6 - pkgsrc/www/rails/PLIST 1.3 - pkgsrc/www/rails/distinfo 1.5 - pkgsrc/www/rails/patches/patch-ab 1.4 - pkgsrc/www/ruby-actionpack/Makefile 1.9, 1.10 - pkgsrc/www/ruby-actionpack/PLIST 1.10 - pkgsrc/www/ruby-actionpack/distinfo 1.10, 1.11 - pkgsrc/www/ruby-actionwebservice/Makefile 1.8 - pkgsrc/www/ruby-actionwebservice/distinfo 1.9 Module Name: pkgsrc Committed By: minskim Date: Tue Oct 16 02:56:02 UTC 2007 Modified Files: pkgsrc/devel/ruby-activesupport: Makefile distinfo Log Message: Update ruby-activesupport to 1.4.4. Changes: * Backport: allow array and hash query parameters. Array route parameters are converted/to/a/path as before. * Demote Hash#to_xml to use XmlSimple#xml_in_string so it can't read files or stdin. * Document Object#blank?. * Update Dependencies to ignore constants inherited from ancestors. * Improved multibyte performance by relying less on exception raising --- Module Name: pkgsrc Committed By: minskim Date: Tue Oct 16 03:17:32 UTC 2007 Modified Files: pkgsrc/www/ruby-actionpack: Makefile PLIST distinfo Log Message: Update ruby-actionpack to 1.13.5. Changes: * Backport: allow array and hash query parameters. Array route parameters are converted/to/a/path as before. #6765, #7047, #7462 [bgipsy, Jeremy McAnally, Dan Kubb, brendan, Diego Algorta Casamayou] * Fix in place editor's setter action with non-string fields. #7418 [Andreas] * Only accept session ids from cookies, prevents session fixation attacks. * Change the resource seperator from ; to / change the generated routes to use the new-style named routes. e.g. new_group_user_path(@group) instead of group_new_user_path(@group). [pixeltrix] * Integration tests: introduce methods for other HTTP methods. #6353 [caboose] * Improve performance of action caching. Closes #8231 [skaes] * Fix errors with around_filters which do not yield, restore 1.1 behaviour with after filters. Closes #8891 [skaes] * Allow you to delete cookies with options. Closes #3685 * Deprecate pagination. Install the classic_pagination plugin for forward compatibility, or move to the superior will_paginate plugin. #8157 * Fix filtered parameter logging with nil parameter values. #8422 [choonkeat] * Integration tests: alias xhr to xml_http_request and add a request_method argument instead of always using POST. #7124 * Document caches_action. #5419 [Jarkko Laine] * observe_form always sends the serialized form. #5271 * Update UrlWriter to accept :anchor parameter. Closes #6771. [octopod] * Replace the current block/continuation filter chain handling by an implementation based on a simple loop. Closes #8226 [Stefan Kaes] * Return the string representation from an Xml Builder when rendering a partial. #5044 [tpope] * Cleaned up, corrected, and mildly expanded ActionPack documentation. Closes #7190 [jeremymcanally] * Small collection of ActionController documentation cleanups. Closes #7319 * Performance: patch cgi/session/pstore to require digest/md5 once rather than per #initialize. #7583 [Stefan Kaes] * Deprecation: verification with :redirect_to => :named_route shouldn't be deprecated. #7525 [Justin French] --- Module Name: pkgsrc Committed By: minskim Date: Tue Oct 16 03:05:39 UTC 2007 Modified Files: pkgsrc/databases/ruby-activerecord: Makefile distinfo Log Message: Update ruby-activerecord to 1.15.5. Changes: * Depend on Action Pack 1.4.4 * Fix #count on a has_many :through association so that it recognizes the :uniq option. Closes #8801 [lifofifo] * Don't clobber includes passed to has_many.count [danger] * Make sure has_many uses :include when counting [danger] * Save associated records only if the association is already loaded. #8713 * Changing the :default Date format doesn't break date quoting. #6312 * Allow nil serialized attributes with a set class constraint. #7293 * belongs_to assignment creates a new proxy rather than modifying its target in-place. #8412 [mmangino@elevatedrails.com] * Fix column type detection while loading fixtures. Closes #7987 [roderickvd] * Document deep eager includes. #6267 [Josh Susser, Dan Manges] * Oracle: extract column length for CHAR also. #7866 [ymendel] * Small additions and fixes for ActiveRecord documentation. Closes #7342 * SQLite: binary escaping works with $KCODE='u'. #7862 [tsuka] * Improved cloning performance by relying less on exception raising #8159 --- Module Name: pkgsrc Committed By: minskim Date: Tue Oct 16 03:26:23 UTC 2007 Modified Files: pkgsrc/mail/ruby-actionmailer: Makefile distinfo Log Message: Update ruby-actionmailer to 1.3.5. Changes: * Depend on Action Pack 1.13.5 --- Module Name: pkgsrc Committed By: minskim Date: Tue Oct 16 03:31:02 UTC 2007 Modified Files: pkgsrc/www/ruby-actionwebservice: Makefile distinfo Log Message: Update ruby-actionwebservice to 1.2.5. Changes: * Depend on Action Pack 1.13.5 * Depend on Active Record 1.15.5 --- Module Name: pkgsrc Committed By: minskim Date: Tue Oct 16 04:03:43 UTC 2007 Modified Files: pkgsrc/www/rails: Makefile PLIST distinfo pkgsrc/www/rails/patches: patch-ab Log Message: Update rails to 1.2.5. Changes: * Correct RAILS_GEM_VERSION regexp. Use =version gem requirement instead of ~>version so you don't get surprised by a beta gem in production. This change means upgrading to 1.2.5 will require a boot.rb upgrade. * Move custom inflections example so available before route generation. * Add a new rake task to aid debugging of named routes. * use Gem.find_name instead of search when freezing gems. Prevent false positives for other gems with rails in the name. Closes #8729 [wselman] * Fix syntax error in dispatcher than wrecked failsafe responses. * Add Active Resource to rails:freeze:edge and drop Action Web Service. * Give generate scaffold a more descriptive database message. Closes #7316 * Canonicalize RAILS_ROOT by using File.expand_path on Windows, which doesn't have to worry about symlinks, and Pathname#realpath elsewhere, which respects symlinks in relative paths but is incompatible with Windows. #6755 [Jeremy Kemper, trevor] --- Module Name: pkgsrc Committed By: minskim Date: Mon Dec 10 05:47:03 UTC 2007 Modified Files: pkgsrc/www/ruby-actionpack: Makefile distinfo Log Message: Update ruby-actionpack to 1.13.6. Changes: * Correct Broken Fix for session_fixation attacks * Ensure that cookies handle array values correctly. Closes #9937 [queso]
Diffstat (limited to 'devel')
-rw-r--r--devel/ruby-activesupport/Makefile6
-rw-r--r--devel/ruby-activesupport/distinfo8
2 files changed, 7 insertions, 7 deletions
diff --git a/devel/ruby-activesupport/Makefile b/devel/ruby-activesupport/Makefile
index f6ac23ba482..70e53e89dd4 100644
--- a/devel/ruby-activesupport/Makefile
+++ b/devel/ruby-activesupport/Makefile
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile,v 1.11 2007/03/17 10:59:26 minskim Exp $
+# $NetBSD: Makefile,v 1.11.6.1 2007/12/10 17:08:10 ghen Exp $
-DISTNAME= activesupport-1.4.2
+DISTNAME= activesupport-1.4.4
PKGNAME= ${RUBY_PKGPREFIX}-${DISTNAME}
CATEGORIES= devel ruby
-MASTER_SITES= http://rubyforge.org/frs/download.php/18399/
+MASTER_SITES= http://rubyforge.org/frs/download.php/26548/
EXTRACT_SUFX= .tgz
MAINTAINER= minskim@NetBSD.org
diff --git a/devel/ruby-activesupport/distinfo b/devel/ruby-activesupport/distinfo
index 5db4a2e3911..8035bac7b70 100644
--- a/devel/ruby-activesupport/distinfo
+++ b/devel/ruby-activesupport/distinfo
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.9 2007/03/17 10:59:26 minskim Exp $
+$NetBSD: distinfo,v 1.9.6.1 2007/12/10 17:08:10 ghen Exp $
-SHA1 (activesupport-1.4.2.tgz) = ec1b98727e0ca2eb55304f2cb814c50075e7d998
-RMD160 (activesupport-1.4.2.tgz) = 5a0cc3dc0710cdd4930189d3812a8d43c7936477
-Size (activesupport-1.4.2.tgz) = 214206 bytes
+SHA1 (activesupport-1.4.4.tgz) = d5676bc270329478d31baecc95f3a506a510b43f
+RMD160 (activesupport-1.4.4.tgz) = 697258b8c491937c1b1d157723bbbd8d1717b8a2
+Size (activesupport-1.4.4.tgz) = 214299 bytes
SHA1 (patch-aa) = d49d9f6c9a1f1ef23cfdb6df0f35a9391cc6934d
SHA1 (patch-ab) = 25d4bf00f57e2708ac5af41383c1d13ff74a0c1d