Sophie

Sophie

distrib > Fedora > 20 > i386 > by-pkgid > 422242acff54b9373d7d4b7f73232ce1 > files > 743

python3-django-doc-1.6.7-1.fc20.noarch.rpm


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">


<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    
    <title>Django 1.6.1 release notes &mdash; Django 1.6.7 documentation</title>
    
    <link rel="stylesheet" href="../_static/default.css" type="text/css" />
    <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
    
    <script type="text/javascript">
      var DOCUMENTATION_OPTIONS = {
        URL_ROOT:    '../',
        VERSION:     '1.6.7',
        COLLAPSE_INDEX: false,
        FILE_SUFFIX: '.html',
        HAS_SOURCE:  true
      };
    </script>
    <script type="text/javascript" src="../_static/jquery.js"></script>
    <script type="text/javascript" src="../_static/underscore.js"></script>
    <script type="text/javascript" src="../_static/doctools.js"></script>
    <link rel="top" title="Django 1.6.7 documentation" href="../index.html" />
    <link rel="up" title="Release notes" href="index.html" />
    <link rel="next" title="Django 1.6 release notes" href="1.6.html" />
    <link rel="prev" title="Django 1.6.2 release notes" href="1.6.2.html" />



 
<script type="text/javascript" src="../templatebuiltins.js"></script>
<script type="text/javascript">
(function($) {
    if (!django_template_builtins) {
       // templatebuiltins.js missing, do nothing.
       return;
    }
    $(document).ready(function() {
        // Hyperlink Django template tags and filters
        var base = "../ref/templates/builtins.html";
        if (base == "#") {
            // Special case for builtins.html itself
            base = "";
        }
        // Tags are keywords, class '.k'
        $("div.highlight\\-html\\+django span.k").each(function(i, elem) {
             var tagname = $(elem).text();
             if ($.inArray(tagname, django_template_builtins.ttags) != -1) {
                 var fragment = tagname.replace(/_/, '-');
                 $(elem).html("<a href='" + base + "#" + fragment + "'>" + tagname + "</a>");
             }
        });
        // Filters are functions, class '.nf'
        $("div.highlight\\-html\\+django span.nf").each(function(i, elem) {
             var filtername = $(elem).text();
             if ($.inArray(filtername, django_template_builtins.tfilters) != -1) {
                 var fragment = filtername.replace(/_/, '-');
                 $(elem).html("<a href='" + base + "#" + fragment + "'>" + filtername + "</a>");
             }
        });
    });
})(jQuery);
</script>


  </head>
  <body>

    <div class="document">
  <div id="custom-doc" class="yui-t6">
    <div id="hd">
      <h1><a href="../index.html">Django 1.6.7 documentation</a></h1>
      <div id="global-nav">
        <a title="Home page" href="../index.html">Home</a>  |
        <a title="Table of contents" href="../contents.html">Table of contents</a>  |
        <a title="Global index" href="../genindex.html">Index</a>  |
        <a title="Module index" href="../py-modindex.html">Modules</a>
      </div>
      <div class="nav">
    &laquo; <a href="1.6.2.html" title="Django 1.6.2 release notes">previous</a> 
     |
    <a href="index.html" title="Release notes" accesskey="U">up</a>
   |
    <a href="1.6.html" title="Django 1.6 release notes">next</a> &raquo;</div>
    </div>
    
    <div id="bd">
      <div id="yui-main">
        <div class="yui-b">
          <div class="yui-g" id="releases-1.6.1">
            
  <div class="section" id="s-django-1-6-1-release-notes">
