Skip to content

Commit 766896e

Browse files
authored
Merge branch 'master' into gforcada-patch-1
2 parents 4f8b4d3 + 633e7f3 commit 766896e

15 files changed

+32
-23
lines changed

CHANGES.md

+24
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,30 @@
1515

1616
<!-- towncrier release notes start -->
1717

18+
## 6.1.0a1 (2024-01-26)
19+
20+
21+
### Bug fixes:
22+
23+
- Make PloneSite have IContentish again. @Akshat2Jain @jaroel #3833
24+
- Fix problem when adding a Plone site with a custom INonInstallable utility without a getNonInstallableProfiles method.
25+
26+
Fixes: #3862. #3862
27+
- Update `@@test-rendering-cheatsheet` to Bootstrap 5.3 features including color mode switcher.
28+
[petschki] #3870
29+
- Corrected the name in a button and help text to "Classic UI" when creating a Plone site. @1letter #3873
30+
- Correct the behavior interface for lead image in the syndication adapter.
31+
[thet] #3875
32+
- Change adapts to @adapter decorator.
33+
[thet] #3876
34+
- Handle catalog queries with parenthesis inside quotes
35+
[erral] #3879
36+
- Deprecate `get_production_resource_directory` since it is not used anywhere in core.
37+
[@jensens] #3887
38+
- Add data-bundle="diazo" back, for backward compatibility with backend.xml (Classic UI).
39+
Add a data-bundle="plonecustomcss" also for @@custom.css stylesheet
40+
[yurj] #3890
41+
1842
## 6.1.0a1.dev0 (2023-10-18)
1943

2044

Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<metadata>
3-
<version>6100</version>
3+
<version>6101</version>
44
</metadata>

Products/CMFPlone/tests/robot/test_linkintegrity.robot

+2-3
Original file line numberDiff line numberDiff line change
@@ -77,15 +77,14 @@ a link in rich text
7777
Click Button css=button[aria-label="Insert/edit link"]
7878

7979
Given patterns are loaded
80-
# Somehow this does not work:
81-
# Wait For Then Click Element css=.pat-relateditems .select2-input.select2-default
8280
Wait until element is visible css=.pat-relateditems .select2-input.select2-default
8381
Click Element css=.pat-relateditems .select2-input.select2-default
8482
Wait until element is visible css=.pat-relateditems-result.one-level-up a.pat-relateditems-result-browse
8583
Click Element css=.pat-relateditems-result.one-level-up a.pat-relateditems-result-browse
8684
Wait until element is visible xpath=(//span[contains(., 'Foo')])
85+
Sleep 2s
8786
Click Element xpath=(//span[contains(., 'Foo')])
88-
Wait until page contains Foo
87+
Wait until element is visible css=.pat-relateditems-item-title
8988
Wait For Then Click Element css=.modal-footer .btn-primary
9089
Wait For Then Click Element css=#form-buttons-save
9190

news/3833.bugfix

-1
This file was deleted.

news/3862.bugfix

-3
This file was deleted.

news/3870.bugfix

-2
This file was deleted.

news/3873.bugfix

-1
This file was deleted.

news/3875.bugfix

-2
This file was deleted.

news/3876.bugfix

-2
This file was deleted.

news/3879.bugfix

-2
This file was deleted.

news/3887.bugfix

-2
This file was deleted.

news/3890.bugfix

-3
This file was deleted.

news/3902.internal

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fix robot test "When page is linked show warning". @wesleybl

news/6101.bugfix

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Updated metadata version to 6101.
2+
[maurits]

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from setuptools import setup
33

44

5-
version = "6.1.0a1.dev1"
5+
version = "6.1.0a2.dev0"
66

77

88
setup(
@@ -25,6 +25,7 @@
2525
"Programming Language :: Python :: 3.9",
2626
"Programming Language :: Python :: 3.10",
2727
"Programming Language :: Python :: 3.11",
28+
"Programming Language :: Python :: 3.12",
2829
],
2930
python_requires=">=3.8",
3031
keywords="Plone CMF Python Zope CMS Webapplication",

0 commit comments

Comments
 (0)