[python-djblets] New upstream release 0.7.6

Stephen Gallagher sgallagh at fedoraproject.org
Thu Dec 13 20:40:08 UTC 2012


commit 24e73a3870f69e7e63730eb2fca40d57aa6bfbf0
Author: Stephen Gallagher <sgallagh at redhat.com>
Date:   Thu Dec 13 15:39:48 2012 -0500

    New upstream release 0.7.6
    
    - General:
    -  * Django 1.4.2 is now required
    -  * All admin-related templates have been changed to better fit the admin
         template structure and styles. This includes siteconfig and logs.
    - djblets.extensions:
    -  * Extension lists and state are now synchronized across
         threads/processes/servers
    -  * Extension subclasses now must capture all variable arguments
         (*args, **kwargs) and pass them to the parent constructor
    -  * URLHook, admin URLs, and API resource URLs are all now added and removed
         properly when an extension is enabled or disabled
    - djblets.util:
    -  * Cache keys are now bound to the SITE_ROOT, if one is set, to prevent
         leakage across instances
    -  * Added DynamicURLResolver in djblets.util.urlresolvers
    - djblets.util.cache:
    -  * Added normalize_cache_backend
    - djblets.webapi:
    -  * API handler functions that specify allow_unknown=True in
         @webapi_request_fields can now retrieve all extra fields as an
         'extra_fields' argument
    -  * Added unregister_resource_for_model
    - djblets.siteconfig:
    -  * The stored cache_backend setting is now deserialized into
         settings.CACHES['backend']
    -  * Fixed a couple missing imports
    -  * Siteconfig now handles old-style CACHE_BACKEND values and new-style
         CACHES[cachename] dictionaries in the 'cache_backend' setting
    - JavaScript:
    -  * The jQuery dependency has been updated to 1.8.2, and jQuery-UI to 1.8.24
    -  * inlineEditor's animation speed has increased, and is now customizable
         through options.fadeSpeedMS
    -  * inlineEditor now does a better job of matching the parent container's
         bounds
    -  * inlineEditor no longer activates when simply selecting text
    -  * Added a $.fn.retinaGravatar function that, on Retina-capable displays,
         requests a larger gravatar for the given URL specified in an <img/>\
    -  * inlineEditor now supports changing an "enabled" option, allowing editors
         to start out enabled or disabled, or dynamically change that state

 .gitignore          |    1 +
 python-djblets.spec |   48 +++++++++++++++++++++++++++++++++++++++++++++---
 sources             |    2 +-
 3 files changed, 47 insertions(+), 4 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 3925755..2b32c51 100644
--- a/.gitignore
+++ b/.gitignore
@@ -16,3 +16,4 @@ Djblets-0.6.3.tar.gz
 /Djblets-0.7.tar.gz
 /Djblets-0.7.1.tar.gz
 /Djblets-0.7.2.tar.gz
+/Djblets-0.7.6.tar.gz
diff --git a/python-djblets.spec b/python-djblets.spec
index 2ab424c..d04f2eb 100644
--- a/python-djblets.spec
+++ b/python-djblets.spec
@@ -4,7 +4,7 @@
 %endif
 
 Name:           python-djblets
-Version:        0.7.2
+Version:        0.7.6
 Release:        1%{?dist}
 Summary:        A collection of useful classes and functions for Django
 Group:          Applications/Internet
@@ -23,9 +23,9 @@ BuildRequires:  python-devel
 BuildRequires:  python-setuptools
 BuildRequires:  python-django-pipeline >= 1.2.16
 %if 0%{?fedora} > 17
-Requires:       python-django >= 1.4.1
+Requires:       python-django >= 1.4.2
 %else
-Requires:       Django >= 1.4.1
+Requires:       Django >= 1.4.2
 %endif
 Requires:       python-imaging
 Requires:       pytz
@@ -68,6 +68,48 @@ rm -rf $RPM_BUILD_ROOT
 %{python_sitelib}/djblets/
 
 %changelog
+* Thu Dec 13 2012 Stephen Gallagher <sgallagh at redhat.com> - 0.7.6-1
+- New upstream release 0.7.6
+- General:
+-  * Django 1.4.2 is now required
+-  * All admin-related templates have been changed to better fit the admin
+     template structure and styles. This includes siteconfig and logs.
+- djblets.extensions:
+-  * Extension lists and state are now synchronized across
+     threads/processes/servers
+-  * Extension subclasses now must capture all variable arguments
+     (*args, **kwargs) and pass them to the parent constructor
+-  * URLHook, admin URLs, and API resource URLs are all now added and removed
+     properly when an extension is enabled or disabled
+- djblets.util:
+-  * Cache keys are now bound to the SITE_ROOT, if one is set, to prevent
+     leakage across instances
+-  * Added DynamicURLResolver in djblets.util.urlresolvers
+- djblets.util.cache:
+-  * Added normalize_cache_backend
+- djblets.webapi:
+-  * API handler functions that specify allow_unknown=True in
+     @webapi_request_fields can now retrieve all extra fields as an
+     'extra_fields' argument
+-  * Added unregister_resource_for_model
+- djblets.siteconfig:
+-  * The stored cache_backend setting is now deserialized into
+     settings.CACHES['backend']
+-  * Fixed a couple missing imports
+-  * Siteconfig now handles old-style CACHE_BACKEND values and new-style
+     CACHES[cachename] dictionaries in the 'cache_backend' setting
+- JavaScript:
+-  * The jQuery dependency has been updated to 1.8.2, and jQuery-UI to 1.8.24
+-  * inlineEditor's animation speed has increased, and is now customizable
+     through options.fadeSpeedMS
+-  * inlineEditor now does a better job of matching the parent container's
+     bounds
+-  * inlineEditor no longer activates when simply selecting text
+-  * Added a $.fn.retinaGravatar function that, on Retina-capable displays,
+     requests a larger gravatar for the given URL specified in an <img/>\
+-  * inlineEditor now supports changing an "enabled" option, allowing editors
+     to start out enabled or disabled, or dynamically change that state
+
 * Wed Oct 03 2012 Stephen Gallagher <sgallagh at redhat.com> - 0.7.2-1
 - New upstream release 0.7.2
 - Drop upstreamed patch to use system feedparser
diff --git a/sources b/sources
index 12b36de..b5733fa 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-bb52e63150ec0e45600e9fd70e1ad9c6  Djblets-0.7.2.tar.gz
+bd29a98909b4166b036632b40909522a  Djblets-0.7.6.tar.gz


More information about the scm-commits mailing list