SHA256
8
0
forked from pool/perl-CGI
Commit Graph

72 Commits

Author SHA256 Message Date
28a25e07a6 Accepting request 404110 from devel:languages:perl:autoupdate
automatic update

OBS-URL: https://build.opensuse.org/request/show/404110
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-CGI?expand=0&rev=22
2016-06-23 14:45:43 +00:00
8e796c8a08 Accepting request 401451 from devel:languages:perl
1

OBS-URL: https://build.opensuse.org/request/show/401451
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-CGI?expand=0&rev=2
2016-06-19 08:47:54 +00:00
Stephan Kulow
52f54d4b15 Accepting request 401401 from devel:languages:perl:autoupdate
- updated to 4.30
   see /usr/share/doc/packages/perl-CGI/Changes
  4.30 2016-06-08
  
      [ FEATURES ]
      - Add SameSite support to Cookie handling (thanks to pangyre)
  
      [ INTERNALS ]
      - The MultipartBuffer package has been renamed to CGI::MultipartBuffer.
        This has been done in a way to ensure any $MultipartBuffer package
        variables are still set correctly in CGI::MultipartBuffer. if you are
        explicitly using MultipartBuffer in a form such as:
  
          MultipartBuffer->new
  
        your code will break. you should be calling:
  
          CGI->new->new_MultipartBuffer( $boundary,$length );
  
        to ensure the correctly package is called. if you are extending the
        MultipartBuffer package though use of ISA or base (or parent) then you
        will need to update your code to use CGI::MultipartBuffer
  
      - fake using strict and warnings to appease CPANTS Kwalitee
  
  4.28 2016-03-14
  
      [ RELEASE NOTES ]
      - please see v4.21 Changes for any potentially impacting changes

OBS-URL: https://build.opensuse.org/request/show/401401
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-CGI?expand=0&rev=20
2016-06-12 14:06:25 +00:00
Stephan Kulow
d4d3bef55f Accepting request 327157 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/327157
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-CGI?expand=0&rev=1
2015-08-28 06:26:42 +00:00
Johannes Weberhofer
4dcd0ab37e Accepting request 327137 from devel:openQA
please submit to Factory

- updated to 4.21
  http://cpansearch.perl.org/src/LEEJO/CGI-4.21/Changes

OBS-URL: https://build.opensuse.org/request/show/327137
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-CGI?expand=0&rev=18
2015-08-26 13:02:30 +00:00
Stephan Kulow
8993bf0921 Accepting request 312092 from home:weberho:branches:devel:languages:perl
Removed some old stuff needed to build on older distributions

