Skip to content

Commit

Permalink
chore: bump v2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
winged committed Jun 10, 2024
1 parent 9e99357 commit 15e0022
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
# v2.0.0

## Refactor (Breaking change!)

* refactor: drop django-mptt in favour of django-tree-queries

Django-Tree-Queries works with recursive CTEs (common table expressions) to deal
with hierarchical relationships, generally achieving the same result, but without
the `right`, `left` and `tree_id` fields.

Django-MPTT has been unmaintained for several years, and we're suspecting some
subtle bugs in it that we can't really reproduce or verify right now. Anyway it's
a good time to get rid of it.

Note: Some old migrations needed to be changed, as we cannot refer to
MPTT fields anymore. They were essentially regular foreign keys however,
so this won't break the database.

BREAKING! This breaks if Emeis is used as a Django app directly, and depends on
any of the MPTT API / features. ([`61a30e0`](https://github.com/projectcaluma/emeis/commit/61a30e018736c77c0b815f5c4315f7773c824804))


# v1.3.4 (16 December 2024)

## Fix
Expand Down
2 changes: 1 addition & 1 deletion emeis/emeis_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

__title__ = "emeis"
__description__ = "user management"
__version__ = "1.3.4"
__version__ = "2.0.0"

0 comments on commit 15e0022

Please sign in to comment.