ok
Direktori : /proc/thread-self/root/var/softaculous/owncloud/ |
Current File : //proc/thread-self/root/var/softaculous/owncloud/changelog.txt |
[10.14.0]: https://github.com/owncloud/core/compare/v10.13.4...v10.14.0 ## Summary * Bugfix - Validate comment verb length: [#40965](https://github.com/owncloud/core/pull/40965) * Bugfix - Log.conditions with `shared_secret` shall not break file uploads: [#41044](https://github.com/owncloud/core/pull/41044) * Bugfix - Create previews from first page: [#41045](https://github.com/owncloud/core/pull/41045) * Bugfix - CalDAV query where the time range is not given: [#41050](https://github.com/owncloud/core/pull/41050) * Bugfix - Store user information in explicit variable: [#41054](https://github.com/owncloud/core/pull/41054) * Bugfix - Fix expiration date and eliminate duplicate entries in file list: [#41056](https://github.com/owncloud/core/pull/41056) * Bugfix - LDAP groups will be properly applied to external storages: [#41063](https://github.com/owncloud/core/pull/41063) * Bugfix - Disallow browsers to translate the frontend: [#41067](https://github.com/owncloud/core/pull/41067) * Bugfix - Limit performance impact when version meta data is enabled: [#41069](https://github.com/owncloud/core/pull/41069) * Bugfix - Proper error handling when deleting users or groups: [#41077](https://github.com/owncloud/core/pull/41077) * Bugfix - Account terms can be removed if they differ with the ones stored: [#41120](https://github.com/owncloud/core/pull/41120) * Bugfix - "user:list -a" occ command now correctly displays user's creation time: [#41125](https://github.com/owncloud/core/pull/41125) * Bugfix - Fix log exceptions for mp3 preview: [#41153](https://github.com/owncloud/core/pull/41153) * Bugfix - Set oc_file_locks.id to bigint: [#41158](https://github.com/owncloud/core/pull/41158) * Bugfix - Add compatibility to richdocuments.document.index route: [#41161](https://github.com/owncloud/core/pull/41161) * Bugfix - Sanitize title in dialogs: [#41166](https://github.com/owncloud/core/pull/41166) * Bugfix - Decommission of templateeditor app: [#41168](https://github.com/owncloud/core/pull/41168) * Bugfix - Input validation when setting the displayname of a user or self: [#41172](https://github.com/owncloud/core/pull/41172) * Bugfix - Image dimension validation on avatar upload and preview generation: [#41175](https://github.com/owncloud/core/pull/41175) * Change - No activities on rejected shares: [#41078](https://github.com/owncloud/core/pull/41078) * Change - Update PHP dependencies: [#41033](https://github.com/owncloud/core/pull/41033) * Enhancement - Replace the isAdmin implementation: [#41171](https://github.com/owncloud/core/pull/41171) ## Details * Bugfix - Validate comment verb length: [#40965](https://github.com/owncloud/core/pull/40965) User input validation of comment verb https://github.com/owncloud/core/pull/40965 * Bugfix - Log.conditions with `shared_secret` shall not break file uploads: [#41044](https://github.com/owncloud/core/pull/41044) Any file upload (or PUT request in general) could cause a 500/Internal Server Error due to wrong usage of the request object. This is now fixed. https://github.com/owncloud/core/pull/41044 * Bugfix - Create previews from first page: [#41045](https://github.com/owncloud/core/pull/41045) On multi-page documents (doc, odt, pdf etc) the preview will now be generated from the first page and no longer from the last page. https://github.com/owncloud/core/pull/41045 * Bugfix - CalDAV query where the time range is not given: [#41050](https://github.com/owncloud/core/pull/41050) Outlook CalDAV plugin is sending `false` as time range which no longer results in a crash. https://github.com/owncloud/core/issues/39922 https://github.com/owncloud/core/pull/41050 * Bugfix - Store user information in explicit variable: [#41054](https://github.com/owncloud/core/pull/41054) Before user information was stored in the browser global object. In some rare cases browsers seem to loose data stored in the global object. This is fixed now. https://github.com/owncloud/enterprise/issues/5873 https://github.com/owncloud/core/pull/41054 * Bugfix - Fix expiration date and eliminate duplicate entries in file list: [#41056](https://github.com/owncloud/core/pull/41056) We've addressed two visual issues in the web ui file list. Firstly, the problem where the start of the epoch was mistakenly displayed as an expiration date in the shared file list has been resolved. Secondly, we've tackled the pesky bug causing duplicate entries to appear when switching between shared tabs and clicking on a file list entry. https://github.com/owncloud/core/pull/41056 * Bugfix - LDAP groups will be properly applied to external storages: [#41063](https://github.com/owncloud/core/pull/41063) The admin can setup external storages to be used by specific users and groups. When a LDAP group was setup, there were some issues so users belonging to that group weren't able to access the external storage even though they should. Now, users belonging to LDAP groups can access external storages configured to be accessed by those groups. https://github.com/owncloud/core/pull/41063 * Bugfix - Disallow browsers to translate the frontend: [#41067](https://github.com/owncloud/core/pull/41067) Web frontend offers a lot of proper translations. Browser capabilities are not needed. https://github.com/owncloud/core/issues/39946 https://github.com/owncloud/core/pull/41067 * Bugfix - Limit performance impact when version meta data is enabled: [#41069](https://github.com/owncloud/core/pull/41069) Negative performance impact when `file_storage.save_version_metadata` is enabled has been removed. https://github.com/owncloud/core/pull/41069 * Bugfix - Proper error handling when deleting users or groups: [#41077](https://github.com/owncloud/core/pull/41077) https://github.com/owncloud/core/pull/41077 https://github.com/owncloud/core/pull/41075 * Bugfix - Account terms can be removed if they differ with the ones stored: [#41120](https://github.com/owncloud/core/pull/41120) Search terms for the account can now be removed from the DB if they differ with the ones stored in the DB. This can happen with the user_ldap app, when user search attributes are removed from the connection configuration in the LDAP wizard. https://github.com/owncloud/core/pull/41120 * Bugfix - "user:list -a" occ command now correctly displays user's creation time: [#41125](https://github.com/owncloud/core/pull/41125) Previously, the "user:list -a" occ command was not correctly returning the user's creation time but rather the path to the user's home directory. This has been now fixed. https://github.com/owncloud/core/pull/41125 * Bugfix - Fix log exceptions for mp3 preview: [#41153](https://github.com/owncloud/core/pull/41153) This change fixes log exceptions when previews for mp3 files are being created https://github.com/owncloud/core/pull/41153 * Bugfix - Set oc_file_locks.id to bigint: [#41158](https://github.com/owncloud/core/pull/41158) https://github.com/owncloud/core/pull/41158 * Bugfix - Add compatibility to richdocuments.document.index route: [#41161](https://github.com/owncloud/core/pull/41161) https://github.com/owncloud/core/pull/41161 * Bugfix - Sanitize title in dialogs: [#41166](https://github.com/owncloud/core/pull/41166) https://github.com/owncloud/core/pull/41166 * Bugfix - Decommission of templateeditor app: [#41168](https://github.com/owncloud/core/pull/41168) https://github.com/owncloud/core/pull/41168 * Bugfix - Input validation when setting the displayname of a user or self: [#41172](https://github.com/owncloud/core/pull/41172) https://github.com/owncloud/core/pull/41172 * Bugfix - Image dimension validation on avatar upload and preview generation: [#41175](https://github.com/owncloud/core/pull/41175) https://github.com/owncloud/core/pull/41175 https://github.com/owncloud/core/pull/41193 * Change - No activities on rejected shares: [#41078](https://github.com/owncloud/core/pull/41078) As soon as a user has rejected a share no activities within this share are reported via the activity app. https://github.com/owncloud/core/pull/41078 * Change - Update PHP dependencies: [#41033](https://github.com/owncloud/core/pull/41033) The following have been updated: - deepdiver/zipstreamer (2.0.0 to v2.0.2) - doctrine/deprecations (1.1.2 to 1.1.3) - doctrine/lexer (2.1.0 to 2.1.1) - firebase/php-jwt (6.8.1 to 6.10.0) - google/apiclient (v2.15.1 to v2.15.3) - google/apiclient-services (v0.319.0 to v0.335.0) - google/auth (v1.31.0 to v1.35.0) - guzzlehttp/guzzle (7.8.0 to 7.8.1) - laravel/serializable-closure (v1.3.1 to v1.3.3) - league/mime-type-detection (1.13.0 to 1.15.0) - monolog/monolog (2.9.1 to 2.9.2) - phpseclib/phpseclib (3.0.33 to 3.0.35) - sabre/dav (4.4.0 to 4.6.0) - sabre/vobject (4.5.3 to 4.5.4) - symfony/console (5.4.28 to 5.4.35) - symfony/event-dispatcher (5.4.26 to 5.4.35) - symfony/polyfill-php80 (v1.28.0 to v1.29.0) - symfony/process (5.4.28 to 5.4.35) - symfony/routing (5.4.26 to 5.4.35) - symfony/string (5.4.29 to 5.4.35) - symfony/translation (5.4.24 to 5.4.35) https://github.com/owncloud/core/pull/41033 https://github.com/owncloud/core/pull/41071 https://github.com/owncloud/core/pull/41081 https://github.com/owncloud/core/pull/41097 https://github.com/owncloud/core/pull/41101 https://github.com/owncloud/core/pull/41102 https://github.com/owncloud/core/pull/41121 https://github.com/owncloud/core/pull/41126 https://github.com/owncloud/core/pull/41130 https://github.com/owncloud/core/pull/41132 https://github.com/owncloud/core/pull/41133 https://github.com/owncloud/core/pull/41139 https://github.com/owncloud/core/pull/41151 https://github.com/owncloud/core/pull/41152 https://github.com/owncloud/core/pull/41155 https://github.com/owncloud/core/pull/41173 https://github.com/owncloud/core/pull/41182 * Enhancement - Replace the isAdmin implementation: [#41171](https://github.com/owncloud/core/pull/41171) Instead of asking the backends for the groups an user belongs to, we now get the admin group and list the members to detect if user is admin or not https://github.com/owncloud/core/pull/41171 Changelog for ownCloud Core [10.13.4] (2023-12-13) ======================================= The following sections list the changes in ownCloud core 10.13.4 relevant to ownCloud admins and users. [10.13.4]: https://github.com/owncloud/core/compare/v10.13.3...v10.13.4 Summary ------- * Bugfix - Check 2FA on controllers which are accessible publicly and authenticated: [#41123](https://github.com/owncloud/core/pull/41123) * Change - Display IoC-Scanner Prompt: [#41137](https://github.com/owncloud/core/pull/41137) Details ------- * Bugfix - Check 2FA on controllers which are accessible publicly and authenticated: [#41123](https://github.com/owncloud/core/pull/41123) https://github.com/owncloud/core/pull/41123 * Change - Display IoC-Scanner Prompt: [#41137](https://github.com/owncloud/core/pull/41137) Prompt the admins of licensed instances to run the IoC-Scanner. The prompt appears in the admin menu and after an upgrade on the CLI. https://github.com/owncloud/core/pull/41137