Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit b1d6243

Browse files
committed
added 2.3.4 release notes
1 parent 0baf616 commit b1d6243

File tree

3 files changed

+54
-3
lines changed

3 files changed

+54
-3
lines changed

CHANGELOG.txt

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,10 @@
110110

111111
- fixed an incompatibility with Python 2.5
112112

113+
==== 2.3.4 (2012-11-09) ====
113114

114-
115-
116-
115+
- Fixed WymEditor
116+
- Fixed Norwegian translations
117+
- Fixed a bug that could lead to slug clashes
118+
- Fixed page change form (jQuery and permissions)
119+
- Fixed placeholder field permission checks

docs/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ Install
1717
:maxdepth: 1
1818

1919
getting_started/installation
20+
upgrade/2.3.4
2021
upgrade/2.3.3
2122
upgrade/2.3.2
2223
upgrade/2.3

docs/upgrade/2.3.4.rst

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
###################
2+
2.3.3 release notes
3+
###################
4+
5+
*******************
6+
What's new in 2.3.4
7+
*******************
8+
9+
WymEditor fixed
10+
===============
11+
12+
2.3.4 fixes a critical issue with WymEditor that prevented it from load it's
13+
JavaScript assets correctly.
14+
15+
Moved Norwegian translations
16+
============================
17+
18+
The Norwegian translations are now available as ``nb``, which is the new
19+
(since 2003) official language code for Norwegian, replacing the older and
20+
deprecated ``no`` code.
21+
22+
If your site runs in Norwegian, you need to change your ``LANGUAGES`` settings!
23+
24+
Fixed slug clashing
25+
===================
26+
27+
In earlier versions, publishing a page that has the same slug (URL) as another
28+
(published) page could lead to errors. Now, when a page which would have the
29+
same URL as another (published) page is published, the user is shown an error
30+
and they're prompted to change the slug for the page.
31+
32+
Prevent unnamed related names for PlaceholderField
33+
==================================================
34+
35+
:class:`cms.models.fields.PlaceholderField` no longer allows the related name
36+
to be suppressed. Trying to do so will lead to a :exc:`ValueError`. This change
37+
was done to allow the django CMS to properly check permissions on Placeholder
38+
Fields.
39+
40+
Two fixes to page change form
41+
=============================
42+
43+
The change form for pages would throw errors if the user editing the page does
44+
not have the permission to publish this page. This issue was resolved.
45+
46+
Further the page change form would not correctly pre-popluate the slug field if
47+
``DEBUG`` was set to ``False``. Again, this issue is now resolved.

0 commit comments

Comments
 (0)