1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
|
.. _changelog:
Change log
==========
Next version
~~~~~~~~~~~~
- Added a ``static_lazy`` helper.
3.1 (2025-02-28)
~~~~~~~~~~~~~~~~
- Made the ``id`` argument to ``JSON`` keyword-only. Also made the ``inline``
argument to ``CSS`` keyword-only.
- Added the ``media`` attribute to ``CSS`` classes.
- Added experimental support for shipping importmaps.
3.0 (2024-12-17)
~~~~~~~~~~~~~~~~
- Rewrite the internals using dataclasses, drop compatibility with Django < 4.2
and Python < 3.10.
- Added a ``CSS`` and ``JSON`` class which can also be used with
``forms.Media``. It's recommended to pass them as JavaScript entries to
``forms.Media(js=[])`` because the ``js`` list doesn't use a media
dictionary.
- Added Django 5.1, Python 3.13.
2.2 (2023-12-12)
~~~~~~~~~~~~~~~~
- Started running the tests periodically to detect breakages early.
- Added Django 5.0, Python 3.12.
- Fixed building with hatchling 1.19. Thanks Michał Górny!
2.1 (2023-06-28)
~~~~~~~~~~~~~~~~
- Added Django 4.1, 4.2 and Python 3.11 to the CI.
- Removed the pytz dependency from the tests.
- Dropped Python < 3.8, Django < 3.2 from the CI.
- Switched to hatchling and ruff.
`2.0`_ (2022-02-10)
~~~~~~~~~~~~~~~~~~~
.. _2.0: https://github.com/matthiask/django-js-asset/compare/1.2...2.0
- Raised the minimum supported versions of Python to 3.6, Django to 2.2.
- Added pre-commit.
- Replaced the explicit configuration of whether ``static()`` should be used or
not with automatic configuration. The ``static`` argument is still accepted
but ignored and will be removed at a later time.
- Added support for boolean attributes when using Django 4.1 or better.
Released as 1.2.1 and 1.2.2:
----------------------------
- Made ``JS()`` objects hashable so that they can be put into sets in
preparation for a possible fix for media ordering in Django #30179.
- Confirmed support for Django 3.0 and 3.1a1.
- Django dropped ``type="text/javascript"`` in 3.1, changed our tests to
pass again.
- Switched from Travis CI to GitHub actions.
- Dropped Django 1.7 from the CI jobs list because it somehow didn't
discover our tests.
- Renamed the main branch to ``main``.
- Added CI testing for Django 3.2.
`1.2`_ (2019-02-08)
~~~~~~~~~~~~~~~~~~~
- Reformatted the code using Black.
- Added equality of ``JS()`` objects to avoid adding the same script
more than once in the same configuration.
- Determine the ``static`` callable at module import time, not each time
a static path is generated.
- Customized the ``repr()`` of ``JS()`` objects.
- Added Python 3.7 and Django 2.2 to the test matrix.
`1.1`_ (2018-04-19)
~~~~~~~~~~~~~~~~~~~
- Added support for skipping ``static()``, mostly useful when adding
external scripts via ``JS()`` (e.g for adding ``defer="defer"``).
- Made the attributes dictionary optional.
`1.0`_ (2018-01-16)
~~~~~~~~~~~~~~~~~~~
- Added an export of the ``js_asset.static()`` helper (which does the
right thing regarding ``django.contrib.staticfiles``)
- Fixed the documentation to not mention internal (and removed) API of
Django's ``Media()`` class.
- Switched to using tox_ for running tests and style checks locally.
- Added more versions of Python and Django to the CI matrix.
`0.1`_ (2017-04-19)
~~~~~~~~~~~~~~~~~~~
- Initial public release extracted from django-content-editor_.
.. _Django: https://www.djangoproject.com/
.. _django-content-editor: https://django-content-editor.readthedocs.io/
.. _tox: https://tox.readthedocs.io/
.. _0.1: https://github.com/matthiask/django-js-asset/commit/e335c79a87
.. _1.0: https://github.com/matthiask/django-js-asset/compare/0.1...1.0
.. _1.1: https://github.com/matthiask/django-js-asset/compare/1.0...1.1
.. _1.2: https://github.com/matthiask/django-js-asset/compare/1.1...1.2
|