Skip to content

Commit 8bc914f

Browse files
committed
Merge branch '11.0/bugfixes'
2 parents a68e258 + 11c5c93 commit 8bc914f

File tree

66 files changed

+11496
-460
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+11496
-460
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,7 @@ jobs:
3535
matrix:
3636
include:
3737
- {php-version: "8.2"} # Lint on lower PHP version to detected too early usage of new syntaxes
38-
- {php-version: "8.4"} # Lint on higher PHP version to detected deprecated elements usage
39-
- {php-version: "8.5"} # next PHP release
38+
- {php-version: "8.5"} # Lint on higher PHP version to detected deprecated elements usage
4039
env:
4140
COMPOSE_FILE: ".github/actions/docker-compose-app.yml"
4241
APPLICATION_ROOT: "${{ github.workspace }}"
@@ -129,13 +128,9 @@ jobs:
129128
{
130129
"include": [
131130
{"php-version": "8.5", "db-image": "mariadb:11.8"},
132-
{"php-version": "8.4", "db-image": "mariadb:11.8"},
133-
{"php-version": "8.4", "db-image": "mysql:8.4"},
134-
{"php-version": "8.2", "db-image": "mariadb:11.8"},
135-
{"php-version": "8.4", "db-image": "mariadb:10.6"},
136-
{"php-version": "8.4", "db-image": "mysql:8.0"},
137-
{"php-version": "8.4", "db-image": "percona:8.0"},
138-
{"php-version": "8.4", "db-image": "percona:8.4"}
131+
{"php-version": "8.2", "db-image": "mariadb:10.6"},
132+
{"php-version": "8.5", "db-image": "mysql:8.4"},
133+
{"php-version": "8.5", "db-image": "mysql:8.0"},
139134
]
140135
}
141136
'
@@ -144,8 +139,7 @@ jobs:
144139
{
145140
"include": [
146141
{"php-version": "8.5", "db-image": "mariadb:11.8"},
147-
{"php-version": "8.4", "db-image": "mariadb:11.8"},
148-
{"php-version": "8.4", "db-image": "mysql:8.4"}
142+
{"php-version": "8.2", "db-image": "mysql:8.4"}
149143
]
150144
}
151145
'

CHANGELOG.md

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,29 @@ The present file will list all changes made to the project; according to the
2828

2929
#### Removed
3030

31-
## [11.0.2] unreleased
31+
32+
## [11.0.3] unreleased
33+
34+
### Added
35+
36+
### Changed
37+
38+
### Deprecated
39+
40+
### Removed
41+
42+
### API changes
43+
44+
#### Added
45+
46+
#### Changes
47+
48+
#### Deprecated
49+
50+
#### Removed
51+
52+
53+
## [11.0.2] 2025-11-05
3254

3355
### Added
3456
- Some missing `readOnly` flags for properties for some schemas in High-Level API.

ajax/mailcollector.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,9 @@
6565

6666
if (!empty($input['mail_server'])) {
6767
$input["host"] = Toolbox::constructMailServerConfig($input);
68-
if (!isset($input['passwd'])) {
68+
// In some case (like oauth imap) provide password is not possible
69+
// So, ask for password only if there is one stored in database
70+
if (!isset($input['passwd']) && !empty($mailcollector->fields['passwd'])) {
6971
$exception = new AccessDeniedHttpException();
7072
$exception->setMessageToDisplay(__('Password is required to list mail folders.'));
7173
throw $exception;

0 commit comments

Comments
 (0)