Skip to content

Commit

Permalink
Merge pull request #3311 from plone/maurits/plone-app-caching-in-addo…
Browse files Browse the repository at this point in the history
…n-list

Add plone.app.caching to list of add-ons to upgrade
  • Loading branch information
jensens authored Sep 14, 2021
2 parents 7b71338 + 1128832 commit 3227b15
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
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]

0 comments on commit 3227b15

Please sign in to comment.