Skip to content

Commit

Permalink
Release 3.4.6rc1 (#6312)
Browse files Browse the repository at this point in the history
* Added 3.4.6 release notes

* Updated css, icon and font files

* Bumped version to 3.4.6rc1
  • Loading branch information
czpython committed Mar 19, 2018
1 parent 701146a commit 67b234c
Show file tree
Hide file tree
Showing 26 changed files with 44 additions and 16 deletions.
2 changes: 1 addition & 1 deletion cms/__init__.py
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-

__version__ = '3.4.5'
__version__ = '3.4.6rc1'

default_app_config = 'cms.apps.CMSConfig'
3 changes: 0 additions & 3 deletions cms/static/cms/css/3.4.5/cms.base.css

This file was deleted.

3 changes: 0 additions & 3 deletions cms/static/cms/css/3.4.5/cms.pagetree.css

This file was deleted.

3 changes: 0 additions & 3 deletions cms/static/cms/css/3.4.5/cms.welcome.css

This file was deleted.

3 changes: 3 additions & 0 deletions cms/static/cms/css/3.4.6rc1/cms.base.css

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions cms/static/cms/css/3.4.6rc1/cms.pagetree.css

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions cms/static/cms/css/3.4.6rc1/cms.welcome.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

File renamed without changes.
Binary file removed cms/static/cms/fonts/3.4.5/django-cms-iconfont.woff2
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
12 changes: 6 additions & 6 deletions cms/static/cms/sass/components/_iconography.scss
Expand Up @@ -4,12 +4,12 @@
// default font file generated by gulp
@font-face {
font-family: "django-cms-iconfont";
src: url("../../fonts/3.4.5/django-cms-iconfont.eot");
src: url("../../fonts/3.4.5/django-cms-iconfont.eot#iefix") format("eot"),
url("../../fonts/3.4.5/django-cms-iconfont.woff2") format("woff2"),
url("../../fonts/3.4.5/django-cms-iconfont.woff") format("woff"),
url("../../fonts/3.4.5/django-cms-iconfont.ttf") format("truetype"),
url("../../fonts/3.4.5/django-cms-iconfont.svg#django-cms-iconfont") format("svg");
src: url("../../fonts/3.4.6rc1/django-cms-iconfont.eot");
src: url("../../fonts/3.4.6rc1/django-cms-iconfont.eot#iefix") format("eot"),
url("../../fonts/3.4.6rc1/django-cms-iconfont.woff2") format("woff2"),
url("../../fonts/3.4.6rc1/django-cms-iconfont.woff") format("woff"),
url("../../fonts/3.4.6rc1/django-cms-iconfont.ttf") format("truetype"),
url("../../fonts/3.4.6rc1/django-cms-iconfont.svg#django-cms-iconfont") format("svg");
font-weight: normal;
font-style: normal;
}
Expand Down
27 changes: 27 additions & 0 deletions docs/upgrade/3.4.6.rst
@@ -0,0 +1,27 @@
.. _upgrade-to-3.4.6:

###################
3.4.6 release notes
###################



*******************
What's new in 3.4.6
*******************

Bug Fixes
=========

* Changed the way drag and drop works in the page tree. The page has to be
selected first before moving.
* Fixed a bug where the cms alias plugin leaks context into the rendered aliased plugins.
* Fixed a bug where users without the "Change advanced settings" permission could still
change a page's template.
* Added ``on_delete`` to ``ForeignKey`` and ``OneToOneField`` to silence Django
deprecation warnings.
* Fixed a bug where the sitemap would ignore the ``public`` setting of the site languages
and thus display hidden languages.
* Fixed an ``AttributeError`` raised when adding or removing apphooks in Django 1.11.
* Fixed an ``InconsistentMigrationHistory`` error raised when the contenttypes app
has a pending migration after the user has applied the ``0010_migrate_use_structure`` migration.
1 change: 1 addition & 0 deletions docs/upgrade/index.rst
Expand Up @@ -13,6 +13,7 @@ makes changes to your database.
.. toctree::
:maxdepth: 1

3.4.6
3.4.5
3.4.4
3.4.3
Expand Down

0 comments on commit 67b234c

Please sign in to comment.