Sophie

Sophie

distrib > Mageia > 7 > x86_64 > by-pkgid > 481c2de1450e70fa8fdc1e3abf72606b > files > 1027

python-django-doc-1.11.20-1.mga7.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" lang="">
  <head>
    <meta http-equiv="X-UA-Compatible" content="IE=Edge" />
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Django 1.9.1 release notes &#8212; Django 1.11.20 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" id="documentation_options" data-url_root="../" src="../_static/documentation_options.js"></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>
    <script type="text/javascript" src="../_static/language_data.js"></script>
    <link rel="index" title="Index" href="../genindex.html" />
    <link rel="search" title="Search" href="../search.html" />
    <link rel="next" title="Django 1.9 release notes" href="1.9.html" />
    <link rel="prev" title="Django 1.9.2 release notes" href="1.9.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.11.20 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.9.2.html" title="Django 1.9.2 release notes">previous</a>
     |
    <a href="index.html" title="Release notes" accesskey="U">up</a>
   |
    <a href="1.9.html" title="Django 1.9 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.9.1">
            
  <div class="section" id="s-django-1-9-1-release-notes">
<span id="django-1-9-1-release-notes"></span><h1>Django 1.9.1 release notes<a class="headerlink" href="#django-1-9-1-release-notes" title="Permalink to this headline">¶</a></h1>
<p><em>January 2, 2016</em></p>
<p>Django 1.9.1 fixes several bugs in 1.9.</p>
<div class="section" id="s-bugfixes">
<span id="bugfixes"></span><h2>Bugfixes<a class="headerlink" href="#bugfixes" title="Permalink to this headline">¶</a></h2>
<ul class="simple">
<li>Fixed <code class="docutils literal notranslate"><span class="pre">BaseCache.get_or_set()</span></code> with the <code class="docutils literal notranslate"><span class="pre">DummyCache</span></code> backend
(<a class="reference external" href="https://code.djangoproject.com/ticket/25840">#25840</a>).</li>
<li>Fixed a regression in <code class="docutils literal notranslate"><span class="pre">FormMixin</span></code> causing forms to be validated twice
(<a class="reference external" href="https://code.djangoproject.com/ticket/25548">#25548</a>, <a class="reference external" href="https://code.djangoproject.com/ticket/26018">#26018</a>).</li>
<li>Fixed a system check crash with nested <code class="docutils literal notranslate"><span class="pre">ArrayField</span></code>s (<a class="reference external" href="https://code.djangoproject.com/ticket/25867">#25867</a>).</li>
<li>Fixed a state bug when migrating a <code class="docutils literal notranslate"><span class="pre">SeparateDatabaseAndState</span></code> operation
backwards (<a class="reference external" href="https://code.djangoproject.com/ticket/25896">#25896</a>).</li>
<li>Fixed a regression in <code class="docutils literal notranslate"><span class="pre">CommonMiddleware</span></code> causing <code class="docutils literal notranslate"><span class="pre">If-None-Match</span></code> checks
to always return HTTP 200 (<a class="reference external" href="https://code.djangoproject.com/ticket/25900">#25900</a>).</li>
<li>Fixed missing <code class="docutils literal notranslate"><span class="pre">varchar/text_pattern_ops</span></code> index on <code class="docutils literal notranslate"><span class="pre">CharField</span></code> and
<code class="docutils literal notranslate"><span class="pre">TextField</span></code> respectively when using <code class="docutils literal notranslate"><span class="pre">AlterField</span></code> on PostgreSQL
(<a class="reference external" href="https://code.djangoproject.com/ticket/25412">#25412</a>).</li>
<li>Fixed admin’s delete confirmation page’s summary counts of related objects
(<a class="reference external" href="https://code.djangoproject.com/ticket/25883">#25883</a>).</li>
<li>Added <code class="docutils literal notranslate"><span class="pre">from</span> <span class="pre">__future__</span> <span class="pre">import</span> <span class="pre">unicode_literals</span></code> to the default <code class="docutils literal notranslate"><span class="pre">apps.py</span></code>
created by <code class="docutils literal notranslate"><span class="pre">startapp</span></code> on Python 2 (<a class="reference external" href="https://code.djangoproject.com/ticket/25909">#25909</a>). Add this line to your
own <code class="docutils literal notranslate"><span class="pre">apps.py</span></code> files created using Django 1.9 if you want your migrations
to work on both Python 2 and Python 3.</li>
<li>Prevented <code class="docutils literal notranslate"><span class="pre">QuerySet.delete()</span></code> from crashing on MySQL when querying across
relations (<a class="reference external" href="https://code.djangoproject.com/ticket/25882">#25882</a>).</li>
<li>Fixed evaluation of zero-length slices of <code class="docutils literal notranslate"><span class="pre">QuerySet.values()</span></code>
(<a class="reference external" href="https://code.djangoproject.com/ticket/25894">#25894</a>).</li>
<li>Fixed a state bug when using an <code class="docutils literal notranslate"><span class="pre">AlterModelManagers</span></code> operation
(<a class="reference external" href="https://code.djangoproject.com/ticket/25852">#25852</a>).</li>
<li>Fixed <code class="docutils literal notranslate"><span class="pre">TypedChoiceField</span></code> change detection with nullable fields
(<a class="reference external" href="https://code.djangoproject.com/ticket/25942">#25942</a>).</li>
<li>Fixed incorrect timezone warnings in custom admin templates that don’t have
a <code class="docutils literal notranslate"><span class="pre">data-admin-utc-offset</span></code> attribute in the <code class="docutils literal notranslate"><span class="pre">body</span></code> tag.
(<a class="reference external" href="https://code.djangoproject.com/ticket/25845">#25845</a>).</li>
<li>Fixed a regression which prevented using a language not in Django’s default
language list (<a class="reference internal" href="../ref/settings.html#std:setting-LANGUAGES"><code class="xref std std-setting docutils literal notranslate"><span class="pre">LANGUAGES</span></code></a>) (<a class="reference external" href="https://code.djangoproject.com/ticket/25915">#25915</a>).</li>
<li>Avoided hiding some exceptions, like an invalid <code class="docutils literal notranslate"><span class="pre">INSTALLED_APPS</span></code> setting,
behind <code class="docutils literal notranslate"><span class="pre">AppRegistryNotReady</span></code> when starting <code class="docutils literal notranslate"><span class="pre">runserver</span></code> (<a class="reference external" href="https://code.djangoproject.com/ticket/25510">#25510</a>).
This regression appeared in 1.8.5 as a side effect of fixing <a class="reference external" href="https://code.djangoproject.com/ticket/24704">#24704</a>
and by mistake the fix wasn’t applied to the <code class="docutils literal notranslate"><span class="pre">stable/1.9.x</span></code> branch.</li>
<li>Fixed <code class="docutils literal notranslate"><span class="pre">migrate</span> <span class="pre">--fake-initial</span></code> detection of many-to-many tables
(<a class="reference external" href="https://code.djangoproject.com/ticket/25922">#25922</a>).</li>
<li>Restored the functionality of the admin’s <code class="docutils literal notranslate"><span class="pre">list_editable</span></code> add and change
buttons (<a class="reference external" href="https://code.djangoproject.com/ticket/25903">#25903</a>).</li>
<li>Fixed <code class="docutils literal notranslate"><span class="pre">isnull</span></code> query lookup for <code class="docutils literal notranslate"><span class="pre">ForeignObject</span></code>
(<a class="reference external" href="https://code.djangoproject.com/ticket/25972">#25972</a>).</li>
<li>Fixed a regression in the admin which ignored line breaks in read-only fields
instead of converting them to <code class="docutils literal notranslate"><span class="pre">&lt;br&gt;</span></code> (<a class="reference external" href="https://code.djangoproject.com/ticket/25465">#25465</a>).</li>
<li>Fixed incorrect object reference in
<code class="docutils literal notranslate"><span class="pre">SingleObjectMixin.get_context_object_name()</span></code> (<a class="reference external" href="https://code.djangoproject.com/ticket/26006">#26006</a>).</li>
<li>Made <code class="docutils literal notranslate"><span class="pre">loaddata</span></code> skip disabling and enabling database constraints when it
doesn’t load any fixtures (<a class="reference external" href="https://code.djangoproject.com/ticket/23372">#23372</a>).</li>
<li>Restored <code class="docutils literal notranslate"><span class="pre">contrib.auth</span></code> hashers compatibility with py-bcrypt
(<a class="reference external" href="https://code.djangoproject.com/ticket/26016">#26016</a>).</li>
<li>Fixed a crash in <code class="docutils literal notranslate"><span class="pre">QuerySet.values()/values_list()</span></code> after an <code class="docutils literal notranslate"><span class="pre">annotate()</span></code>
and <code class="docutils literal notranslate"><span class="pre">order_by()</span></code> when <code class="docutils literal notranslate"><span class="pre">values()/values_list()</span></code> includes a field not in
the <code class="docutils literal notranslate"><span class="pre">order_by()</span></code> (<a class="reference external" href="https://code.djangoproject.com/ticket/25316">#25316</a>).</li>
</ul>
</div>
</div>


          </div>
        </div>
      </div>
      
        
          <div class="yui-b" id="sidebar">
            
      <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
        <div class="sphinxsidebarwrapper">
  <h3><a href="../contents.html">Table of Contents</a></h3>
  <ul>
<li><a class="reference internal" href="#">Django 1.9.1 release notes</a><ul>
<li><a class="reference internal" href="#bugfixes">Bugfixes</a></li>
</ul>
</li>
</ul>

  <h4>Previous topic</h4>
  <p class="topless"><a href="1.9.2.html"
                        title="previous chapter">Django 1.9.2 release notes</a></p>
  <h4>Next topic</h4>
  <p class="topless"><a href="1.9.html"
                        title="next chapter">Django 1.9 release notes</a></p>
  <div role="note" aria-label="source link">
    <h3>This Page</h3>
    <ul class="this-page-menu">
      <li><a href="../_sources/releases/1.9.1.txt"
            rel="nofollow">Show Source</a></li>
    </ul>
   </div>
<div id="searchbox" style="display: none" role="search">
  <h3>Quick search</h3>
    <div class="searchformwrapper">
    <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>
    </div>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
        </div>
      </div>
              <h3>Last update:</h3>
              <p class="topless">Feb 11, 2019</p>
          </div>
        
      
    </div>

    <div id="ft">
      <div class="nav">
    &laquo; <a href="1.9.2.html" title="Django 1.9.2 release notes">previous</a>
     |
    <a href="index.html" title="Release notes" accesskey="U">up</a>
   |
    <a href="1.9.html" title="Django 1.9 release notes">next</a> &raquo;</div>
    </div>
  </div>

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