chore: bump v0.117 (#832)

* chore: bump v0.117

* refactor: update changelog
This commit is contained in:
Juro Oravec 2024-12-08 09:02:33 +01:00 committed by GitHub
parent 1cd545b986
commit 2f14e8e090
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 26 additions and 1 deletions

View file

@ -1,7 +1,20 @@
# Release notes
## v0.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.
## v0.116
⚠️ Attention ⚠️ - Please update to v0.117 to fix known bugs. See [#791](https://github.com/EmilStenstrom/django-components/issues/791) and [#789](https://github.com/EmilStenstrom/django-components/issues/789) and [#818](https://github.com/EmilStenstrom/django-components/issues/818).
#### Fix
- Fix the order of execution of JS scripts:
@ -47,6 +60,8 @@
## v0.115
⚠️ Attention ⚠️ - Please update to v0.117 to fix known bugs. See [#791](https://github.com/EmilStenstrom/django-components/issues/791) and [#789](https://github.com/EmilStenstrom/django-components/issues/789) and [#818](https://github.com/EmilStenstrom/django-components/issues/818).
#### Fix
- Fix integration with ManifestStaticFilesStorage on Windows by resolving component filepaths
@ -54,6 +69,8 @@
## v0.114
⚠️ Attention ⚠️ - Please update to v0.117 to fix known bugs. See [#791](https://github.com/EmilStenstrom/django-components/issues/791) and [#789](https://github.com/EmilStenstrom/django-components/issues/789) and [#818](https://github.com/EmilStenstrom/django-components/issues/818).
#### Fix
- Prevent rendering Slot tags during fill discovery stage to fix a case when a component inside a slot
@ -61,18 +78,24 @@
## v0.113
⚠️ Attention ⚠️ - Please update to v0.117 to fix known bugs. See [#791](https://github.com/EmilStenstrom/django-components/issues/791) and [#789](https://github.com/EmilStenstrom/django-components/issues/789) and [#818](https://github.com/EmilStenstrom/django-components/issues/818).
#### Fix
- Ensure consistent order of scripts in `Component.Media.js`
## v0.112
⚠️ Attention ⚠️ - Please update to v0.117 to fix known bugs. See [#791](https://github.com/EmilStenstrom/django-components/issues/791) and [#789](https://github.com/EmilStenstrom/django-components/issues/789) and [#818](https://github.com/EmilStenstrom/django-components/issues/818).
#### Fix
- Allow components to accept default fill even if no default slot was encountered during rendering
## v0.111
⚠️ Attention ⚠️ - Please update to v0.117 to fix known bugs. See [#791](https://github.com/EmilStenstrom/django-components/issues/791) and [#789](https://github.com/EmilStenstrom/django-components/issues/789) and [#818](https://github.com/EmilStenstrom/django-components/issues/818).
#### Fix
- Prevent rendering Component tags during fill discovery stage to fix a case when a component inside the default slot
@ -80,6 +103,8 @@
## 🚨📢 v0.110
⚠️ Attention ⚠️ - Please update to v0.117 to fix known bugs. See [#791](https://github.com/EmilStenstrom/django-components/issues/791) and [#789](https://github.com/EmilStenstrom/django-components/issues/789) and [#818](https://github.com/EmilStenstrom/django-components/issues/818).
### General
#### 🚨📢 BREAKING CHANGES

View file

@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "django_components"
version = "0.116"
version = "0.117"
requires-python = ">=3.8, <4.0"
description = "A way to create simple reusable template components in Django."
keywords = ["django", "components", "css", "js", "html"]