Skip to content
Permalink
Browse files
add zodbupdate info to move webdav.LockItem to OFS.LockItem (#556)
* add zodbupdate_rename_dict to move webdav.LockItem to OFS.LockItem

* fix changelog syntax
  • Loading branch information
pbauer committed Apr 17, 2019
1 parent 196bd65 commit f677ed7088b133cc78ba0801ab12bd2a12c55dc5
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
@@ -43,7 +43,7 @@ Other changes

- Always keep action buttons visible on the content list for large folders
(`#537 <https://github.com/zopefoundation/Zope/issues/537>`_)

- Make showing the ZMI modal add dialog configurable per product
(`#535 <https://github.com/zopefoundation/Zope/issues/535>`_)

@@ -68,6 +68,9 @@ Other changes
- provided method to get breadcrumb length to prevent ZMI errors
(`#533 <https://github.com/zopefoundation/Zope/issues/533>`_)

- add zodbupdate_rename_dict to move webdav.LockItem to OFS.LockItem
(`Products.CMFPlone#2800 <https://github.com/plone/Products.CMFPlone/issues/2800>`_)


4.0b10 (2019-03-08)
-------------------
@@ -145,5 +145,8 @@ def _read_file(filename):
'zodbupdate.decode': [
'decodes = OFS:zodbupdate_decode_dict',
],
'zodbupdate': [
'renames = OFS:zodbupdate_rename_dict',
],
},
)
@@ -13,3 +13,7 @@
'OFS.OrderedFolder OrderedFolder title': 'utf-8',
'OFS.userfolder UserFolder title': 'utf-8',
}

zodbupdate_rename_dict = {
'webdav.LockItem LockItem': 'OFS.LockItem LockItem',
}

0 comments on commit f677ed7

Please sign in to comment.