Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add plone.app.caching to list of add-ons to upgrade #3311

Merged
merged 3 commits into from
Sep 14, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions Products/CMFPlone/MigrationTool.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,14 +85,26 @@ def upgrade_all(self, context):
# List of upgradeable packages. Obvious items to add here, are all
# core packages that actually have upgrade steps.
# Good start is portal_setup.listProfilesWithUpgrades()
# Please use 'check_module' for packages that are not direct dependencies
# of Products.CMFPlone, but of the Plone package.
ADDON_LIST = AddonList([
Addon(profile_id='Products.CMFEditions:CMFEditions'),
Addon(profile_id='Products.CMFPlacefulWorkflow:CMFPlacefulWorkflow'),
Addon(
profile_id='Products.CMFPlacefulWorkflow:CMFPlacefulWorkflow',
check_module='Products.CMFPlacefulWorkflow'
),
Addon(
profile_id='plone.app.caching:default',
check_module='plone.app.caching'
),
Addon(profile_id='plone.app.contenttypes:default'),
Addon(profile_id='plone.app.dexterity:default'),
Addon(profile_id='plone.app.discussion:default'),
Addon(profile_id='plone.app.event:default'),
Addon(profile_id='plone.app.iterate:plone.app.iterate'),
Addon(
profile_id='plone.app.iterate:default',
check_module='plone.app.iterate'
),
Addon(profile_id='plone.app.multilingual:default'),
Addon(profile_id='plone.app.querystring:default'),
Addon(profile_id='plone.app.theming:default'),
Expand Down
2 changes: 2 additions & 0 deletions news/82.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Add ``plone.app.caching`` to the list of add-ons that is upgraded when upgrading Plone.
[maurits]