Skip to content

Commit e403d91

Browse files
chore: update changelog
1 parent a0cc826 commit e403d91

1 file changed

Lines changed: 67 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 67 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,10 @@ ownCloud admins and users.
3838

3939
## Summary
4040

41+
* Bugfix - Fix htaccess RewriteBase rules blocking API requests by file extension: [#41418](https://github.com/owncloud/core/issues/41418)
42+
* Bugfix - Fix subadmin email change updating caller's address instead of target's: [#41574](https://github.com/owncloud/core/pull/41574)
43+
* Bugfix - Adjust code to avoid PHP8 messages: [#41597](https://github.com/owncloud/core/pull/41597)
44+
* Bugfix - Support federation between systems in subdirectories: [#41599](https://github.com/owncloud/core/pull/41599)
4145
* Change - Update M$ Office icons: [#41347](https://github.com/owncloud/core/pull/41347)
4246
* Change - No longer store auto loader information in any memory cache: [#41376](https://github.com/owncloud/core/pull/41376)
4347
* Change - Update PHP dependencies: [#41450](https://github.com/owncloud/core/pull/41450)
@@ -47,6 +51,49 @@ ownCloud admins and users.
4751

4852
## Details
4953

54+
* Bugfix - Fix htaccess RewriteBase rules blocking API requests by file extension: [#41418](https://github.com/owncloud/core/issues/41418)
55+
56+
Files whose names end in extensions like .jpg, .png, .svg, .json and others
57+
could not be marked as favorites or have their tags updated via the files API
58+
when htaccess.RewriteBase was configured. The .htaccess rules generated by `occ
59+
maintenance:update:htaccess` used a URI extension check to skip routing through
60+
index.php, which inadvertently blocked API requests to paths like
61+
`/apps/files/api/v1/files/photo.jpg`, returning 405 Method Not Allowed.
62+
63+
The fix replaces the extension-based condition with `RewriteCond
64+
%{REQUEST_FILENAME} !-f`, which correctly routes virtual API paths through
65+
index.php while still serving actual static files directly.
66+
67+
https://github.com/owncloud/core/issues/41418
68+
69+
* Bugfix - Fix subadmin email change updating caller's address instead of target's: [#41574](https://github.com/owncloud/core/pull/41574)
70+
71+
The verification token and confirmation link in the subadmin path of
72+
setMailAddress were associated with the caller's account instead of the target
73+
user's account. Clicking the confirmation link changed the subadmin's email
74+
rather than the intended target's email.
75+
76+
https://github.com/owncloud/core/pull/41574
77+
78+
* Bugfix - Adjust code to avoid PHP8 messages: [#41597](https://github.com/owncloud/core/pull/41597)
79+
80+
Avoid trying to access array offset on false in the encryption storage wrapper.
81+
82+
Handle passing null to normalizeUrl in the federation DbHandler.
83+
84+
https://github.com/owncloud/core/pull/41597
85+
86+
* Bugfix - Support federation between systems in subdirectories: [#41599](https://github.com/owncloud/core/pull/41599)
87+
88+
If a federated server was installed in a subdirectory like:
89+
90+
Mydomain.com/cloud
91+
92+
Then checks to see that the server is up and responding would fail. This problem
93+
has been corrected.
94+
95+
https://github.com/owncloud/core/pull/41599
96+
5097
* Change - Update M$ Office icons: [#41347](https://github.com/owncloud/core/pull/41347)
5198

5299
Icons have been updated according to the M$ cloud storage partner program
@@ -67,35 +114,50 @@ ownCloud admins and users.
67114

68115
* google/apiclient (v2.19.0 to v2.19.3)
69116

70-
* google/apiclient-services (v0.435.0 to v0.441.1)
117+
* google/apiclient-services (v0.435.0 to v0.444.0)
71118

72-
* google/auth (v1.50.0 to v1.50.1)
119+
* google/auth (v1.50.0 to v1.51.0)
73120

74121
* guzzlehttp/psr7 (2.8.0 to 2.10.4)
75122

76-
* guzzlehttp/guzzle (7.10.0 to 7.11.0)
123+
* guzzlehttp/guzzle (7.10.0 to 7.11.1)
77124

78125
* guzzlehttp/promises (2.3.0 to 2.4.1)
79126

80127
* laravel/serializable-closure (v2.0.10 to v2.0.13)
81128

82-
* phpseclib/phpseclib (3.0.49 to 3.0.50)
129+
* phpseclib/phpseclib (3.0.49 to 3.0.53)
83130

84131
* pimple/pimple (3.6.1 to 3.6.2)
85132

133+
* sabre/event (5.1.7 to 5.1.8)
134+
86135
* sabre/vobject (4.5.8 to 4.6.0)
87136

88-
* symfony/deprecation-contracts (v3.6.0 to v3.7.0)
137+
* symfony/console (v7.4.7 to v7.4.13)
89138

90139
* symfony/mailer (v7.4.6 to v7.4.12)
91140

141+
* symfony/process (v7.4.5 to v7.4.13)
142+
143+
* symfony/routing (v7.4.6 to v7.4.13)
144+
145+
* symfony/string (v7.4.6 to v7.4.13)
146+
147+
* symfony/translation (v7.4.6 to v7.4.10)
148+
149+
* symfony/deprecation-contracts (v3.6.0 to v3.7.0)
150+
151+
* symfony/translation-contracts (v3.6.1 to v3.7.0)
152+
92153
https://github.com/owncloud/core/pull/41450
93154
https://github.com/owncloud/core/pull/41477
94155
https://github.com/owncloud/core/pull/41495
95156
https://github.com/owncloud/core/pull/41561
96157
https://github.com/owncloud/core/pull/41564
97158
https://github.com/owncloud/core/pull/41569
98159
https://github.com/owncloud/core/pull/41590
160+
https://github.com/owncloud/core/pull/41613
99161

100162
* Change - Drop command db:convert-type: [#41451](https://github.com/owncloud/core/pull/41451)
101163

0 commit comments

Comments
 (0)