Hello community,

here is the log from the commit of package rubygem-actionpack.1341 for 
openSUSE:12.1:Update checked in at 2013-02-25 10:44:55
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:12.1:Update/rubygem-actionpack.1341 (Old)
 and      /work/SRC/openSUSE:12.1:Update/.rubygem-actionpack.1341.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rubygem-actionpack.1341", Maintainer is ""

Changes:
--------
New Changes file:

--- /dev/null   2013-02-09 11:18:20.872010756 +0100
+++ 
/work/SRC/openSUSE:12.1:Update/.rubygem-actionpack.1341.new/rubygem-actionpack.changes
      2013-02-25 10:44:56.000000000 +0100
@@ -0,0 +1,239 @@
+-------------------------------------------------------------------
+Wed Feb 13 23:18:32 UTC 2013 - mrueck...@suse.de
+
+- bump requires to version 2.3.17
+
+-------------------------------------------------------------------
+Wed Jan 30 16:23:12 UTC 2013 - mrueck...@suse.de
+
+- bump requires to version 2.3.16
+
+-------------------------------------------------------------------
+Wed Aug 17 22:26:56 UTC 2011 - mrueck...@suse.de
+
+- bump requires to version 2.3.14
+
+-------------------------------------------------------------------
+Wed Feb 16 12:22:59 UTC 2011 - mrueck...@suse.de
+
+- bump requires to version 2.3.11
+
+-------------------------------------------------------------------
+Wed Oct 27 12:07:59 UTC 2010 - mrueck...@suse.de
+
+- bump requires to version 2.3.10
+
+-------------------------------------------------------------------
+Mon Sep  6 14:44:31 UTC 2010 - mrueck...@suse.de
+
+- bump requires to version 2.3.9
+
+-------------------------------------------------------------------
+Tue May 25 16:21:34 UTC 2010 - mrueck...@suse.de
+
+- bump requires to version 2.3.8
+
+-------------------------------------------------------------------
+Mon Dec 21 16:53:36 UTC 2009 - mrueck...@suse.de
+
+- bump requires to version 2.3.5
+
+-------------------------------------------------------------------
+Tue Sep 29 17:16:48 CEST 2009 - mrueck...@suse.de
+
+- bump requires to version 2.3.4
+
+-------------------------------------------------------------------
+Mon Mar 16 21:07:24 CET 2009 - mrueck...@suse.de
+
+- bump requires to version 2.3.2
+
+-------------------------------------------------------------------
+Mon Mar  9 16:18:17 CET 2009 - mrueck...@suse.de
+
+- bump version number to 2.1.2
+
+-------------------------------------------------------------------
+Fri Sep 12 18:28:42 CEST 2008 - mrueck...@suse.de
+
+- bump requires to version 2.1.1
+
+-------------------------------------------------------------------
+Mon Jan 21 17:34:24 CET 2008 - mrueck...@suse.de
+
+- started a new wrapper package. it will always pull in the latest
+  rubygem-actionpack package
+
+-------------------------------------------------------------------
+Wed Oct 17 17:52:39 CEST 2007 - mrueck...@suse.de
+
+- update to version 1.13.5
+  * 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]
+- additional changes from version 1.13.4
+  * Only accept session ids from cookies, prevents session fixation
+    attacks.  [bradediger] (CVE-2007-5380) (bnc #332441)
+  * 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]
+    After filters will *no longer* be run if an around_filter fails
+    to yield, users relying on this behaviour are advised to put
+    the code in question after a yield statement in an around
+    filter.
+  * Allow you to delete cookies with options.
+    Closes #3685 [josh, Chris Wanstrath]
+  * Deprecate pagination. Install the classic_pagination
+    plugin for forward compatibility, or move to the superior
+    will_paginate plugin.  #8157 [Mislav Marohnic]
+  * 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 [Nik Wakelin, Francois Beausoleil, Wizard]
+  * Document caches_action.  #5419 [Jarkko Laine]
+  * observe_form always sends the serialized form.
+    #5271 [manfred, normel...@gmail.com]
+  * 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 [jeremymcanally]
+  * 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]
+
+-------------------------------------------------------------------
+Mon May 14 16:32:28 CEST 2007 - mrueck...@suse.de
+
+- update to version 1.13.3:
+  * Fix a bug in Routing where a parameter taken from the path of
+    the current request could not be used as a query parameter for
+    the next.  #6752 [Nicholas Seckar]
+  * session_enabled? works with session :off.  #6680 [Catfish]
+  * Performance: patch cgi/session to require digest/md5 once
+    rather than per #create_new_id.  [Stefan Kaes]
+- additional changes from 1.13.2:
+  *  Add much-needed html-scanner tests.  Fixed CDATA parsing bug.
+     [Rick]
+  *  improve error message for Routing for named routes.
+     [Rob Sanheim]
+  *  Added enhanced docs to routing assertions. [Rob Sanheim]
+  *  fix form_for example in ActionController::Resources
+     documentation. [gnarg]
+  *  Add singleton resources from trunk [Rick Olson]
+  *  select :multiple => true suffixes the attribute name with []
+     unless already suffixed.  #6977 [nik.kakelin, ben, julik]
+  *  Improve routes documentation.  #7095 [zackchandler]
+  *  Resource member routes require :id, eliminating the ambiguous
+     overlap with collection routes.  #7229 [dkubb]
+  *  Fixed NumberHelper#number_with_delimiter to use "." always
+     for splitting the original number, not the delimiter
+     parameter #7389 [ceefour]
+  *  Autolinking recognizes trailing and embedded . , : ;  
+     #7354 [Jarkko Laine]
+  *  Make TextHelper::auto_link recognize URLs with colons in
+     path correctly, fixes #7268.  [imajes]
+  *  Improved auto_link to match more valid urls correctly
+     [Tobias Luetke]
+
+-------------------------------------------------------------------
+Wed Jan 24 00:57:59 CET 2007 - mrueck...@suse.de
+
+- update to version 1.13.1:
+  update for rails 1.2.1. Too many changes to mention them here.
+  see /usr/lib*/ruby/gems/1.8/gems/actionpack-1.13.1/CHANGELOG
+
+-------------------------------------------------------------------
+Fri Aug 11 02:33:25 CEST 2006 - mrueck...@suse.de
+
+- update to version 1.12.5:
+  * update for the previous security fix
+
+-------------------------------------------------------------------
+Thu Aug 10 12:40:16 CEST 2006 - mrueck...@suse.de
+
+- update to version 1.12.4:
+  * Documentation fix: integration test scripts don't require
+    integration_test. (rails:#4914) [Frederick Ros <sl33...@free.fr>]
+  * ActionController::Base Summary documentation rewrite.
+    (rails:#4900) [kevin.cl...@gmail.com]
+  * Fix text_helper.rb documentation rendering. 
+    (rails:#4725) [Frederick Ros]
+  * Fixes bad rendering of JavaScriptMacrosHelper rdoc.
+    (rails:#4910) [Frederick Ros]
+  * Enhance documentation for setting headers in integration tests.
+    Skip auto HTTP prepending when its already there.
+    (rails:#4079) [Rick Olson]
+  * Documentation for AbstractRequest.
+    (rails:#4895) [kevin.cl...@gmail.com]
+  * Remove all remaining references to @params in the documentation.
+    [Marcel Molina Jr.]
+  * Add documentation for redirect_to :back's RedirectBackError
+    exception.  [Marcel Molina Jr.]
+  * Update layout and content_for documentation to use yield rather
+    than magic @content_for instance variables. [Marcel Molina Jr.]
+  * Cache CgiRequest#request_parameters so that multiple calls
+    don't re-parse multipart data. [Rick]
+  * Fixed that remote_form_for can leave out the object parameter
+    and default to the instance variable of the object_name,
+    just like form_for [DHH]
+  * Added ActionController.filter_parameter_logging that makes it
++++ 42 more lines (skipped)
++++ between /dev/null
++++ and 
/work/SRC/openSUSE:12.1:Update/.rubygem-actionpack.1341.new/rubygem-actionpack.changes

New:
----
  rubygem-actionpack-README.SuSE
  rubygem-actionpack.changes
  rubygem-actionpack.spec

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ rubygem-actionpack.spec ++++++
#
# spec file for package rubygem-actionpack
#
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#


Name:           rubygem-actionpack
Version:        2.3.17
Release:        0
%define mod_name actionpack
#
#
BuildRoot:      %{_tmppath}/%{name}-%{version}-build
BuildArch:      noarch
Requires:       rubygem-actionpack-2_3 = %{version}
#
Url:            http://rubyforge.org/projects/actionpack
Source:         %{name}-README.SuSE
#
Summary:        Eases web-request routing, handling, and response
License:        MIT
Group:          Development/Languages/Ruby

%description
Eases web-request routing, handling, and response as a half-way front,
half-way page controller. Implemented with specific emphasis on
enabling easy unit/integration testing that doesn't require a browser.



Authors:
--------
    rails development team

%prep

%build

%install
%{__install} -D -m 0644 %{S:0} %{buildroot}%{_docdir}/%{name}/README.SUSE

%clean
%{__rm} -rf %{buildroot}

%files
%defattr(-,root,root,-)
%dir %{_docdir}/%{name}/
%{_docdir}/%{name}/README.SUSE

%changelog
++++++ rubygem-actionpack-README.SuSE ++++++

   This is just a wrapper packager which will pull in the latest
   version of rubygem-actionpack see the documentation directory
   of that package for more informations.

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to