<span id="django-1-6-1-release-notes"></span><h1>Django 1.6.1 release notes<a class="headerlink" href="#django-1-6-1-release-notes" title="Permalink to this headline">¶</a></h1>
<p><em>December 12, 2013</em></p>
<p>This is Django 1.6.1, a bugfix release for Django 1.6. In addition to the bug
fixes listed below, translations submitted since the 1.6 release are also
included.</p>
<div class="section" id="s-bug-fixes">
<span id="bug-fixes"></span><h2>Bug fixes<a class="headerlink" href="#bug-fixes" title="Permalink to this headline">¶</a></h2>
<ul class="simple">
<li>Fixed <tt class="docutils literal"><span class="pre">BCryptSHA256PasswordHasher</span></tt> with py-bcrypt and Python 3 (#21398).</li>
<li>Fixed a regression that prevented a <tt class="docutils literal"><span class="pre">ForeignKey</span></tt> with a hidden reverse
manager (<tt class="docutils literal"><span class="pre">related_name</span></tt> ending with &#8216;+&#8217;) from being used as a lookup for
<tt class="docutils literal"><span class="pre">prefetch_related</span></tt> (#21410).</li>
<li>Fixed <a class="reference internal" href="../ref/models/querysets.html#django.db.models.query.QuerySet.datetimes" title="django.db.models.query.QuerySet.datetimes"><tt class="xref py py-meth docutils literal"><span class="pre">Queryset.datetimes</span></tt></a>
raising <tt class="docutils literal"><span class="pre">AttributeError</span></tt> in some situations (#21432).</li>
<li>Fixed <a class="reference internal" href="../ref/contrib/auth.html#django.contrib.auth.backends.ModelBackend" title="django.contrib.auth.backends.ModelBackend"><tt class="xref py py-class docutils literal"><span class="pre">ModelBackend</span></tt></a> raising
<tt class="docutils literal"><span class="pre">UnboundLocalError</span></tt> if <a class="reference internal" href="../topics/auth/customizing.html#django.contrib.auth.get_user_model" title="django.contrib.auth.get_user_model"><tt class="xref py py-func docutils literal"><span class="pre">get_user_model()</span></tt></a>
raised an error (#21439).</li>
<li>Fixed a regression that prevented editable <tt class="docutils literal"><span class="pre">GenericRelation</span></tt> subclasses
from working in <tt class="docutils literal"><span class="pre">ModelForms</span></tt> (#21428).</li>
<li>Added missing <tt class="docutils literal"><span class="pre">to_python</span></tt> method for <tt class="docutils literal"><span class="pre">ModelMultipleChoiceField</span></tt> which
is required in Django 1.6 to properly detect changes from initial values
(#21568).</li>
<li>Fixed <tt class="docutils literal"><span class="pre">django.contrib.humanize</span></tt> translations where the unicode sequence
for the non-breaking space was returned verbatim (#21415).</li>
<li>Fixed <a class="reference internal" href="../ref/django-admin.html#django-admin-loaddata"><tt class="xref std std-djadmin docutils literal"><span class="pre">loaddata</span></tt></a> error when fixture file name contained any dots
not related to file extensions (#21457) or when fixture path was relative
but located in a subdirectory (#21551).</li>
<li>Fixed display of inline instances in formsets when parent has 0 for primary
key (#21472).</li>
<li>Fixed a regression where custom querysets for foreign keys were overwritten
if <tt class="docutils literal"><span class="pre">ModelAdmin</span></tt> had ordering set (#21405).</li>
<li>Removed mention of a feature in the <tt class="docutils literal"><span class="pre">--locale</span></tt>/<tt class="docutils literal"><span class="pre">-l</span></tt> option of the
<tt class="docutils literal"><span class="pre">makemessages</span></tt> and <tt class="docutils literal"><span class="pre">compilemessages</span></tt> commands that never worked as
promised: Support of multiple locale names separated by commas. It&#8217;s still
possible to specify multiple locales in one run by using the option
multiple times (#21488, #17181).</li>
<li>Fixed a regression that unnecessarily triggered settings configuration when
importing <tt class="docutils literal"><span class="pre">get_wsgi_application</span></tt> (#21486).</li>
<li>Fixed test client <tt class="docutils literal"><span class="pre">logout()</span></tt> method when using the cookie-based session
backend (#21448).</li>
<li>Fixed a crash when a <tt class="docutils literal"><span class="pre">GeometryField</span></tt> uses a non-geometric widget (#21496).</li>
<li>Fixed password hash upgrade when changing the iteration count (#21535).</li>
<li>Fixed a bug in the debug view when the URLconf only contains one element
(#21530).</li>
<li>Re-added missing search result count and reset link in changelist admin view
(#21510).</li>
<li>The current language is no longer saved to the session by <tt class="docutils literal"><span class="pre">LocaleMiddleware</span></tt>
on every response, but rather only after a logout (#21473).</li>
<li>Fixed a crash when executing <tt class="docutils literal"><span class="pre">runserver</span></tt> on non-English systems and when the
formatted date in its output contained non-ASCII characters (#21358).</li>
<li>Fixed a crash in the debug view after an exception occurred on Python ≥ 3.3
(#21443).</li>
<li>Fixed a crash in <a class="reference internal" href="../ref/models/fields.html#django.db.models.ImageField" title="django.db.models.ImageField"><tt class="xref py py-class docutils literal"><span class="pre">ImageField</span></tt></a> on some platforms
(Homebrew and RHEL6 reported) (#21355).</li>
<li>Fixed a regression when using generic relations in <tt class="docutils literal"><span class="pre">ModelAdmin.list_filter</span></tt>
(#21431).</li>
</ul>
</div>
</div>


          </div>         
        </div>
      </div>
      
        
          <div class="yui-b" id="sidebar">
            
      <div class="sphinxsidebar">
        <div class="sphinxsidebarwrapper">
  <h3><a href="../contents.html">Table Of Contents</a></h3>
  <ul>
<li><a class="reference internal" href="#">Django 1.6.1 release notes</a><ul>
<li><a class="reference internal" href="#bug-fixes">Bug fixes</a></li>
</ul>
</li>
</ul>

  <h3>Browse</h3>
  <ul>
    
      <li>Prev: <a href="1.6.2.html">Django 1.6.2 release notes</a></li>
    
    
      <li>Next: <a href="1.6.html">Django 1.6 release notes</a></li>
    
  </ul>
  <h3>You are here:</h3>
  <ul>
      <li>
        <a href="../index.html">Django 1.6.7 documentation</a>
        
          <ul><li><a href="index.html">Release notes</a>
        
        <ul><li>Django 1.6.1 release notes</li></ul>
        </li></ul>
      </li>
  </ul>  

  <h3>This Page</h3>
  <ul class="this-page-menu">
    <li><a href="../_sources/releases/1.6.1.txt"
           rel="nofollow">Show Source</a></li>
  </ul>
<div id="searchbox" style="display: none">
  <h3>Quick search</h3>
    <form class="search" action="../search.html" method="get">
      <input type="text" name="q" />
      <input type="submit" value="Go" />
      <input type="hidden" name="check_keywords" value="yes" />
      <input type="hidden" name="area" value="default" />
    </form>
    <p class="searchtip" style="font-size: 90%">
    Enter search terms or a module, class or function name.
    </p>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
        </div>
      </div>
              <h3>Last update:</h3>
              <p class="topless">Sep 26, 2014</p>
          </div> 
        
      
    </div>
    
    <div id="ft">
      <div class="nav">
    &laquo; <a href="1.6.2.html" title="Django 1.6.2 release notes">previous</a> 
     |
    <a href="index.html" title="Release notes" accesskey="U">up</a>
   |
    <a href="1.6.html" title="Django 1.6 release notes">next</a> &raquo;</div>
    </div>
  </div>

      <div class="clearer"></div>
    </div>
  </body>
</html>