File tree Expand file tree Collapse file tree 4 files changed +20
-5
lines changed
Expand file tree Collapse file tree 4 files changed +20
-5
lines changed Original file line number Diff line number Diff line change 11Changelog
22=========
33
4- 5.9.2 (unreleased)
4+ 5.9.4 (unreleased)
55------------------
66
77- Nothing changed yet.
88
99
10+ 5.9.3 (2025-11-24)
11+ ------------------
12+
13+ - Fix on #151 changes (#152)
14+ [mamico]
15+
16+
17+ 5.9.2 (2025-11-20)
18+ ------------------
19+
20+ - Avoid acquisition problems in monkeypatch (#151).
21+ [cekk]
22+
10235.9.1 (2025-09-25)
1124------------------
1225- Exclude "teaser" to avoid block modification by resolveuidserializer
Original file line number Diff line number Diff line change 1616
1717setup (
1818 name = "redturtle.volto" ,
19- version = "5.9.2 .dev0" ,
19+ version = "5.9.4 .dev0" ,
2020 description = "Helper package to setup a RedTurtle's Plone site ready to work with Volto." ,
2121 long_description = long_description ,
2222 # Get more from https://pypi.org/classifiers/
Original file line number Diff line number Diff line change @@ -205,15 +205,16 @@ def plone_restapi_blocks_linkintegrity_blocksretriever_retrieveLinks(self):
205205 """
206206
207207 links = set ()
208- blocks = getattr (self .context , "blocks" , {})
208+ context = aq_base (self .context )
209+ blocks = getattr (context , "blocks" , {})
209210 if not blocks :
210211 return links
211- for block in visit_blocks (self . context , blocks ):
212+ for block in visit_blocks (context , blocks ):
212213 if not isinstance (block , dict ):
213214 continue
214215
215216 for handler in iter_block_transform_handlers (
216- self . context , block , IBlockFieldLinkIntegrityRetriever
217+ context , block , IBlockFieldLinkIntegrityRetriever
217218 ):
218219 links |= set (handler (block ))
219220 return links
Original file line number Diff line number Diff line change @@ -21,3 +21,4 @@ docutils = 0.21.2
2121plone.stringinterp = 2.0.0
2222# plone.restapi >= 9.6.1 don't put subjects into SearchableText (to investigate)
2323plone.restapi = 9.6.0
24+ cffi =
You can’t perform that action at this time.
0 commit comments