Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-django-compressor for openSUSE:Factory checked in at 2021-06-01 10:35:39 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-django-compressor (Old) and /work/SRC/openSUSE:Factory/.python-django-compressor.new.1898 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-django-compressor" Tue Jun 1 10:35:39 2021 rev:4 rq:895338 version:2.4.1 Changes: -------- --- /work/SRC/openSUSE:Factory/python-django-compressor/python-django-compressor.changes 2020-06-02 14:40:52.267944725 +0200 +++ /work/SRC/openSUSE:Factory/.python-django-compressor.new.1898/python-django-compressor.changes 2021-06-01 10:36:21.264699932 +0200 @@ -1,0 +2,6 @@ +Tue May 25 11:07:13 UTC 2021 - Mark??ta Machov?? <mmach...@suse.com> + +- Update to 2.4.1 + * Raise proper DeprecationWarning for COMPRESS_JS_FILTERS and COMPRESS_CSS_FILTERS + +------------------------------------------------------------------- Old: ---- django_compressor-2.4.tar.gz New: ---- django_compressor-2.4.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-django-compressor.spec ++++++ --- /var/tmp/diff_new_pack.Dy6yNc/_old 2021-06-01 10:36:21.820700879 +0200 +++ /var/tmp/diff_new_pack.Dy6yNc/_new 2021-06-01 10:36:21.820700879 +0200 @@ -1,7 +1,7 @@ # # spec file for package python-django-compressor # -# Copyright (c) 2020 SUSE LLC +# Copyright (c) 2021 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -20,10 +20,10 @@ %define mod_name django_compressor %define skip_python2 1 Name: python-django-compressor -Version: 2.4 +Version: 2.4.1 Release: 0 Summary: Python module to compress linked/inline JavaScript/CSS to cached files -License: MIT AND BSD-3-Clause AND Apache-2.0 +License: Apache-2.0 AND BSD-3-Clause AND MIT URL: https://github.com/django-compressor/django-compressor Source: https://files.pythonhosted.org/packages/source/d/%{mod_name}/%{mod_name}-%{version}.tar.gz BuildRequires: %{python_module Brotli >= 1.0.6} ++++++ django_compressor-2.4.tar.gz -> django_compressor-2.4.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/PKG-INFO new/django_compressor-2.4.1/PKG-INFO --- old/django_compressor-2.4/PKG-INFO 2019-12-31 00:35:18.000000000 +0100 +++ new/django_compressor-2.4.1/PKG-INFO 2021-04-17 20:51:26.319404100 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: django_compressor -Version: 2.4 +Version: 2.4.1 Summary: Compresses linked and inline JavaScript or CSS into single cached files. Home-page: https://django-compressor.readthedocs.io/en/latest/ Author: Jannis Leidel diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/__init__.py new/django_compressor-2.4.1/compressor/__init__.py --- old/django_compressor-2.4/compressor/__init__.py 2019-12-31 00:30:16.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/__init__.py 2021-04-17 20:50:25.000000000 +0200 @@ -1,2 +1,2 @@ # following PEP 386 -__version__ = "2.4" +__version__ = "2.4.1" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/conf.py new/django_compressor-2.4.1/compressor/conf.py --- old/django_compressor-2.4/compressor/conf.py 2019-12-31 00:30:16.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/conf.py 2021-04-17 20:42:11.000000000 +0200 @@ -1,5 +1,6 @@ from __future__ import unicode_literals import os +import warnings from django.conf import settings from django.core.exceptions import ImproperlyConfigured from django.template.utils import InvalidTemplateEngineError @@ -148,7 +149,11 @@ setting_name = '%s_FILTERS' % kind.upper() filters = data.pop(setting_name) if filters is not None: - # filters for this kind are set using <kind>_FILTERS + warnings.warn( + "COMPRESS_{setting_name} setting is deprecated and will " + "be removed in django-compressor 3.0. " + "Use COMPRESS_FILTERS instead." + .format(setting_name=setting_name), DeprecationWarning) if kind in data['FILTERS']: raise ImproperlyConfigured( "The setting {kind_setting} " diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/css/19dab3491062.css new/django_compressor-2.4.1/compressor/tests/static/CACHE/css/19dab3491062.css --- old/django_compressor-2.4/compressor/tests/static/CACHE/css/19dab3491062.css 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/css/19dab3491062.css 2021-04-17 20:44:09.000000000 +0200 @@ -0,0 +1 @@ +p { border:5px solid green;} \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/css/44f5d1102ce5.css new/django_compressor-2.4.1/compressor/tests/static/CACHE/css/44f5d1102ce5.css --- old/django_compressor-2.4/compressor/tests/static/CACHE/css/44f5d1102ce5.css 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/css/44f5d1102ce5.css 2021-04-17 20:44:10.000000000 +0200 @@ -0,0 +1 @@ +h1 { border:5px solid green;} \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/css/58a8c0714e59.css new/django_compressor-2.4.1/compressor/tests/static/CACHE/css/58a8c0714e59.css --- old/django_compressor-2.4/compressor/tests/static/CACHE/css/58a8c0714e59.css 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/css/58a8c0714e59.css 2021-04-17 20:44:09.000000000 +0200 @@ -0,0 +1,3 @@ +body { background:#990; } +p { border:5px solid green;} +body { color:#fff; } \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/css/64f74be417da.css new/django_compressor-2.4.1/compressor/tests/static/CACHE/css/64f74be417da.css --- old/django_compressor-2.4/compressor/tests/static/CACHE/css/64f74be417da.css 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/css/64f74be417da.css 2021-04-17 20:44:09.000000000 +0200 @@ -0,0 +1 @@ +body { background:#990; } \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/css/a15af50e715b.css new/django_compressor-2.4.1/compressor/tests/static/CACHE/css/a15af50e715b.css --- old/django_compressor-2.4/compressor/tests/static/CACHE/css/a15af50e715b.css 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/css/a15af50e715b.css 2021-04-17 20:44:10.000000000 +0200 @@ -0,0 +1 @@ +p { border:10px solid red;} \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/css/block_name.393dbcddb48e.css new/django_compressor-2.4.1/compressor/tests/static/CACHE/css/block_name.393dbcddb48e.css --- old/django_compressor-2.4/compressor/tests/static/CACHE/css/block_name.393dbcddb48e.css 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/css/block_name.393dbcddb48e.css 2021-04-17 20:44:10.000000000 +0200 @@ -0,0 +1,3 @@ +body { background:#990; } +p { border:5px solid blue;} +body { color:#fff; } \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/css/cd0846966de0.css new/django_compressor-2.4.1/compressor/tests/static/CACHE/css/cd0846966de0.css --- old/django_compressor-2.4/compressor/tests/static/CACHE/css/cd0846966de0.css 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/css/cd0846966de0.css 2021-04-17 20:44:09.000000000 +0200 @@ -0,0 +1 @@ +body { color:#fff; } \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/css/output.20f9b535162f.css new/django_compressor-2.4.1/compressor/tests/static/CACHE/css/output.20f9b535162f.css --- old/django_compressor-2.4/compressor/tests/static/CACHE/css/output.20f9b535162f.css 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/css/output.20f9b535162f.css 2021-04-17 20:44:09.000000000 +0200 @@ -0,0 +1,2 @@ +body { background:#990; } +body { color:#fff; } \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/css/output.2db2b4d36380.css new/django_compressor-2.4.1/compressor/tests/static/CACHE/css/output.2db2b4d36380.css --- old/django_compressor-2.4/compressor/tests/static/CACHE/css/output.2db2b4d36380.css 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/css/output.2db2b4d36380.css 2021-04-17 20:45:30.000000000 +0200 @@ -0,0 +1,5 @@ + + body { + background: purple; + } + \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/css/output.4263023f49d6.css new/django_compressor-2.4.1/compressor/tests/static/CACHE/css/output.4263023f49d6.css --- old/django_compressor-2.4/compressor/tests/static/CACHE/css/output.4263023f49d6.css 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/css/output.4263023f49d6.css 2021-04-17 20:44:08.000000000 +0200 @@ -0,0 +1,2 @@ +.byline:before { content: " ??? "; } +p { border:5px solid green;} \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/css/output.58a8c0714e59.css new/django_compressor-2.4.1/compressor/tests/static/CACHE/css/output.58a8c0714e59.css --- old/django_compressor-2.4/compressor/tests/static/CACHE/css/output.58a8c0714e59.css 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/css/output.58a8c0714e59.css 2021-04-17 20:44:08.000000000 +0200 @@ -0,0 +1,3 @@ +body { background:#990; } +p { border:5px solid green;} +body { color:#fff; } \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/css/output.7ff52cb38987.css new/django_compressor-2.4.1/compressor/tests/static/CACHE/css/output.7ff52cb38987.css --- old/django_compressor-2.4/compressor/tests/static/CACHE/css/output.7ff52cb38987.css 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/css/output.7ff52cb38987.css 2021-04-17 20:45:31.000000000 +0200 @@ -0,0 +1,5 @@ + + body { + background: orange; + } + \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/css/output.aca9bcd16bee.css new/django_compressor-2.4.1/compressor/tests/static/CACHE/css/output.aca9bcd16bee.css --- old/django_compressor-2.4/compressor/tests/static/CACHE/css/output.aca9bcd16bee.css 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/css/output.aca9bcd16bee.css 2021-04-17 20:44:09.000000000 +0200 @@ -0,0 +1,3 @@ +body { background:#990; } +p { border:5px solid white;} +body { color:#fff; } \ No newline at end of file Binary files old/django_compressor-2.4/compressor/tests/static/CACHE/css/output.aca9bcd16bee.css.gz and new/django_compressor-2.4.1/compressor/tests/static/CACHE/css/output.aca9bcd16bee.css.gz differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/css/output.c836c9caed5c.css new/django_compressor-2.4.1/compressor/tests/static/CACHE/css/output.c836c9caed5c.css --- old/django_compressor-2.4/compressor/tests/static/CACHE/css/output.c836c9caed5c.css 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/css/output.c836c9caed5c.css 2021-04-17 20:44:08.000000000 +0200 @@ -0,0 +1 @@ +/* ?????????????? ?????????? */ \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/css/relative_url.376db5682982.css new/django_compressor-2.4.1/compressor/tests/static/CACHE/css/relative_url.376db5682982.css --- old/django_compressor-2.4/compressor/tests/static/CACHE/css/relative_url.376db5682982.css 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/css/relative_url.376db5682982.css 2021-04-17 20:45:31.000000000 +0200 @@ -0,0 +1 @@ +p { background: url('/static/img/python.png?ccb38978f900'); } \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/css/relative_url.e8602322bfa6.css new/django_compressor-2.4.1/compressor/tests/static/CACHE/css/relative_url.e8602322bfa6.css --- old/django_compressor-2.4/compressor/tests/static/CACHE/css/relative_url.e8602322bfa6.css 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/css/relative_url.e8602322bfa6.css 2021-04-17 20:45:31.000000000 +0200 @@ -0,0 +1 @@ +p { background: url('../img/python.png'); } \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/css/test.222f958fb191.css new/django_compressor-2.4.1/compressor/tests/static/CACHE/css/test.222f958fb191.css --- old/django_compressor-2.4/compressor/tests/static/CACHE/css/test.222f958fb191.css 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/css/test.222f958fb191.css 2021-04-17 20:45:31.000000000 +0200 @@ -0,0 +1 @@ +p { color: url('/static/images/image.gif') } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/js/29e69fc86958.js new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/29e69fc86958.js --- old/django_compressor-2.4/compressor/tests/static/CACHE/js/29e69fc86958.js 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/29e69fc86958.js 2021-04-17 20:44:10.000000000 +0200 @@ -0,0 +1 @@ +pollos={}; \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/js/302673cb0d9e.js new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/302673cb0d9e.js --- old/django_compressor-2.4/compressor/tests/static/CACHE/js/302673cb0d9e.js 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/302673cb0d9e.js 2021-04-17 20:44:10.000000000 +0200 @@ -0,0 +1 @@ +obj={};;pollos={}; \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/js/8a0fed36c317.js new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/8a0fed36c317.js --- old/django_compressor-2.4/compressor/tests/static/CACHE/js/8a0fed36c317.js 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/8a0fed36c317.js 2021-04-17 20:44:09.000000000 +0200 @@ -0,0 +1 @@ +obj={};;obj.value="value";; \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/js/d5474411b7a5.js new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/d5474411b7a5.js --- old/django_compressor-2.4/compressor/tests/static/CACHE/js/d5474411b7a5.js 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/d5474411b7a5.js 2021-04-17 20:44:10.000000000 +0200 @@ -0,0 +1 @@ +hermanos={}; \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/js/e1cc01dd11ac.js new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/e1cc01dd11ac.js --- old/django_compressor-2.4/compressor/tests/static/CACHE/js/e1cc01dd11ac.js 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/e1cc01dd11ac.js 2021-04-17 20:44:10.000000000 +0200 @@ -0,0 +1 @@ +obj={};; \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/js/ed0dff257832.js new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/ed0dff257832.js --- old/django_compressor-2.4/compressor/tests/static/CACHE/js/ed0dff257832.js 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/ed0dff257832.js 2021-04-17 20:44:10.000000000 +0200 @@ -0,0 +1 @@ +obj.value="value";; \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/js/one.4b3570601b8c.js new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/one.4b3570601b8c.js --- old/django_compressor-2.4/compressor/tests/static/CACHE/js/one.4b3570601b8c.js 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/one.4b3570601b8c.js 2021-04-17 20:45:31.000000000 +0200 @@ -0,0 +1,2 @@ +# this is a comment. + diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/js/one.8ab93aace8fa.js new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/one.8ab93aace8fa.js --- old/django_compressor-2.4/compressor/tests/static/CACHE/js/one.8ab93aace8fa.js 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/one.8ab93aace8fa.js 2021-04-17 20:45:31.000000000 +0200 @@ -0,0 +1 @@ +obj = {}; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.0241107e9a9a.js new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.0241107e9a9a.js --- old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.0241107e9a9a.js 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.0241107e9a9a.js 2021-04-17 20:45:31.000000000 +0200 @@ -0,0 +1 @@ +alert("Hello world from django template");; \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.055f88f4751f.js new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.055f88f4751f.js --- old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.055f88f4751f.js 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.055f88f4751f.js 2021-04-17 20:45:30.000000000 +0200 @@ -0,0 +1 @@ +alert("test using multiple inheritance and block.super");;alert("this alert shouldn't be alone!");; \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.06a98ccfd380.js new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.06a98ccfd380.js --- old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.06a98ccfd380.js 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.06a98ccfd380.js 2021-04-17 20:44:08.000000000 +0200 @@ -0,0 +1 @@ +var test_value="??berstr??ng";;var test_value="???";; \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.2bb88185b4f5.js new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.2bb88185b4f5.js --- old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.2bb88185b4f5.js 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.2bb88185b4f5.js 2021-04-17 20:45:30.000000000 +0200 @@ -0,0 +1 @@ +alert("testtemplatetag");; \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.55b3123e884c.js new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.55b3123e884c.js --- old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.55b3123e884c.js 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.55b3123e884c.js 2021-04-17 20:45:31.000000000 +0200 @@ -0,0 +1 @@ +alert("OK 2!");; \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.567bb77b13db.js new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.567bb77b13db.js --- old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.567bb77b13db.js 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.567bb77b13db.js 2021-04-17 20:45:30.000000000 +0200 @@ -0,0 +1 @@ +var ok="ok";; \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.5694ca83dd14.js new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.5694ca83dd14.js --- old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.5694ca83dd14.js 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.5694ca83dd14.js 2021-04-17 20:45:31.000000000 +0200 @@ -0,0 +1 @@ +alert("Hello world from jinja2 template");; \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.6ac9e4b29feb.js new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.6ac9e4b29feb.js --- old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.6ac9e4b29feb.js 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.6ac9e4b29feb.js 2021-04-17 20:45:31.000000000 +0200 @@ -0,0 +1 @@ +alert("OK 3!");;alert("this alert shouldn't be alone!");; \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.7219642b8ab4.js new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.7219642b8ab4.js --- old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.7219642b8ab4.js 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.7219642b8ab4.js 2021-04-17 20:45:30.000000000 +0200 @@ -0,0 +1 @@ +var not_ok;; \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.76a82cfab9ab.js new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.76a82cfab9ab.js --- old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.76a82cfab9ab.js 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.76a82cfab9ab.js 2021-04-17 20:45:30.000000000 +0200 @@ -0,0 +1 @@ +alert("OK!");;obj={};;var test_value="???";; \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.817b5defb197.js new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.817b5defb197.js --- old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.817b5defb197.js 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.817b5defb197.js 2021-04-17 20:45:30.000000000 +0200 @@ -0,0 +1 @@ +alert("test using block.super");;alert("this alert shouldn't be alone!");; \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.822ac7501287.js new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.822ac7501287.js --- old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.822ac7501287.js 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.822ac7501287.js 2021-04-17 20:45:30.000000000 +0200 @@ -0,0 +1 @@ +alert("Basic test");; \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.8a0fed36c317.js new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.8a0fed36c317.js --- old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.8a0fed36c317.js 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.8a0fed36c317.js 2021-04-17 20:44:08.000000000 +0200 @@ -0,0 +1 @@ +obj={};;obj.value="value";; \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.8b4a7452e1c5.js new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.8b4a7452e1c5.js --- old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.8b4a7452e1c5.js 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.8b4a7452e1c5.js 2021-04-17 20:45:31.000000000 +0200 @@ -0,0 +1 @@ +alert("OK 1!");; \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.8c00f1cf1e0a.js new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.8c00f1cf1e0a.js --- old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.8c00f1cf1e0a.js 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.8c00f1cf1e0a.js 2021-04-17 20:44:08.000000000 +0200 @@ -0,0 +1 @@ +var test_value="???";;var test_value="???";; \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.9a7f06880ce3.js new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.9a7f06880ce3.js --- old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.9a7f06880ce3.js 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.9a7f06880ce3.js 2021-04-17 20:45:30.000000000 +0200 @@ -0,0 +1 @@ +a=1; \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.9cecd41a505f.js new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.9cecd41a505f.js --- old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.9cecd41a505f.js 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.9cecd41a505f.js 2021-04-17 20:45:30.000000000 +0200 @@ -0,0 +1 @@ +alert("test using multiple inheritance and block.super");;alert("this alert should be included");; \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.a3275743dc69.js new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.a3275743dc69.js --- old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.a3275743dc69.js 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.a3275743dc69.js 2021-04-17 20:45:30.000000000 +0200 @@ -0,0 +1 @@ +alert("red");; \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.b0bfc3754fd4.js new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.b0bfc3754fd4.js --- old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.b0bfc3754fd4.js 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.b0bfc3754fd4.js 2021-04-17 20:45:30.000000000 +0200 @@ -0,0 +1 @@ +STATIC_URL='/custom/static/url/';; \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.b39975a8f6ea.js new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.b39975a8f6ea.js --- old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.b39975a8f6ea.js 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.b39975a8f6ea.js 2021-04-17 20:45:31.000000000 +0200 @@ -0,0 +1 @@ +alert("OK 1!");;alert("this alert shouldn't be alone!");; \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.b8376aad1357.js new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.b8376aad1357.js --- old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.b8376aad1357.js 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.b8376aad1357.js 2021-04-17 20:45:31.000000000 +0200 @@ -0,0 +1 @@ +alert("test using template extension passed in variable parent=base.html");; \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.be0b1eade28b.js new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.be0b1eade28b.js --- old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.be0b1eade28b.js 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.be0b1eade28b.js 2021-04-17 20:45:31.000000000 +0200 @@ -0,0 +1 @@ +alert('amazing');;obj={};; \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.bfc63829cc58.js new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.bfc63829cc58.js --- old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.bfc63829cc58.js 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.bfc63829cc58.js 2021-04-17 20:45:31.000000000 +0200 @@ -0,0 +1 @@ +alert("OK 3!");; \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.bfcec76e0f28.js new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.bfcec76e0f28.js --- old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.bfcec76e0f28.js 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.bfcec76e0f28.js 2021-04-17 20:45:30.000000000 +0200 @@ -0,0 +1 @@ +alert("this alert should be alone.");; \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.c6bf81bca7ad.js new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.c6bf81bca7ad.js --- old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.c6bf81bca7ad.js 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.c6bf81bca7ad.js 2021-04-17 20:45:30.000000000 +0200 @@ -0,0 +1 @@ +alert("OK!");; \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.c877c436363a.js new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.c877c436363a.js --- old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.c877c436363a.js 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.c877c436363a.js 2021-04-17 20:45:31.000000000 +0200 @@ -0,0 +1 @@ +alert("test using template extension passed in variable parent=base2.html");; \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.cee48db7cedc.js new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.cee48db7cedc.js --- old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.cee48db7cedc.js 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.cee48db7cedc.js 2021-04-17 20:45:31.000000000 +0200 @@ -0,0 +1 @@ +alert("test using template extension passed in variable parent=base1.html");; \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.d3f749e83c81.js new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.d3f749e83c81.js --- old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.d3f749e83c81.js 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.d3f749e83c81.js 2021-04-17 20:45:30.000000000 +0200 @@ -0,0 +1 @@ +alert("test using multiple inheritance and block.super");;alert("this alert should be included");;alert("this alert shouldn't be alone!");; \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.dd79e1bd1527.js new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.dd79e1bd1527.js --- old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.dd79e1bd1527.js 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.dd79e1bd1527.js 2021-04-17 20:45:31.000000000 +0200 @@ -0,0 +1 @@ +alert("OK!");;alert("this alert shouldn't be alone!");; \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.e4d043b4cde4.js new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.e4d043b4cde4.js --- old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.e4d043b4cde4.js 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.e4d043b4cde4.js 2021-04-17 20:45:30.000000000 +0200 @@ -0,0 +1 @@ +alert('test');; \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.e4e9263fa4c0.js new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.e4e9263fa4c0.js --- old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.e4e9263fa4c0.js 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.e4e9263fa4c0.js 2021-04-17 20:45:30.000000000 +0200 @@ -0,0 +1 @@ +alert("test using multiple inheritance and block.super");; \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.e682d84f6b17.js new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.e682d84f6b17.js --- old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.e682d84f6b17.js 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.e682d84f6b17.js 2021-04-17 20:44:09.000000000 +0200 @@ -0,0 +1 @@ +obj={};;pollos={};hermanos={}; \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.ec862f0ff42c.js new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.ec862f0ff42c.js --- old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.ec862f0ff42c.js 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.ec862f0ff42c.js 2021-04-17 20:44:09.000000000 +0200 @@ -0,0 +1 @@ +#this is a comment.; \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.ed565a1d262f.js new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.ed565a1d262f.js --- old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.ed565a1d262f.js 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.ed565a1d262f.js 2021-04-17 20:45:31.000000000 +0200 @@ -0,0 +1 @@ +alert("OK 2!");;alert("this alert shouldn't be alone!");; \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.eeabdac29232.js new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.eeabdac29232.js --- old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.eeabdac29232.js 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.eeabdac29232.js 2021-04-17 20:45:31.000000000 +0200 @@ -0,0 +1 @@ +alert("Basic test, should pass in spite of errors in other templates");; \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.fb4a0d84e914.js new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.fb4a0d84e914.js --- old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.fb4a0d84e914.js 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.fb4a0d84e914.js 2021-04-17 20:44:10.000000000 +0200 @@ -0,0 +1 @@ +#this is a comment.;#this too is a comment.; \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.ffc39dec05fd.js new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.ffc39dec05fd.js --- old/django_compressor-2.4/compressor/tests/static/CACHE/js/output.ffc39dec05fd.js 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output.ffc39dec05fd.js 2021-04-17 20:44:10.000000000 +0200 @@ -0,0 +1 @@ +var tmpl="{% if x == 3 %}x IS 3{% endif %}"; \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/CACHE/js/output_name.822ac7501287.js new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output_name.822ac7501287.js --- old/django_compressor-2.4/compressor/tests/static/CACHE/js/output_name.822ac7501287.js 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/CACHE/js/output_name.822ac7501287.js 2021-04-17 20:45:30.000000000 +0200 @@ -0,0 +1 @@ +alert("Basic test");; \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/custom/js/8a0fed36c317.js new/django_compressor-2.4.1/compressor/tests/static/custom/js/8a0fed36c317.js --- old/django_compressor-2.4/compressor/tests/static/custom/js/8a0fed36c317.js 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/custom/js/8a0fed36c317.js 2021-04-17 20:44:10.000000000 +0200 @@ -0,0 +1 @@ +obj={};;obj.value="value";; \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/custom/nested/js/8a0fed36c317.js new/django_compressor-2.4.1/compressor/tests/static/custom/nested/js/8a0fed36c317.js --- old/django_compressor-2.4/compressor/tests/static/custom/nested/js/8a0fed36c317.js 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/custom/nested/js/8a0fed36c317.js 2021-04-17 20:44:10.000000000 +0200 @@ -0,0 +1 @@ +obj={};;obj.value="value";; \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/compressor/tests/static/test.txt new/django_compressor-2.4.1/compressor/tests/static/test.txt --- old/django_compressor-2.4/compressor/tests/static/test.txt 1970-01-01 01:00:00.000000000 +0100 +++ new/django_compressor-2.4.1/compressor/tests/static/test.txt 2021-04-17 20:45:31.000000000 +0200 @@ -0,0 +1 @@ +yeah yeah \ No newline at end of file Binary files old/django_compressor-2.4/compressor/tests/static/test.txt.br and new/django_compressor-2.4.1/compressor/tests/static/test.txt.br differ Binary files old/django_compressor-2.4/compressor/tests/static/test.txt.gz and new/django_compressor-2.4.1/compressor/tests/static/test.txt.gz differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/django_compressor.egg-info/PKG-INFO new/django_compressor-2.4.1/django_compressor.egg-info/PKG-INFO --- old/django_compressor-2.4/django_compressor.egg-info/PKG-INFO 2019-12-31 00:35:18.000000000 +0100 +++ new/django_compressor-2.4.1/django_compressor.egg-info/PKG-INFO 2021-04-17 20:51:26.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: django-compressor -Version: 2.4 +Version: 2.4.1 Summary: Compresses linked and inline JavaScript or CSS into single cached files. Home-page: https://django-compressor.readthedocs.io/en/latest/ Author: Jannis Leidel diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/django_compressor.egg-info/SOURCES.txt new/django_compressor-2.4.1/django_compressor.egg-info/SOURCES.txt --- old/django_compressor-2.4/django_compressor.egg-info/SOURCES.txt 2019-12-31 00:35:18.000000000 +0100 +++ new/django_compressor-2.4.1/django_compressor.egg-info/SOURCES.txt 2021-04-17 20:51:26.000000000 +0200 @@ -68,6 +68,73 @@ compressor/tests/test_storages.py compressor/tests/test_templatetags.py compressor/tests/test_utils.py +compressor/tests/static/test.txt +compressor/tests/static/test.txt.br +compressor/tests/static/test.txt.gz +compressor/tests/static/CACHE/css/19dab3491062.css +compressor/tests/static/CACHE/css/44f5d1102ce5.css +compressor/tests/static/CACHE/css/58a8c0714e59.css +compressor/tests/static/CACHE/css/64f74be417da.css +compressor/tests/static/CACHE/css/a15af50e715b.css +compressor/tests/static/CACHE/css/block_name.393dbcddb48e.css +compressor/tests/static/CACHE/css/cd0846966de0.css +compressor/tests/static/CACHE/css/output.20f9b535162f.css +compressor/tests/static/CACHE/css/output.2db2b4d36380.css +compressor/tests/static/CACHE/css/output.4263023f49d6.css +compressor/tests/static/CACHE/css/output.58a8c0714e59.css +compressor/tests/static/CACHE/css/output.7ff52cb38987.css +compressor/tests/static/CACHE/css/output.aca9bcd16bee.css +compressor/tests/static/CACHE/css/output.aca9bcd16bee.css.gz +compressor/tests/static/CACHE/css/output.c836c9caed5c.css +compressor/tests/static/CACHE/css/relative_url.376db5682982.css +compressor/tests/static/CACHE/css/relative_url.e8602322bfa6.css +compressor/tests/static/CACHE/css/test.222f958fb191.css +compressor/tests/static/CACHE/js/29e69fc86958.js +compressor/tests/static/CACHE/js/302673cb0d9e.js +compressor/tests/static/CACHE/js/8a0fed36c317.js +compressor/tests/static/CACHE/js/d5474411b7a5.js +compressor/tests/static/CACHE/js/e1cc01dd11ac.js +compressor/tests/static/CACHE/js/ed0dff257832.js +compressor/tests/static/CACHE/js/one.4b3570601b8c.js +compressor/tests/static/CACHE/js/one.8ab93aace8fa.js +compressor/tests/static/CACHE/js/output.0241107e9a9a.js +compressor/tests/static/CACHE/js/output.055f88f4751f.js +compressor/tests/static/CACHE/js/output.06a98ccfd380.js +compressor/tests/static/CACHE/js/output.2bb88185b4f5.js +compressor/tests/static/CACHE/js/output.55b3123e884c.js +compressor/tests/static/CACHE/js/output.567bb77b13db.js +compressor/tests/static/CACHE/js/output.5694ca83dd14.js +compressor/tests/static/CACHE/js/output.6ac9e4b29feb.js +compressor/tests/static/CACHE/js/output.7219642b8ab4.js +compressor/tests/static/CACHE/js/output.76a82cfab9ab.js +compressor/tests/static/CACHE/js/output.817b5defb197.js +compressor/tests/static/CACHE/js/output.822ac7501287.js +compressor/tests/static/CACHE/js/output.8a0fed36c317.js +compressor/tests/static/CACHE/js/output.8b4a7452e1c5.js +compressor/tests/static/CACHE/js/output.8c00f1cf1e0a.js +compressor/tests/static/CACHE/js/output.9a7f06880ce3.js +compressor/tests/static/CACHE/js/output.9cecd41a505f.js +compressor/tests/static/CACHE/js/output.a3275743dc69.js +compressor/tests/static/CACHE/js/output.b0bfc3754fd4.js +compressor/tests/static/CACHE/js/output.b39975a8f6ea.js +compressor/tests/static/CACHE/js/output.b8376aad1357.js +compressor/tests/static/CACHE/js/output.be0b1eade28b.js +compressor/tests/static/CACHE/js/output.bfc63829cc58.js +compressor/tests/static/CACHE/js/output.bfcec76e0f28.js +compressor/tests/static/CACHE/js/output.c6bf81bca7ad.js +compressor/tests/static/CACHE/js/output.c877c436363a.js +compressor/tests/static/CACHE/js/output.cee48db7cedc.js +compressor/tests/static/CACHE/js/output.d3f749e83c81.js +compressor/tests/static/CACHE/js/output.dd79e1bd1527.js +compressor/tests/static/CACHE/js/output.e4d043b4cde4.js +compressor/tests/static/CACHE/js/output.e4e9263fa4c0.js +compressor/tests/static/CACHE/js/output.e682d84f6b17.js +compressor/tests/static/CACHE/js/output.ec862f0ff42c.js +compressor/tests/static/CACHE/js/output.ed565a1d262f.js +compressor/tests/static/CACHE/js/output.eeabdac29232.js +compressor/tests/static/CACHE/js/output.fb4a0d84e914.js +compressor/tests/static/CACHE/js/output.ffc39dec05fd.js +compressor/tests/static/CACHE/js/output_name.822ac7501287.js compressor/tests/static/css/datauri.css compressor/tests/static/css/filename with spaces.css compressor/tests/static/css/nonasc.css @@ -79,6 +146,8 @@ compressor/tests/static/css/url/test.css compressor/tests/static/css/url/url1.css compressor/tests/static/css/url/2/url2.css +compressor/tests/static/custom/js/8a0fed36c317.js +compressor/tests/static/custom/nested/js/8a0fed36c317.js compressor/tests/static/img/add with spaces.png compressor/tests/static/img/add.png compressor/tests/static/img/python.png diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_compressor-2.4/docs/changelog.txt new/django_compressor-2.4.1/docs/changelog.txt --- old/django_compressor-2.4/docs/changelog.txt 2019-12-31 00:30:16.000000000 +0100 +++ new/django_compressor-2.4.1/docs/changelog.txt 2021-04-17 20:42:11.000000000 +0200 @@ -1,7 +1,15 @@ Changelog ========= -v2.4 (2019-12-02) +v2.4.1 (2021-04-17) +----------------- + +`Full Changelog <https://github.com/django-compressor/django-compressor/compare/2.4...2.4.1>`_ + +- Raise proper ``DeprecationWarning`` for ``COMPRESS_FILTERS`` and ``COMPRESS_CSS_FILTERS`` + + +v2.4 (2019-12-31) ----------------- `Full Changelog <https://github.com/django-compressor/django-compressor/compare/2.3...2.4>`_