Skip to content

Commit 99925fb

Browse files
authored
feat: Upgrade to Tiptap 3 (#149)
1 parent dcb0d6c commit 99925fb

File tree

46 files changed

+5588
-5013
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+5588
-5013
lines changed

.github/workflows/publish-to-live-pypi.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,11 @@ jobs:
2525
run: >-
2626
python -m
2727
pip install
28-
build
28+
build django
2929
--user
30+
- name: Compile messages
31+
run: django-admin compilemessages
32+
working-directory: djangocms_text
3033
- uses: actions/setup-node@v6
3134
with:
3235
node-version-file: '.nvmrc'

.github/workflows/publish-to-test-pypi.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,11 @@ jobs:
2525
run: >-
2626
python -m
2727
pip install
28-
build
28+
build django
2929
--user
30+
- name: Compile messages
31+
run: django-admin compilemessages
32+
working-directory: djangocms_text
3033
- uses: actions/setup-node@v6
3134
with:
3235
node-version-file: '.nvmrc'

CHANGELOG.rst

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,24 @@
22
Changelog
33
=========
44

5+
0.9.4 (15-03-2026)
6+
==================
7+
8+
* feat: Upgrade to Tiptap 3 by @fsbraun in https://github.com/django-cms/djangocms-text/pull/149
9+
* feat: Unregister unused extensions (keeps html clean) by @fsbraun in https://github.com/django-cms/djangocms-text/pull/154
10+
* fix: Inline editing crashed with CKEditor4 by @fsbraun in https://github.com/django-cms/djangocms-text/pull/148
11+
* fix: Stacked inline did not initialize RTE when adding an item by @fsbraun in https://github.com/django-cms/djangocms-text/pull/150
12+
* fix: Defining `TEXT_EDITOR_SETTINGS` in settings.py removed all default settings by @fsbraun in https://github.com/django-cms/djangocms-text/pull/152
13+
* fix: Add test for pasting markdown and admin editor initialization by @fsbraun in https://github.com/django-cms/djangocms-text/pull/153
14+
* fix: Remove unused CKEditor 4 sample files by @fsbraun in https://github.com/django-cms/djangocms-text/pull/155
15+
* chore: Add `THIRD_PARTY_LICENSES.txt` to published package by @fsbraun in https://github.com/django-cms/djangocms-text/pull/151
16+
* chore: Update locales
17+
* docs: fix broken link about placeholder config by @dnlzrgz in https://github.com/django-cms/djangocms-text/pull/145
18+
19+
**New Contributors**
20+
21+
* @dnlzrgz made their first contribution in https://github.com/django-cms/djangocms-text/pull/145
22+
523
0.9.3 (22-08-2025)
624
==================
725

djangocms_text/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
10. Github actions will publish the new package to pypi
1717
"""
1818

19-
__version__ = "0.9.3"
19+
__version__ = "0.9.4"

0 commit comments

Comments
 (0)