Plone 6.0.3 has been soft-released. Please give it a try and let me know if there are any critical issues.
For those who haven't run across soft-releases before, this is the last step before the final release. Because things haven't been finalized yet, some packages may change between now and the release. It is not recommended to use soft-releases in production.
See also the release checklist on GitHub .
Release notes for Plone 6.0.3rc1
- Released: Thursday March 23, 2023
- Check the release schedule.
- Read the upgrade guide, explaining the biggest changes compared to 5.2.
- Canonical place for these release notes and the full packages changelog.
For technical wizards who want to jump straight in, here are two important links:
- With pip you can use the constraints file at https://dist.plone.org/release/6.0-dev/constraints.txt
- With Buildout you can use the versions file at https://dist.plone.org/release/6.0-dev/versions.cfg, plus optionally
versions-extra.cfg
andversions-ecosystem.cfg
.
Highlights
Major changes since 6.0.2:
-
plone.base
: Moveplone.app.layout.navigation.root.getNavigationRoot
to.navigationroot.get_navigation_root
.
Moveplone.app.layout.navigation.root.getNavigationRootObject
to.navigationroot.get_navigation_root_object
.
Both are essential basic functions in Plone and not layout related at all. -
Zope
: Replacecgi.FieldStorage
bymultipart
avoiding thecgi
module deprecated by Python 3.11.
Mark binary converters with a truebinary
attribute.
Fix encoding handling and:bytes
converter.
This affects the way Zope handles request data, but in core Plone no changes were needed, except in a few tests. -
plone.restapi
:- Fix missing
Decimal
field deserializer. - Fix translation of the error message for a password that is too short while adding a user.
- Provide slateTable block serializer/deserializer to properly convert URLs to uids.
- Fix missing
-
plone.staticresources
: Upgrade Mockup to 5.0.6. This introduces thepat-checklist
pattern. -
Products.CMFPlone
: Use the newpat-checklist
for groupuser management, and fix userlisting batch/showAll in group membership template. -
plone.app.locales
: Update translations for pt_BR. - Various packages: drop support for older Python, Zope or Plone versions, declare dependencies better, fix deprecation warnings, cleanup code.
Volto frontend
The default frontend for Plone 6 is Volto. Latest release is 16.18.0. See the changelog.
Note that this is a JavaScript frontend that you need to run in a separate process with NodeJS.
The Classic UI is still available when you only run the Python process.
Python compatibility
This release supports Python 3.8, 3.9, 3.10, and 3.11.
pip, buildout, setuptools
In Plone core we use these versions to install Plone:
pip==22.3.1
setuptools==65.7.0
wheel==0.38.4
zc.buildout==3.0.1
In general you are free to use whatever versions work for you, especially newer ones, but these worked for us.
Note that setuptools
66 is more strict with what versions it can recognize. If you run pip
or buildout
and it suddenly cannot find a package with a non-standard version, then this may be the cause. This is why we stayed at version 65 for this release.
This already needed a fix in Products.GenericSetup
in the code that ordered upgrade steps.
Installation
For installation instructions, see the documentation.
Issues
If you find any issues, please report them in the main issue tracker.