plone.tiles 2.3.1__tar.gz → 3.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {plone.tiles-2.3.1 → plone_tiles-3.0.0}/CHANGES.rst +19 -3
- {plone.tiles-2.3.1 → plone_tiles-3.0.0}/MANIFEST.in +2 -1
- plone_tiles-3.0.0/PKG-INFO +1990 -0
- {plone.tiles-2.3.1 → plone_tiles-3.0.0}/README.rst +0 -8
- plone_tiles-3.0.0/plone/__init__.py +1 -0
- {plone.tiles-2.3.1 → plone_tiles-3.0.0}/plone/tiles/__init__.py +1 -1
- {plone.tiles-2.3.1 → plone_tiles-3.0.0}/plone/tiles/absoluteurl.py +18 -20
- plone_tiles-3.0.0/plone/tiles/configure.zcml +184 -0
- {plone.tiles-2.3.1 → plone_tiles-3.0.0}/plone/tiles/data.py +92 -78
- {plone.tiles-2.3.1 → plone_tiles-3.0.0}/plone/tiles/directives.py +3 -4
- {plone.tiles-2.3.1 → plone_tiles-3.0.0}/plone/tiles/directives.rst +4 -4
- {plone.tiles-2.3.1 → plone_tiles-3.0.0}/plone/tiles/esi.py +43 -42
- {plone.tiles-2.3.1 → plone_tiles-3.0.0}/plone/tiles/esi.rst +1 -1
- {plone.tiles-2.3.1 → plone_tiles-3.0.0}/plone/tiles/fieldtypeconverters.py +8 -10
- {plone.tiles-2.3.1 → plone_tiles-3.0.0}/plone/tiles/interfaces.py +41 -46
- plone_tiles-3.0.0/plone/tiles/meta.py +162 -0
- plone_tiles-3.0.0/plone/tiles/meta.zcml +16 -0
- plone_tiles-3.0.0/plone/tiles/test.pt +1 -0
- {plone.tiles-2.3.1 → plone_tiles-3.0.0}/plone/tiles/testing.py +11 -11
- plone_tiles-3.0.0/plone/tiles/tests/__init__.py +0 -0
- plone_tiles-3.0.0/plone/tiles/tests/test_data.py +83 -0
- plone_tiles-3.0.0/plone/tiles/tests/test_doctests.py +30 -0
- {plone.tiles-2.3.1 → plone_tiles-3.0.0}/plone/tiles/tile.py +19 -22
- {plone.tiles-2.3.1 → plone_tiles-3.0.0}/plone/tiles/tiles.rst +2 -2
- {plone.tiles-2.3.1 → plone_tiles-3.0.0}/plone/tiles/type.py +4 -9
- plone_tiles-3.0.0/plone.tiles.egg-info/PKG-INFO +1990 -0
- {plone.tiles-2.3.1 → plone_tiles-3.0.0}/plone.tiles.egg-info/requires.txt +3 -2
- plone_tiles-3.0.0/pyproject.toml +168 -0
- plone_tiles-3.0.0/setup.cfg +4 -0
- plone_tiles-3.0.0/setup.py +75 -0
- plone.tiles-2.3.1/PKG-INFO +0 -1953
- plone.tiles-2.3.1/plone/__init__.py +0 -2
- plone.tiles-2.3.1/plone/tiles/configure.zcml +0 -163
- plone.tiles-2.3.1/plone/tiles/meta.py +0 -151
- plone.tiles-2.3.1/plone/tiles/meta.zcml +0 -15
- plone.tiles-2.3.1/plone/tiles/test.pt +0 -1
- plone.tiles-2.3.1/plone/tiles/tests/__init__.py +0 -1
- plone.tiles-2.3.1/plone/tiles/tests/test_data.py +0 -112
- plone.tiles-2.3.1/plone/tiles/tests/test_doctests.py +0 -39
- plone.tiles-2.3.1/plone.tiles.egg-info/PKG-INFO +0 -1953
- plone.tiles-2.3.1/pyproject.toml +0 -20
- plone.tiles-2.3.1/setup.cfg +0 -12
- plone.tiles-2.3.1/setup.py +0 -73
- {plone.tiles-2.3.1 → plone_tiles-3.0.0}/CONTRIBUTING.rst +0 -0
- {plone.tiles-2.3.1 → plone_tiles-3.0.0}/LICENSE.GPL +0 -0
- {plone.tiles-2.3.1 → plone_tiles-3.0.0}/LICENSE.txt +0 -0
- {plone.tiles-2.3.1 → plone_tiles-3.0.0}/plone/tiles/data.rst +0 -0
- {plone.tiles-2.3.1 → plone_tiles-3.0.0}/plone.tiles.egg-info/SOURCES.txt +0 -0
- {plone.tiles-2.3.1 → plone_tiles-3.0.0}/plone.tiles.egg-info/dependency_links.txt +0 -0
- {plone.tiles-2.3.1 → plone_tiles-3.0.0}/plone.tiles.egg-info/namespace_packages.txt +0 -0
- {plone.tiles-2.3.1 → plone_tiles-3.0.0}/plone.tiles.egg-info/not-zip-safe +0 -0
- {plone.tiles-2.3.1 → plone_tiles-3.0.0}/plone.tiles.egg-info/top_level.txt +0 -0
@@ -8,6 +8,22 @@ Changelog
|
|
8
8
|
|
9
9
|
.. towncrier release notes start
|
10
10
|
|
11
|
+
3.0.0 (2025-06-05)
|
12
|
+
------------------
|
13
|
+
|
14
|
+
Breaking changes:
|
15
|
+
|
16
|
+
|
17
|
+
- Remove Python 2 and Plone 5.2 support. @petschki
|
18
|
+
|
19
|
+
|
20
|
+
Internal:
|
21
|
+
|
22
|
+
|
23
|
+
- Update configuration files.
|
24
|
+
[plone devs]
|
25
|
+
|
26
|
+
|
11
27
|
2.3.1 (2021-10-07)
|
12
28
|
------------------
|
13
29
|
|
@@ -116,8 +132,8 @@ Breaking changes:
|
|
116
132
|
it gets removed after rendering when request is not CSRF-authorized.
|
117
133
|
[datakurre]
|
118
134
|
|
119
|
-
- Generic ESI helper check now
|
120
|
-
the tile according to the registered view permission
|
135
|
+
- Generic ESI helper check now that the request is authorized to render
|
136
|
+
the tile according to the registered view permission to the tile.
|
121
137
|
[datakurre]
|
122
138
|
|
123
139
|
- Transactions of requests to ESI helper views are automatically aborted,
|
@@ -312,7 +328,7 @@ Bug fixes:
|
|
312
328
|
- Use adapters for the Zope Publisher type casting
|
313
329
|
[dukebody]
|
314
330
|
|
315
|
-
-
|
331
|
+
- Conditionally support z3c.relationfield's RelationChoice fields
|
316
332
|
[dukebody]
|
317
333
|
|
318
334
|
- Ignore type casting for fields without fixed type, like zope.schema.Choice
|