OBS-URL: https://build.opensuse.org/request/show/312092
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-CGI?expand=0&rev=17
2015-06-16 05:45:11 +00:00
8fc6c7d4a6 Accepting request 264053 from home:smithfarm:branches:devel:languages:perl
- updated to 4.11
4.11 2014-12-02
 
    [ SPEC / BUG FIXES ]
    - more hash key ordering bugs fixed in HTML attribute output (GH #158,
      thanks to Marcus Meissner for the patch and test case)
 
    [ REFACTORING ]
    - escapeHTML (and unescapeHTML) have been refactored to use the functions
      exported by the HTML::Entities module (GH #157)
    - change BUILD_REQUIRES to TEST_REQUIRES in Makefile.PL as these are test
      dependencies not build dependencies (GH #159)
 
    [ DOCUMENTATION ]
    - replace any remaining uses of indirect object notation (new Object) with
      the safer Object->new syntax (GH #156)
 
4.10 2014-11-27
 
    [ SPEC / BUG FIXES ]
    - favour -content-type arg in header if -type and -charset options are also
      passed in (GH #155, thanks to kaoru for the test case). this change also
      sorts the hash keys in the rearrange method in CGI::Util meaning the order
      of the arrangement will always be the same for params that have multiple
      aliases. really you shouldn't be passing in multiple aliases, but this will
      make it consistent should you do that
 
    [ DOCUMENTATION ]
    - fix some typos

OBS-URL: https://build.opensuse.org/request/show/264053
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-CGI?expand=0&rev=16
2014-12-04 16:17:24 +00:00
Lars Vogdt
d20494e15b Accepting request 202907 from home:deadpoint:branches:devel:languages:perl
Update to 3.63.

Is there a reason why this is disabled for Factory and when enabled is blocked by perl-FCGI? I need perl-CGI for request-tracker and it's currently unresolvable due to this.

OBS-URL: https://build.opensuse.org/request/show/202907
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-CGI?expand=0&rev=15
2013-10-14 07:46:02 +00:00
Pascal Bleser
b64b0cbae4 - update to 3.58: documentation improvements:
* clarify that using query_string() only has defined behavior when using the
    GET method (RT#60813)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-CGI?expand=0&rev=14
2011-11-12 09:43:21 +00:00
Pascal Bleser
55bce60167 - update to 3.57:
* Test::More requirement has been bumped to 0.98
- changes from 3.56:
  * SECURITY: use public and documented FCGI.pm API in CGI::Fast: CGI::Fast was
    using an FCGI API that was deprecated and removed from documentation more
    than ten years ago; usage of this deprecated API with FCGI >= 0.70 or FCGI
    <= 0.73 introduces a security issue CVE-2011-2766

OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-CGI?expand=0&rev=13
2011-11-10 11:51:31 +00:00
Lars Vogdt
c266a85b99 - fix deps
* Test::More >= 0.88 (done_testing)
- fix build for
  * openSUSE > 1140 (shebang), SLE_10, SLE_11, RHEL, CentOS
- remove Author from desc

- update to 3.55:
  + [THINGS THAT MAY BREAK YOUR CODE]
    url() was fixed to return "PATH_INFO" when it is explicitly requested
    with either the path=>1 or path_info=>1 flag.
    If your code is running under mod_rewrite (or compatible) and you are 
    calling self_url() or you are calling url() and passing path_info=>1, 
    These methods will actually be returning PATH_INFO now, as you have 
    explicitly requested, or has self_url() has requested on your behalf.
  
    The PATH_INFO has been omitted in such URLs since the issue was 
    introduced in the 3.12 release in December, 2005. 
     
    This bug is so old your application may have come to depend on it or
    workaround it. Check for application before upgrading to this release.
  + The DELETE HTTP verb is now supported (RT#52614)
  + [NEW FEATURES]
    - A new option to set $CGI::Carp::TO_BROWSER = 0, allows you to 
      explicitly exclude a particular scope from triggering printing to 
      the browser when fatatlsToBrowser is set. (RT#62783)
    - The <script> tag now supports the "charset" attribute.
      (RT#62907)
    - In CGI::Cookie, "Max-Age" is now supported for better 
      spec compliance.
  + Further improvements have been made to guard against newline

OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-CGI?expand=0&rev=12
2011-08-25 21:28:55 +00:00
Christian Wittmer
5eac36364e fix build
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-CGI?expand=0&rev=11
2011-08-24 21:34:45 +00:00
Christian Wittmer
f1ffabd2c7 fix build for SLE_{10,11}, RHEL, CentOS
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-CGI?expand=0&rev=10
2011-08-24 21:00:59 +00:00
Lars Vogdt
4a5708d595 - update to 3.55:
+ [THINGS THAT MAY BREAK YOUR CODE]
    url() was fixed to return "PATH_INFO" when it is explicitly requested
    with either the path=>1 or path_info=>1 flag.
    If your code is running under mod_rewrite (or compatible) and you are 
    calling self_url() or you are calling url() and passing path_info=>1, 
    These methods will actually be returning PATH_INFO now, as you have 
    explicitly requested, or has self_url() has requested on your behalf.
  
    The PATH_INFO has been omitted in such URLs since the issue was 
    introduced in the 3.12 release in December, 2005. 
     
    This bug is so old your application may have come to depend on it or
    workaround it. Check for application before upgrading to this release.
  + The DELETE HTTP verb is now supported (RT#52614)
  + [NEW FEATURES]
    - A new option to set $CGI::Carp::TO_BROWSER = 0, allows you to 
      explicitly exclude a particular scope from triggering printing to 
      the browser when fatatlsToBrowser is set. (RT#62783)
    - The <script> tag now supports the "charset" attribute.
      (RT#62907)
    - In CGI::Cookie, "Max-Age" is now supported for better 
      spec compliance.
  + Further improvements have been made to guard against newline
    injections in headers

- update to 3.50:
  * Fixed two security issues: 
  ** The MIME boundary in multipart_init is now random.
  ** Further improvements to handling of newlines embedded in header

OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-CGI?expand=0&rev=9
2011-08-23 19:45:58 +00:00
Lars Vogdt
25f859c318 - update to 3.50:
* Fixed two security issues: 
  ** The MIME boundary in multipart_init is now random.
  ** Further improvements to handling of newlines embedded in header 
     values. An exception is thrown if header values contain 
     invalid newlines.
  * Correcting/clarifying documentation for param_fetch().
  * Fixing https test in http.t.
  * Tests were added for multipart_init().

OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-CGI?expand=0&rev=8
2010-12-24 21:19:49 +00:00
Stephan Kulow
9ca57671db always buildrequire perl-macros if not present, move %perl_requires behind buildroot (script commit)
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-CGI?expand=0&rev=7
2010-12-03 13:56:23 +00:00
Stephan Kulow
f70c27f96b siwtch to perl_requires macro
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-CGI?expand=0&rev=6
2010-12-01 13:38:48 +00:00
Christian Wittmer
a931aeb3e9 update to 3.49, noarch pkg
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-CGI?expand=0&rev=5
2010-09-14 22:44:12 +00:00
Christian Wittmer
3dd14621d7 Accepting request 26127 from home:bitshuffler:branches:devel:languages:perl
Copy from home:bitshuffler:branches:devel:languages:perl/perl-CGI via accept of submit request 26127 revision 2.
Request was accepted with message:
reviewed, ok, thank you

OBS-URL: https://build.opensuse.org/request/show/26127
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-CGI?expand=0&rev=4
2009-12-09 16:23:48 +00:00
Lars Vogdt
60e2e05885 update to 3.42
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-CGI?expand=0&rev=3
2008-11-30 02:47:58 +00:00
8e2020e198 fix name
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-CGI?expand=0&rev=2
2008-07-26 00:20:44 +00:00
b9c59042ff perl-CGI
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-CGI?expand=0&rev=1
2008-07-26 00:18:46 +00:00