Revision history for Perl extension CGI::Simple.

0.01 Thu Nov 1 12:21:48 2001

0.02 Fri Dec 21 2001

0.03 Fri Apr 12 2002

0.04 Sat Apr 12 2002

0.05 Wed Nov 6 2002

0.06 Fri Nov 8 2002

0.078 2007-01-09

0.080 2007-03-30

0.081 2007-05-20

0.082 2007-05-22

0.83 2007-05-22

1.0 2007-05-24

1.1 2007-07-13

1.1.1 2007-07-31

1.1.2 2007-07-31

1.103 2007-07-31

1.104 2008-05-13

1.105 2008-05-16

1.106 2008-09-14

1.107 2009-03-07

1.108 2009-03-13

1.109 2009-04-16

1.110 2009-05-24

1.111 2009-05-28

1.112 2009-05-31

1.113 2010-12-27

        It claims that is a simple copy/paste/modify from CGI.pm's test
        by the same name, but this has not been true for some time--
        CGI::Simple added

        httponly tests that CGI.pm lacks, for example.

        Sync cookie references with CGI.pm:add  reference to the
        newer RFC 2695

        "Interface to browse cookies" looks like it was typo for
        "browser". HTTP is more precise.

        Fix awkward "CGI::Simple.pm" language. It looks like it probably
        originated from the CGI.pm form. "CGI::Simple" is used instead.

        Best Practice: eliminate indirect object notation from new(),
        parse() and fetch() calls

        Security: Fix handling of embedded malicious newlines in header
          values This is a direct port of the same security fix that

        Security: use a random MIME boundary by default in
          multipart_init(). This is a direct port of the same issue
          which was addressed in CGI.pm, preventing some kinds of
          potential header injection attacks.

        Port from CGI.pm:Fix  multi-line header parsing.
          This fix is covered by the tests in t/header.t added in
          the previous patch. If you run those tests without this
          patch, you'll see how the headers would be malformed
          without this fix.

        Port CRLF injection prevention from CGI.pm

        Optimize Vars(): Don't build %hash if we aren't going to use it.

        Micro-optimization to Vars(): Don't call "tie" unless we need to.

      - Numerous changes from K. Berov:

        Added "+" to the mime character class.

        Added tests for C<$mime = $q->upload_info( $filename, 'mime' );>

        Fixed wrong match for mimetypes. Example: matched only
        'application/vnd' instead of 'application/vnd.ms-excel'.

        Added "\." to the mime character class