@@ -47,15 +47,18 @@ 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 )
53+ * Change - Actions with SHA commits instead of versions: [ #4815 ] ( https://github.com/owncloud/android/pull/4815 )
5254* Enhancement - Show members of a space: [ #4612 ] ( https://github.com/owncloud/android/issues/4612 )
5355* Enhancement - Add a member to a space: [ #4613 ] ( https://github.com/owncloud/android/issues/4613 )
5456* Enhancement - Set emoji as space image: [ #4707 ] ( https://github.com/owncloud/android/issues/4707 )
5557* Enhancement - Edit a space member: [ #4724 ] ( https://github.com/owncloud/android/issues/4724 )
5658* Enhancement - Remove a space member: [ #4725 ] ( https://github.com/owncloud/android/issues/4725 )
5759* Enhancement - Workflow to build APK: [ #4751 ] ( https://github.com/owncloud/android/pull/4751 )
5860* Enhancement - List links over a space: [ #4752 ] ( https://github.com/owncloud/android/issues/4752 )
61+ * Enhancement - Add a public link over a space: [ #4753 ] ( https://github.com/owncloud/android/issues/4753 )
5962* Enhancement - Copy permanent link of a space: [ #4758 ] ( https://github.com/owncloud/android/issues/4758 )
6063* Enhancement - Workflow to check Conventional Commits: [ #4759 ] ( https://github.com/owncloud/android/pull/4759 )
6164* Enhancement - QA Content Provider: [ #4776 ] ( https://github.com/owncloud/android/pull/4776 )
@@ -116,6 +119,15 @@ ownCloud admins and users.
116119
117120 https://github.com/owncloud/android/pull/4744
118121
122+ * Change - Resource leak in CopyAndUploadContentUrisTask: [ #4797 ] ( https://github.com/owncloud/android/issues/4797 )
123+
124+ Input and output streams have been closed per URI iteration using
125+ try-with-resources to prevent file descriptor and memory leaks when copying
126+ multiple content URIs.
127+
128+ https://github.com/owncloud/android/issues/4797
129+ https://github.com/owncloud/android/pull/4806
130+
119131* Change - Stream handling and double-close in UploadFileFromContentUriWorker: [ #4798 ] ( https://github.com/owncloud/android/issues/4798 )
120132
121133 Both the content resolver input stream and the file output stream from
@@ -132,6 +144,13 @@ ownCloud admins and users.
132144
133145 https://github.com/owncloud/android/pull/4804
134146
147+ * Change - Actions with SHA commits instead of versions: [ #4815 ] ( https://github.com/owncloud/android/pull/4815 )
148+
149+ Commit SHA references have been added to GitHub Actions workflows to be
150+ compliant with new security policies
151+
152+ https://github.com/owncloud/android/pull/4815
153+
135154* Enhancement - Show members of a space: [ #4612 ] ( https://github.com/owncloud/android/issues/4612 )
136155
137156 A new option to view all members of a space has been added to the bottom sheet,
@@ -200,6 +219,14 @@ ownCloud admins and users.
200219 https://github.com/owncloud/android/issues/4752
201220 https://github.com/owncloud/android/pull/4783
202221
222+ * Enhancement - Add a public link over a space: [ #4753 ] ( https://github.com/owncloud/android/issues/4753 )
223+
224+ A new option to add public links over a space has been added. It will be only
225+ visible for users with proper permissions.
226+
227+ https://github.com/owncloud/android/issues/4753
228+ https://github.com/owncloud/android/pull/4794
229+
203230* Enhancement - Copy permanent link of a space: [ #4758 ] ( https://github.com/owncloud/android/issues/4758 )
204231
205232 A new option to copy and share the permanent link of a space has been added next
0 commit comments