diff options
author | Max Kanat-Alexander <mkanat@bugzilla.org> | 2011-01-23 20:08:34 -0800 |
---|---|---|
committer | Max Kanat-Alexander <mkanat@bugzilla.org> | 2011-01-23 20:08:34 -0800 |
commit | c36a90f4fea6d39b015dd7792815b3cb7f345010 (patch) | |
tree | 02db026d7a2e35da363884fb12590bd5e3d8d8bd | |
parent | Bug 627854: Add 'form' hook to create-guided.html.tmpl similar to create.html... (diff) | |
download | bugzilla-c36a90f4fea6d39b015dd7792815b3cb7f345010.tar.gz bugzilla-c36a90f4fea6d39b015dd7792815b3cb7f345010.tar.bz2 bugzilla-c36a90f4fea6d39b015dd7792815b3cb7f345010.zip |
Bug 627923 - Release Notes for Bugzilla 3.6.4
r=reed
-rw-r--r-- | template/en/default/pages/release-notes.html.tmpl | 39 |
1 files changed, 37 insertions, 2 deletions
diff --git a/template/en/default/pages/release-notes.html.tmpl b/template/en/default/pages/release-notes.html.tmpl index 8d886fece..190723fcc 100644 --- a/template/en/default/pages/release-notes.html.tmpl +++ b/template/en/default/pages/release-notes.html.tmpl @@ -61,6 +61,41 @@ <h2 id="v36_point">Updates in this 3.6.x Release</h2> +<h3>3.6.4</h3> + +<p>This release fixes several security issues, some of which are + <strong>highly critical</strong>. See the + <a href="http://www.bugzilla.org/security/3.2.9/">Security Advisory</a> + for details.</p> + +<p>In addition, the following important fixes/changes have been made in + this release:</p> + +<ul> + <li>Due to one of the security fixes, [% terms.Bugzilla %] 3.6.4 now + requires a newer version of the CGI.pm Perl module than previous + releases of [% terms.Bugzilla %] did. When you run + <kbd>checksetup.pl</kbd>, it will inform you how to upgrade your CGI.pm + module. + </li> + <li>When replying to a comment with a link like "attachment 1234 [details]", + the "[details]" link will no longer be duplicated in your reply. + (<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=474766">[% terms.Bug %] 474766</a>) + </li> + <li>Using Quicksearch no longer requires that the <kbd>List::MoreUtils</kbd> + module be installed. + (<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=611129">[% terms.Bug %] 611129</a>) + </li> + <li>When using <a href="config.cgi?ctype=rdf">config.cgi?ctype=rdf</a>, + information about products now includes <kbd>allows_unconfirmed</kbd>. + (<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=610217">[% terms.Bug %] 610217</a>) + </li> + <li>When using tabular reports, any value whose name started with a period + or an underscore wasn't being displayed. + (<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=617684">[% terms.Bug %] 617684</a>) + </li> +</ul> + <h3>3.6.3</h3> <p>This release fixes various important security issues. See the @@ -233,7 +268,7 @@ <h3 id="v36_req_modules">Required Perl Modules</h3> [% INCLUDE req_table reqs = REQUIRED_MODULES - new = [] updated = [] %] + new = [] updated = ['CGI.pm'] %] <h3 id="v36_req_optional_mod">Optional Perl Modules</h3> @@ -241,7 +276,7 @@ features of [% terms.Bugzilla %]:</p> [% INCLUDE req_table reqs = OPTIONAL_MODULES - new = ['JSON-RPC', 'Test-Taint'] + new = ['JSON-RPC', 'Test-Taint', 'Math-Random-Secure'] updated = ['Chart'] include_feature = 1 %] |