mirror of
https://github.com/jazzband/django-categories.git
synced 2026-03-16 22:30:24 +00:00
add breaking changes message to CHANGELOG.md
This commit is contained in:
parent
7aeb1aa124
commit
c2a5dc9686
1 changed files with 11 additions and 0 deletions
11
CHANGELOG.md
11
CHANGELOG.md
|
|
@ -1,5 +1,16 @@
|
|||
# Changelog
|
||||
|
||||
## 2.0.0 (2022-09-xx)
|
||||
|
||||
### WARNING
|
||||
|
||||
**Breaking change:** Starting with version the 2.0.0 the category slugs are unique.
|
||||
While this brings big advantage for simplified category addressing, it can break projects that are containing categories with duplicated slugs.
|
||||
If your database contains colliding slugs, they will be automatically renamed by the migration.
|
||||
Three categories with slugs ``foo`` will be renamed to ``foo``, ``foo-1``, ``foo-2``.
|
||||
If this causes problems in your project, you can rename the categories yourself before running the migration.
|
||||
|
||||
|
||||
## 1.9.4 (2024-04-18)
|
||||
|
||||
- Remove dependency on unicode-slugify, use Django builtin function
|
||||
|
|
|
|||
Loading…
Reference in a new issue