File tree Expand file tree Collapse file tree 7 files changed +132
-3
lines changed Expand file tree Collapse file tree 7 files changed +132
-3
lines changed Original file line number Diff line number Diff line change @@ -59,13 +59,15 @@ Contributors (in alphabetical order):
59
59
* Cheng-Chia Tseng
60
60
* Chris Adams
61
61
* Chris Hughes
62
+ * Chris Jones
62
63
* Chris Wesseling
63
64
* Christof Hagedorn
64
65
* Conrado Bührer
65
66
* DaNmarner
66
67
* Daniel Barden
67
68
* Darryl Woods
68
- * David Jean Louis
69
+ * David Jean Lou
70
+ * David Grant
69
71
* David Thompson
70
72
* deshack
71
73
* Diógenes Augusto Fernandes Hermínio
@@ -141,6 +143,7 @@ Contributors (in alphabetical order):
141
143
* Manolis Stamatogiannakis
142
144
* Manuel Schmidt
143
145
* Marc-Olivier Titeux
146
+ * marcmoody
144
147
* Marco Bonetti
145
148
* Marco Rimoldi
146
149
* Mark Rogers
@@ -163,6 +166,7 @@ Contributors (in alphabetical order):
163
166
* Mitar
164
167
* Mokys
165
168
* mrlundis
169
+ * mthornhill
166
170
* MW
167
171
* neoprolog
168
172
* Nickolay V. Shmyrev
@@ -217,17 +221,21 @@ Contributors (in alphabetical order):
217
221
* spookylukey
218
222
* ssteinerX
219
223
* Stavros Korokithakis
224
+ * Stefan T. Oertel
220
225
* Stephan Jaekel
221
226
* Stephen Muss
222
227
* Steve R. Jones
223
228
* Steve Steiner
224
229
* Tanel Külaots
225
230
* Thomas Parslow
231
+ * Thomas Woolford
226
232
* timesong
227
233
* Tim Davies
234
+ * Timo Lindemann
228
235
* Tino de Bruijn
229
236
* tiret
230
237
* Tom de Simone
238
+ * Tomas Neme
231
239
* Ulrich Petri
232
240
* Vasil Vangelovski
233
241
* Viliam Segeda
Original file line number Diff line number Diff line change 118
118
- Fixed page change form (jQuery and permissions)
119
119
- Fixed placeholder field permission checks
120
120
121
+ ==== 2.3.7 (2013-05-30) ===
122
+
123
+ - Fixed a bug in the cache handling of plugins using django-sekizai
124
+ - Fixed a performance bug in the permission cache
125
+
126
+ ==== 2.3.8 (2013-10-29) ===
127
+
128
+ - Fixed a bug in fixture loading signals handling
129
+ - Fixed a bug in thousands formatting in placeholders primary keys
130
+
121
131
==== 2.4.0 (2013-4-17)===
122
132
123
133
Please see Install/2.4 release notes *before* attempting to upgrade to version 2.4.
@@ -158,3 +168,17 @@ Please see Install/2.4 release notes *before* attempting to upgrade to version 2
158
168
- added Testing docs
159
169
- fixed more issues with only one language
160
170
- locales updated
171
+
172
+ ==== 2.4.3 (2013-10-29)===
173
+
174
+ - Fixed a bug in fixture loading signals handling
175
+ - Fixed a bug in thousands formatting in placeholders primary keys
176
+ - Test fixes
177
+ - Fix use of cached content in show_placeholder in preview mode
178
+ - Fix issues in cookies handling
179
+ - Fix minor unicode issues
180
+ - Fix a missing argument in ModelAdmin
181
+ - Fix a bug in WymEditor handling
182
+ - Fix bugs in migrations
183
+ - Fix bug in language fallback
184
+ - Minor documentation fixes
Original file line number Diff line number Diff line change 1
1
# -*- coding: utf-8 -*-
2
- __version__ = '2.4.2'
3
-
2
+ __version__ = '2.4.3'
Original file line number Diff line number Diff line change @@ -23,7 +23,10 @@ Install
23
23
:maxdepth: 1
24
24
25
25
getting_started/installation
26
+ upgrade/2.4.3
26
27
upgrade/2.4
28
+ upgrade/2.3.8
29
+ upgrade/2.3.7
27
30
upgrade/2.3.4
28
31
upgrade/2.3.3
29
32
upgrade/2.3.2
Original file line number Diff line number Diff line change
1
+ ###################
2
+ 2.3.7 release notes
3
+ ###################
4
+
5
+ .. warning :: Upgrading from previous versions
6
+
7
+ 2.3.7 now requires ``django-sekizai>=0.7 `` (up from ``0.6.1 ``) due to a
8
+ cache-related fix backported from 2.4.
9
+ The correct ``django-sekizai `` version should be automatically installed
10
+ (if not already present), but please do check when upgrading.
11
+
12
+ *******************
13
+ What's new in 2.3.7
14
+ *******************
15
+
16
+ Cache-related plugin template fix
17
+ =================================
18
+
19
+ Plugin templates may suffer for incorrect caching when using django-sekizai
20
+ (which may cause css and javascript files not to be served to the users).
21
+ This backported fix resolve this, as the whole context is now saved in cache
22
+ along with the rendered templates.
23
+
24
+ Permissions cache performance issue fix backported
25
+ ==================================================
26
+
27
+ When a page is saved and cache is enabled, an explicit cache clear used to be
28
+ called, causing performance issues when you have thousand of users on your
29
+ website. This is no longer the case: cache is now versioned and as a result
30
+ massive cache invalidation is not needed anymore
31
+
32
+ Fix MPTT Management command backported
33
+ =======================================
34
+
35
+ Backported from 2.4 a management command for fixing MPTT tree data.
36
+
37
+ The command can be run with::
38
+
39
+ manage.py cms fix-mptt
Original file line number Diff line number Diff line change
1
+ ###################
2
+ 2.3.8 release notes
3
+ ###################
4
+
5
+ *******************
6
+ What's new in 2.3.8
7
+ *******************
8
+
9
+ Fixture loading in Postgres
10
+ ===========================
11
+
12
+ Placeholder rescan is skipped when loading fixtures.
13
+
14
+ Fix placeholder primary keys formatting
15
+ =======================================
16
+
17
+ Fixed a bug when the Django setting USE_THOUSAND_SEPARATOR = True, which caused
18
+ placeholders primary keys to be formatted according to locale, breaking frontend
19
+ editing.
Original file line number Diff line number Diff line change
1
+ ###################
2
+ 2.4.3 release notes
3
+ ###################
4
+
5
+ *******************
6
+ What's new in 2.4.3
7
+ *******************
8
+
9
+ Fixture loading in Postgres
10
+ ===========================
11
+
12
+ Placeholder rescan is skipped when loading fixtures.
13
+
14
+ Fix placeholder primary keys formatting
15
+ =======================================
16
+
17
+ Fixed a bug when the Django setting USE_THOUSAND_SEPARATOR = True, which caused
18
+ placeholders primary keys to be formatted according to locale, breaking frontend
19
+ editing.
20
+
21
+ Fix show_placeholder in preview mode
22
+ ====================================
23
+
24
+ ``show_placeholder `` no longer uses cached content in preview mode.
25
+
26
+
27
+ Other fixes
28
+ ===========
29
+
30
+ * Test fixes
31
+ * Fix issues in cookies handling
32
+ * Fix minor unicode issues
33
+ * Fix a missing argument in ModelAdmin
34
+ * Fix a bug in WymEditor handling
35
+ * Fix bugs in migrations
36
+ * Fix bug in language fallback
37
+ * Minor documentation fixes
You can’t perform that action at this time.
0 commit comments