Skip to content

Commit

Permalink
build: Merge build into release 3.11.x (django-cms#7540)
Browse files Browse the repository at this point in the history
* [3.11.3 release process] Bumped version to 3.11.3

* [3.11.3 release process] compiling new static files

* [3.11.3 release process] updating latest docs

* Update 3.11.3.rst

* Update CHANGELOG.rst

* Update CHANGELOG.rst

* Update 3.11.3.rst

---------

Co-authored-by: Github Release Action <info@django-cms.org>
  • Loading branch information
fsbraun and Github Release Action committed Apr 25, 2023
1 parent 38cea48 commit 05d3e94
Show file tree
Hide file tree
Showing 24 changed files with 102 additions and 13 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.rst
Expand Up @@ -2,6 +2,32 @@
Changelog
=========

3.11.3 (2023-04-25)
===================

Bug Fixes:
----------
* Remove superfluous curly bracket left behind on PR 7488 (#7529) -- Corentin Bettiol
* Fix admin tests (#6848) for some post requests (#7535) -- Fabian Braun

Statistics:
-----------

This release includes 2 pull requests, and was created with the help of the following contributors (in alphabetical order):

* Corentin Bettiol (1 pull request)
* Fabian Braun (1 pull requests)

With the review help of the following contributors:

* Fabian Braun
* Vinit Kumar

Thanks to all contributors for their efforts!

3.11.2 (2023-04-18)
===================

Features:
---------
* add django 4.2 support (#7481) (5478faa5c) -- Vinit Kumar
Expand Down
2 changes: 1 addition & 1 deletion cms/__init__.py
@@ -1,4 +1,4 @@
__version__ = '3.11.2'
__version__ = '3.11.3'

try:
import django
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

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

File renamed without changes.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

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.11.2/django-cms-iconfont.eot");
src: url("../../fonts/3.11.2/django-cms-iconfont.eot#iefix") format("eot"),
url("../../fonts/3.11.2/django-cms-iconfont.woff2") format("woff2"),
url("../../fonts/3.11.2/django-cms-iconfont.woff") format("woff"),
url("../../fonts/3.11.2/django-cms-iconfont.ttf") format("truetype"),
url("../../fonts/3.11.2/django-cms-iconfont.svg#django-cms-iconfont") format("svg");
src: url("../../fonts/3.11.3/django-cms-iconfont.eot");
src: url("../../fonts/3.11.3/django-cms-iconfont.eot#iefix") format("eot"),
url("../../fonts/3.11.3/django-cms-iconfont.woff2") format("woff2"),
url("../../fonts/3.11.3/django-cms-iconfont.woff") format("woff"),
url("../../fonts/3.11.3/django-cms-iconfont.ttf") format("truetype"),
url("../../fonts/3.11.3/django-cms-iconfont.svg#django-cms-iconfont") format("svg");
font-weight: normal;
font-style: normal;
}
Expand Down
62 changes: 62 additions & 0 deletions docs/upgrade/3.11.3.rst
@@ -0,0 +1,62 @@
.. _upgrade-to-3.11.3:

######################
release notes 3.11.3
######################

This release focuses on Django 4.2 support which will be LTS. django CMS version 3.11.x will be supported until the end of life of Django 4.2 estimated for April 2026.

Compared to 3.11.2 it fixes a bug which broke the dropdown menu in the page tree.

********************
What's new in 3.11.3
********************

Bug Fixes:
----------
* Remove superfluous curly bracket left behind on PR 7488 (#7529) -- Corentin Bettiol
* Fix admin tests (#6848) for some post requests (#7535) -- Fabian Braun

Statistics:
-----------

This release includes 2 pull requests, and was created with the help of the following contributors (in alphabetical order):

* Corentin Bettiol (1 pull request)
* Fabian Braun (1 pull requests)

With the review help of the following contributors:

* Fabian Braun
* Vinit Kumar

Thanks to all contributors for their efforts!


************************
How to upgrade to
************************

We assume you are upgrading from django CMS 3.11.2 or django CMS 3.11.1.

Please make sure that your current database is consistent and in a healthy
state, and **make a copy of the database before proceeding further.**

Check your settings of `CMS_LANGUAGES` (if used), as it was ignored by default in preceding versions.
For more information, please see: https://github.com/django-cms/django-cms/pull/6795

Then run::

python manage.py migrate # to ensure that your database is up-to-date with migrations
python manage.py cms fix-tree

Check custom code and third-party applications for use of deprecated or removed functionality or
APIs (see above). Some third-party components may need to be updated.

Install the new version of django CMS from GitHub or via pip.

Run::

python manage.py migrate

to apply the new migrations.
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.11.3
3.11.2
3.11.1
3.11.0
Expand Down

0 comments on commit 05d3e94

Please sign in to comment.