Commit d533921d by Timothée Peignier

move changelog away from index

parent 261107ff
.. _ref-backwardsincompatiblechanges:
==============================
Backwards Incompatible Changes
==============================
A list of backwards incompatible changes
Version 1.1.0
=============
* Most of the settings name have change to be prefixed by ``PIPELINE_``.
* CSSTidy isn't the default anymore, YUI Compressor is now the default.
* Filters are now called compressors.
* You can only specify one compressor via ``PIPELINE_CSS_COMPRESSOR`` or
``PIPELINE_JS_COMPRESSOR``
Revision 53
===========
http://code.google.com/p/django-compress/source/detail?r=53
Changed the default media type for CSS to "all" instead of "media,projection".
You can still specify media type with `extra_context`.
Revision 56
===========
http://code.google.com/p/django-compress/source/detail?r=56
*bump_filename completely changed*
bump_filename was broken because a lot of caches does not properly cache files with querystrings.
Therefore it is completely rewritten without any thoughts on backwards compatibility, since it was not possible anyways.
This changeset also introduces a couple of other changes that could potentially break old code.
* The `bump_filename` option was removed from the group settings.
There is no need specifying it for all groups, if you actually use it,
you most likely want to use it on all your compressed files.
* The bump_filename options is replaced by the setting ``PIPELINE_VERSION``,
and is completely ignored.
* The querystring is no longer used to determine a files version, since it was use.
* If ``PIPELINE_VERSION`` is used, you specify the version part of the `output_filename` file with '?'.
This placeholder can be changed with ``PIPELINE_VERSION_PLACEHOLDER``.
E.g.::
'screen': {
'source_filenames': ('css/screen/style.css', 'css/screen/paginator.css', 'css/screen/agenda.css', 'css/screen/weather.css', 'css/screen/gallery.css', ),
'output_filename': 'c/screen.r?.css',
},
* ``PIPELINE_VERSION`` requires ``PIPELINE_AUTO`` to be enabled.
``PIPELINE_AUTO`` is enabled by default, but if you explicitly set it to ``False`` an ``ImproperlyConfiguredError`` exception will be thrown.
``PIPELINE_AUTO`` changes
* The CSS/Javascript files are not checked during Django's initialization anymore.
It was not really useful and did not make sense.
The automatic part is now handled by the templatetags (i.e. what used to be ``PIPELINE_TEMPLATE_AUTO``).
* ``PIPELINE_AUTO`` is replaced by ``PIPELINE_AUTO_TEMPLATE``, and the old behavior
of ``PIPELINE_AUTO`` is removed. This might be really confusing, the :doc:`configuration` should make it clear.
\ No newline at end of file
Changelog
=========
1.1.9
-----
* Play more nicely with staticfiles app via ``PipelineFinderStorage``,
see :doc:`storages`.
1.1.8.1
-------
* Fix bug in asset absolute path rewriting.
1.1.8
-----
* Faster templates tags
* Storage speed up
1.1.7
-----
* Improved windows support. Thanks to Kyle MacFarlane.
* Added Manifesto support.
1.1.0
-----
* Most of the settings name have change to be prefixed by ``PIPELINE_``.
* CSSTidy isn't the default anymore, YUI Compressor is now the default.
* Filters are now called compressors.
* You can only specify one compressor via ``PIPELINE_CSS_COMPRESSOR`` or
``PIPELINE_JS_COMPRESSOR``
......@@ -10,7 +10,7 @@ Configuration and list of available settings for Pipeline
.. note::
If you are updating from django-compress or from previous versions of django-pipeline,
don't forget to read :doc:`backwardsincompatiblechanges`.
don't forget to read :doc:`changelog`.
Specifying files
================
......
......@@ -22,28 +22,7 @@ Table Of Contents
templates
storages
farfutureexpires
backwardsincompatiblechanges
Changelog
=========
1.1.8.1
-------
* Fix bug in asset absolute path rewriting.
1.1.8
-----
* Faster templates tags
* Storage speed up
1.1.7
-----
* Improved windows support. Thanks to Kyle MacFarlane.
* Added Manifesto support.
changelog
Indices and tables
==================
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment