Django-components

Latest version: v0.135

Safety actively analyzes 724051 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 4 of 9

0.117

Fix

- The HTML parser no longer erronously inserts `<html><head><body>` on some occasions, and
no longer tries to close unclosed HTML tags.

Refactor

- Replaced [Selectolax](https://github.com/rushter/selectolax) with [BeautifulSoup4](https://www.crummy.com/software/BeautifulSoup/bs4/doc/) as project dependencies.

0.116

⚠️ Attention ⚠️ - Please update to v0.117 to fix known bugs. See [791](https://github.com/django-components/django-components/issues/791) and [#789](https://github.com/django-components/django-components/issues/789) and [#818](https://github.com/django-components/django-components/issues/818).

Fix

- Fix the order of execution of JS scripts:
- Scripts in `Component.Media.js` are executed in the order they are defined
- Scripts in `Component.js` are executed AFTER `Media.js` scripts

- Fix compatibility with AlpineJS
- Scripts in `Component.Media.js` are now again inserted as `<script>` tags
- By default, `Component.Media.js` are inserted as synchronous `<script>` tags,
so the AlpineJS components registered in the `Media.js` scripts will now again
run BEFORE the core AlpineJS script.

AlpineJS can be configured like so:

Option 1 - AlpineJS loaded in `<head>` with `defer` attribute:
html
<html>
<head>
{% component_css_dependencies %}
<script defer src="https://unpkg.com/alpinejs"></script>
</head>
<body>
{% component 'my_alpine_component' / %}
{% component_js_dependencies %}
</body>
</html>


Option 2 - AlpineJS loaded in `<body>` AFTER `{% component_js_depenencies %}`:
html
<html>
<head>
{% component_css_dependencies %}
</head>
<body>
{% component 'my_alpine_component' / %}
{% component_js_dependencies %}

<script src="https://unpkg.com/alpinejs"></script>
</body>
</html>

0.115

⚠️ Attention ⚠️ - Please update to v0.117 to fix known bugs. See [791](https://github.com/django-components/django-components/issues/791) and [#789](https://github.com/django-components/django-components/issues/789) and [#818](https://github.com/django-components/django-components/issues/818).

Fix

- Fix integration with ManifestStaticFilesStorage on Windows by resolving component filepaths
(like `Component.template_name`) to POSIX paths.

0.114

⚠️ Attention ⚠️ - Please update to v0.117 to fix known bugs. See [791](https://github.com/django-components/django-components/issues/791) and [#789](https://github.com/django-components/django-components/issues/789) and [#818](https://github.com/django-components/django-components/issues/818).

Fix

- Prevent rendering Slot tags during fill discovery stage to fix a case when a component inside a slot
fill tried to access provided data too early.

0.113

⚠️ Attention ⚠️ - Please update to v0.117 to fix known bugs. See [791](https://github.com/django-components/django-components/issues/791) and [#789](https://github.com/django-components/django-components/issues/789) and [#818](https://github.com/django-components/django-components/issues/818).

Fix

- Ensure consistent order of scripts in `Component.Media.js`

0.112

⚠️ Attention ⚠️ - Please update to v0.117 to fix known bugs. See [791](https://github.com/django-components/django-components/issues/791) and [#789](https://github.com/django-components/django-components/issues/789) and [#818](https://github.com/django-components/django-components/issues/818).

Fix

- Allow components to accept default fill even if no default slot was encountered during rendering

Page 4 of 9

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.