@@ -47,6 +47,7 @@ ownCloud admins and users.
4747* Bugfix - Conventional commits' action ignores SBOM automatic commits: [ #4808 ] ( https://github.com/owncloud/android/pull/4808 )
4848* Change - Migrate tests to the new kotlinx-coroutines-test API: [ #4710 ] ( https://github.com/owncloud/android/issues/4710 )
4949* Change - Increase rating dialog delay: [ #4744 ] ( https://github.com/owncloud/android/pull/4744 )
50+ * Change - Resource leak in CopyAndUploadContentUrisTask: [ #4797 ] ( https://github.com/owncloud/android/issues/4797 )
5051* Change - Stream handling and double-close in UploadFileFromContentUriWorker: [ #4798 ] ( https://github.com/owncloud/android/issues/4798 )
5152* Change - Update actions dependencies to be compliant with Node24 requirements: [ #4804 ] ( https://github.com/owncloud/android/pull/4804 )
5253* Enhancement - Show members of a space: [ #4612 ] ( https://github.com/owncloud/android/issues/4612 )
@@ -56,6 +57,7 @@ ownCloud admins and users.
5657* Enhancement - Remove a space member: [ #4725 ] ( https://github.com/owncloud/android/issues/4725 )
5758* Enhancement - Workflow to build APK: [ #4751 ] ( https://github.com/owncloud/android/pull/4751 )
5859* Enhancement - List links over a space: [ #4752 ] ( https://github.com/owncloud/android/issues/4752 )
60+ * Enhancement - Add a public link over a space: [ #4753 ] ( https://github.com/owncloud/android/issues/4753 )
5961* Enhancement - Copy permanent link of a space: [ #4758 ] ( https://github.com/owncloud/android/issues/4758 )
6062* Enhancement - Workflow to check Conventional Commits: [ #4759 ] ( https://github.com/owncloud/android/pull/4759 )
6163* Enhancement - QA Content Provider: [ #4776 ] ( https://github.com/owncloud/android/pull/4776 )
@@ -116,6 +118,15 @@ ownCloud admins and users.
116118
117119 https://github.com/owncloud/android/pull/4744
118120
121+ * Change - Resource leak in CopyAndUploadContentUrisTask: [ #4797 ] ( https://github.com/owncloud/android/issues/4797 )
122+
123+ Input and output streams have been closed per URI iteration using
124+ try-with-resources to prevent file descriptor and memory leaks when copying
125+ multiple content URIs.
126+
127+ https://github.com/owncloud/android/issues/4797
128+ https://github.com/owncloud/android/pull/4806
129+
119130* Change - Stream handling and double-close in UploadFileFromContentUriWorker: [ #4798 ] ( https://github.com/owncloud/android/issues/4798 )
120131
121132 Both the content resolver input stream and the file output stream from
@@ -200,6 +211,14 @@ ownCloud admins and users.
200211 https://github.com/owncloud/android/issues/4752
201212 https://github.com/owncloud/android/pull/4783
202213
214+ * Enhancement - Add a public link over a space: [ #4753 ] ( https://github.com/owncloud/android/issues/4753 )
215+
216+ A new option to add public links over a space has been added. It will be only
217+ visible for users with proper permissions.
218+
219+ https://github.com/owncloud/android/issues/4753
220+ https://github.com/owncloud/android/pull/4794
221+
203222* Enhancement - Copy permanent link of a space: [ #4758 ] ( https://github.com/owncloud/android/issues/4758 )
204223
205224 A new option to copy and share the permanent link of a space has been added next
0 commit comments