11# Table of Contents
22
3+ * [Changelog for unreleased](#changelog-for-unreleased-unreleased)
34* [Changelog for 7.2.0](#changelog-for-720-2025-07-14)
45* [Changelog for 7.1.3](#changelog-for-713-2025-05-27)
56* [Changelog for 7.1.2](#changelog-for-712-2025-03-28)
5758* [Changelog for 1.1.0](#changelog-for-110-2021-01-22)
5859* [Changelog for 1.0.0](#changelog-for-100-2020-12-17)
5960
61+ # Changelog for [unreleased] (UNRELEASED)
62+
63+ The following sections list the changes for unreleased.
64+
65+ [unreleased]: https://github.com/owncloud/ocis/compare/v7.2.0...master
66+
67+ ## Summary
68+
69+ * Bugfix - Fix the expiration date response for links: [#11239](https://github.com/owncloud/ocis/pull/11239)
70+ * Bugfix - Return translated role definitions: [#11466](https://github.com/owncloud/ocis/pull/11466)
71+ * Bugfix - Tolerating the empty request body for WebDAV: [#11516](https://github.com/owncloud/ocis/pull/11516)
72+ * Enhancement - Add GetPermission API: [#8616](https://github.com/owncloud/ocis/issues/8616)
73+ * Enhancement - Bump importer app: [#10880](https://github.com/owncloud/ocis/pull/10880)
74+ * Enhancement - Allow scaling the search service: [#11029](https://github.com/owncloud/ocis/pull/11029)
75+
76+ ## Details
77+
78+ * Bugfix - Fix the expiration date response for links: [#11239](https://github.com/owncloud/ocis/pull/11239)
79+
80+ We fixed the inconsistency in the expiration date response for links
81+
82+ https://github.com/owncloud/ocis/issues/11232
83+ https://github.com/owncloud/ocis/pull/11239
84+
85+ * Bugfix - Return translated role definitions: [#11466](https://github.com/owncloud/ocis/pull/11466)
86+
87+ Instead of always returning the role definitions in English, we now return the
88+ role definitions in the language set in the `Accept-Language` header if present.
89+
90+ https://github.com/owncloud/ocis/pull/11466
91+
92+ * Bugfix - Tolerating the empty request body for WebDAV: [#11516](https://github.com/owncloud/ocis/pull/11516)
93+
94+ Tolerating the empty request body for WebDAV operations like MKCOL, DELETE,
95+ MOVE, COPY.
96+
97+ https://github.com/owncloud/ocis/issues/10809
98+ https://github.com/owncloud/ocis/pull/11516
99+
100+ * Enhancement - Add GetPermission API: [#8616](https://github.com/owncloud/ocis/issues/8616)
101+
102+ Graph service: added GET
103+ /v1beta1/drives/{driveId}/items/{itemId}/permissions/{permissionId} (and
104+ space-root equivalent) so clients can retrieve a single permission instead of
105+ listing all.
106+
107+ https://github.com/owncloud/ocis/issues/8616
108+ https://github.com/owncloud/ocis/pull/11477
109+
110+ * Enhancement - Bump importer app: [#10880](https://github.com/owncloud/ocis/pull/10880)
111+
112+ The importer app in the ocis_full example has been updated. It's using the
113+ upstream Uppy Companion Docker image now.
114+
115+ https://github.com/owncloud/ocis/pull/10880
116+
117+ * Enhancement - Allow scaling the search service: [#11029](https://github.com/owncloud/ocis/pull/11029)
118+
119+ Previously, the search service locked the index for its whole lifetime, so any
120+ other search service wouldn't be able to access to the index. With this change,
121+ the search service can be configure to lock the index per operation, so other
122+ search services can access the index as long as there is no operation ongoing.
123+
124+ https://github.com/owncloud/ocis/pull/11029
125+
60126# Changelog for [7.2.0] (2025-07-14)
61127
62128The following sections list the changes for 7.2.0.
@@ -76,21 +142,15 @@ The following sections list the changes for 7.2.0.
76142* Bugfix - OCM Share Notifications: [#11162](https://github.com/owncloud/ocis/pull/11162)
77143* Bugfix - Fix pdf form creation: [#11163](https://github.com/owncloud/ocis/pull/11163)
78144* Bugfix - Fix app-auth, REST status code: [#11190](https://github.com/owncloud/ocis/pull/11190)
79- * Bugfix - Fix the expiration date response for links: [#11239](https://github.com/owncloud/ocis/pull/11239)
80145* Bugfix - Fix error on listing space members: [#11245](https://github.com/owncloud/ocis/pull/11245)
81146* Bugfix - Fix the graceful shutdown: [#11295](https://github.com/owncloud/ocis/pull/11295)
82147* Bugfix - Fix the reva log interceptor: [#11348](https://github.com/owncloud/ocis/pull/11348)
83148* Bugfix - Fix panic while traversing the service list: [#11390](https://github.com/owncloud/ocis/pull/11390)
84- * Bugfix - Fix storage-users cli: [#11464](https://github.com/owncloud/ocis/pull/11464)
85149* Bugfix - Clean up unified roles label: [#11464](https://github.com/owncloud/ocis/pull/11464)
86- * Bugfix - Return translated role definitions: [#11466](https://github.com/owncloud/ocis/pull/11466)
87150* Bugfix - Fix the OCM role editor: [#11484](https://github.com/owncloud/ocis/pull/11484)
88- * Bugfix - Tolerating the empty request body for WebDAV : [#11516 ](https://github.com/owncloud/ocis/pull/11516 )
151+ * Bugfix - Fix storage-users cli : [#11490 ](https://github.com/owncloud/ocis/pull/11490 )
89152* Change - Remove deprecated FRONTEND_OCS_*: [#11333](https://github.com/owncloud/ocis/pull/11333)
90153* Change - Remove deprecated CLIENTLOG_REVA_GATEWAY: [#11372](https://github.com/owncloud/ocis/pull/11372)
91- * Enhancement - Add GetPermission API: [#8616](https://github.com/owncloud/ocis/issues/8616)
92- * Enhancement - Bump importer app: [#10880](https://github.com/owncloud/ocis/pull/10880)
93- * Enhancement - Allow scaling the search service: [#11029](https://github.com/owncloud/ocis/pull/11029)
94154* Enhancement - Update Mockery to 2.52.3: [#11070](https://github.com/owncloud/ocis/pull/11070)
95155* Enhancement - Improve postprocessing logs: [#11108](https://github.com/owncloud/ocis/pull/11108)
96156* Enhancement - Improve graph space management logs: [#11115](https://github.com/owncloud/ocis/pull/11115)
@@ -196,13 +256,6 @@ The following sections list the changes for 7.2.0.
196256 https://github.com/owncloud/ocis/issues/10815
197257 https://github.com/owncloud/ocis/pull/11190
198258
199- * Bugfix - Fix the expiration date response for links: [#11239](https://github.com/owncloud/ocis/pull/11239)
200-
201- We fixed the inconsistency in the expiration date response for links
202-
203- https://github.com/owncloud/ocis/issues/11232
204- https://github.com/owncloud/ocis/pull/11239
205-
206259* Bugfix - Fix error on listing space members: [#11245](https://github.com/owncloud/ocis/pull/11245)
207260
208261 Now the members list will still show grantees even with there is any invalid
@@ -234,12 +287,14 @@ The following sections list the changes for 7.2.0.
234287 https://github.com/owncloud/ocis/issues/11377
235288 https://github.com/owncloud/ocis/pull/11390
236289
237- * Bugfix - Return translated role definitions : [#11466 ](https://github.com/owncloud/ocis/pull/11466 )
290+ * Bugfix - Clean up unified roles label : [#11464 ](https://github.com/owncloud/ocis/pull/11464 )
238291
239- Instead of always returning the role definitions in English, we now return the
240- role definitions in the language set in the `Accept-Language` header if present.
292+ Clean up the unified roles label
241293
242- https://github.com/owncloud/ocis/pull/11466
294+ https://github.com/owncloud/ocis/issues/11470
295+ https://github.com/owncloud/ocis/issues/11254
296+ https://github.com/owncloud/ocis/issues/10082
297+ https://github.com/owncloud/ocis/pull/11464
243298
244299* Bugfix - Fix the OCM role editor: [#11484](https://github.com/owncloud/ocis/pull/11484)
245300
@@ -249,30 +304,13 @@ The following sections list the changes for 7.2.0.
249304 https://github.com/owncloud/ocis/issues/11474
250305 https://github.com/owncloud/ocis/pull/11484
251306
252- * Bugfix - Tolerating the empty request body for WebDAV: [#11516](https://github.com/owncloud/ocis/pull/11516)
253-
254- Tolerating the empty request body for WebDAV operations like MKCOL, DELETE,
255- MOVE, COPY.
256-
257- https://github.com/owncloud/ocis/issues/10809
258- https://github.com/owncloud/ocis/pull/11516
259-
260307* Bugfix - Fix storage-users cli: [#11490](https://github.com/owncloud/ocis/pull/11490)
261308
262309 Fix storage-users uploads --resume command.
263310
264311 https://github.com/owncloud/ocis/issues/11290
265312 https://github.com/owncloud/ocis/pull/11490
266313
267- * Bugfix - Clean up unified roles label: [#11494](https://github.com/owncloud/ocis/pull/11494)
268-
269- Clean up the unified roles label
270-
271- https://github.com/owncloud/ocis/issues/11470
272- https://github.com/owncloud/ocis/issues/11254
273- https://github.com/owncloud/ocis/issues/10082
274- https://github.com/owncloud/ocis/pull/11494
275-
276314* Change - Remove deprecated FRONTEND_OCS_*: [#11333](https://github.com/owncloud/ocis/pull/11333)
277315
278316 Deprecated FRONTEND_OCS_* environment variable was removed from config.
@@ -287,32 +325,6 @@ The following sections list the changes for 7.2.0.
287325 https://github.com/owncloud/ocis/issues/11314
288326 https://github.com/owncloud/ocis/pull/11372
289327
290- * Enhancement - Add GetPermission API: [#8616](https://github.com/owncloud/ocis/issues/8616)
291-
292- Graph service: added GET
293- /v1beta1/drives/{driveId}/items/{itemId}/permissions/{permissionId} (and
294- space-root equivalent) so clients can retrieve a single permission instead of
295- listing all.
296-
297- https://github.com/owncloud/ocis/issues/8616
298- https://github.com/owncloud/ocis/pull/11477
299-
300- * Enhancement - Bump importer app: [#10880](https://github.com/owncloud/ocis/pull/10880)
301-
302- The importer app in the ocis_full example has been updated. It's using the
303- upstream Uppy Companion Docker image now.
304-
305- https://github.com/owncloud/ocis/pull/10880
306-
307- * Enhancement - Allow scaling the search service: [#11029](https://github.com/owncloud/ocis/pull/11029)
308-
309- Previously, the search service locked the index for its whole lifetime, so any
310- other search service wouldn't be able to access to the index. With this change,
311- the search service can be configure to lock the index per operation, so other
312- search services can access the index as long as there is no operation ongoing.
313-
314- https://github.com/owncloud/ocis/pull/11029
315-
316328* Enhancement - Update Mockery to 2.52.3: [#11070](https://github.com/owncloud/ocis/pull/11070)
317329
318330 Without updating ocis will not build on go 1.24. This requires also updating the
0 commit comments