Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/calens.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,5 @@ jobs:
email: devops@owncloud.com
name: ownClouders
commit_message: "docs: calens changelog updated"
access_token: ${{ secrets.GH_PAT }}
access_token: ${{ secrets.GH_PAT_2 }}

10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ ownCloud admins and users.
* Bugfix - Conventional commits' action ignores SBOM automatic commits: [#4808](https://github.com/owncloud/android/pull/4808)
* Change - Migrate tests to the new kotlinx-coroutines-test API: [#4710](https://github.com/owncloud/android/issues/4710)
* Change - Increase rating dialog delay: [#4744](https://github.com/owncloud/android/pull/4744)
* Change - Resource leak in CopyAndUploadContentUrisTask: [#4797](https://github.com/owncloud/android/issues/4797)
* Change - Stream handling and double-close in UploadFileFromContentUriWorker: [#4798](https://github.com/owncloud/android/issues/4798)
* Change - Update actions dependencies to be compliant with Node24 requirements: [#4804](https://github.com/owncloud/android/pull/4804)
* Enhancement - Show members of a space: [#4612](https://github.com/owncloud/android/issues/4612)
Expand Down Expand Up @@ -116,6 +117,15 @@ ownCloud admins and users.

https://github.com/owncloud/android/pull/4744

* Change - Resource leak in CopyAndUploadContentUrisTask: [#4797](https://github.com/owncloud/android/issues/4797)

Input and output streams have been closed per URI iteration using
try-with-resources to prevent file descriptor and memory leaks when copying
multiple content URIs.

https://github.com/owncloud/android/issues/4797
https://github.com/owncloud/android/pull/4806

* Change - Stream handling and double-close in UploadFileFromContentUriWorker: [#4798](https://github.com/owncloud/android/issues/4798)

Both the content resolver input stream and the file output stream from
Expand Down
Loading