summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #37353 from nextcloud/release/24.0.11v24.0.11Arthur Schiwon2023-03-231-2/+2
|\ | | | | 24.0.11
| * 24.0.11Arthur Schiwon2023-03-221-2/+2
| | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* | Fix(l10n): ๐Ÿ”  Update translations from TransifexNextcloud bot2023-03-2326-4/+50
|/ | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): ๐Ÿ”  Update translations from TransifexNextcloud bot2023-03-2214-4/+16
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): ๐Ÿ”  Update translations from TransifexNextcloud bot2023-03-2112-2/+18
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): ๐Ÿ”  Update translations from TransifexNextcloud bot2023-03-2014-8/+124
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): ๐Ÿ”  Update translations from TransifexNextcloud bot2023-03-1918-24/+54
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): ๐Ÿ”  Update translations from TransifexNextcloud bot2023-03-1828-2/+68
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): ๐Ÿ”  Update translations from TransifexNextcloud bot2023-03-172-2/+2
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Merge pull request #37204 from nextcloud/release/24.0.11_rc1v24.0.11rc1Arthur Schiwon2023-03-161-2/+2
|\ | | | | 24.0.11 RC1
| * 24.0.11 RC1Arthur Schiwon2023-03-131-2/+2
| | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* | Merge pull request #37250 from nextcloud/backport/37010/stable24MichaIng2023-03-161-5/+6
|\ \ | | | | | | [stable24] Fix Cache-Control header of non-versioned assets
| * | Fix Cache-Control header of non-versioned assetsNicolas Guichard2023-03-151-5/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Non-cache-busted assets such as /dist/core-main.js also matched the regex meant for cache-busted assets (note the ? at the end of the regex). The FilesMatch directive for cache-busted assets coming after the non-cache-busted version all assets actually got the immutable flag in their Cache-Control header. This caused client-side errors on updates. Query strings are not actually passed to FilesMatch directives so we need another way to tell cache-busted/versionned assets apart from non-versioned assets, here using If/Else directives. Signed-off-by: Nicolas Guichard <nicolas@guichard.eu>
* | | Merge pull request #37237 from nextcloud/backport/37227/stable24Arthur Schiwon2023-03-162-6/+117
|\ \ \ | | | | | | | | [stable24] chore: use local variable for remote address
| * | | chore: use local variable for remote addressDaniel Kesselberg2023-03-162-6/+117
|/ / / | | | | | | | | | Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
* | | Merge pull request #37256 from nextcloud/backport/37252/stable24Arthur Schiwon2023-03-161-8/+29
|\ \ \ | | | | | | | | [stable24] fix(workflow): Check tag attribute
| * | | fix(workflow): Check tag attributeJoas Schilling2023-03-161-8/+29
|/ / / | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* / / Fix(l10n): ๐Ÿ”  Update translations from TransifexNextcloud bot2023-03-1630-30/+174
|/ / | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Merge pull request #36750 from nextcloud/backport/36689/stable24Arthur Schiwon2023-03-1512-37/+80
|\ \ | | | | | | [stable24] Change X-Robots-Tag header from "none" to "noindex, nofollow"
| * | Change X-Robots-Tag header from "none" to "noindex, nofollow"MichaIng2023-02-1612-37/+80
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | While "none" is indeed equivalent to "noindex, nofollow" for Google, but seems to be not supported by Bing and probably other search engines. https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meta/name#other_metadata_names https://developers.google.com/search/docs/crawling-indexing/robots-meta-tag?hl=de#comma-separated-list https://www.bing.com/webmasters/help/which-robots-metatags-does-bing-support-5198d240 Signed-off-by: MichaIng <micha@dietpi.com>
* | | Merge pull request #36900 from nextcloud/backport/stable24/36837Arthur Schiwon2023-03-152-7/+14
|\ \ \ | | | | | | | | [stable24] fix(SystemTagManager): Truncate overlong tag names
| * | | fix(SystemTagManager): Truncate overlong tag namesMarcel Klehr2023-02-282-7/+14
| | | | | | | | | | | | | | | | Signed-off-by: Marcel Klehr <mklehr@gmx.net>
* | | | Merge pull request #36743 from nextcloud/backport/35419/stable24Arthur Schiwon2023-03-152-14/+27
|\ \ \ \ | | | | | | | | | | [stable24] Fix login loop if login CSRF fails and user is not logged in
| * | | | Fix login loop if login CSRF fails and user is not logged inChristoph Wurst2023-02-162-14/+27
| | |/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If CSRF fails but the user is logged in that they probably logged in in another tab. This is fine. We can just redirect. If CSRF fails and the user is also not logged in then something is fishy. E.g. because Nextcloud contantly regenrates the session and the CSRF token and the user is stuck in an endless login loop. Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* | | | Merge pull request #35651 from nextcloud/backport/35057/stable24Julien Veyssier2023-03-153-3/+28
|\ \ \ \ | | | | | | | | | | [stable24] Add brute force protection on all methods wrapped by PublicShareMiddleware
| * | | | manual backport of #35057Julien Veyssier2023-03-153-3/+28
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Julien Veyssier <julien-nc@posteo.net>
* | | | | Merge pull request #37226 from nextcloud/backport/37221/stable24Joas Schilling2023-03-159-4/+27
|\ \ \ \ \ | |/ / / / |/| | | | [stable24] Save some CI time
| * | | | Save some CI timeJoas Schilling2023-03-159-4/+27
|/ / / / | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | | Fix(l10n): ๐Ÿ”  Update translations from TransifexNextcloud bot2023-03-1526-106/+206
| | | | | | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | | Merge pull request #37004 from nextcloud/backport/36803/stable24Simon L2023-03-142-1/+29
|\ \ \ \ | | | | | | | | | | [stable24] [db]: Remove not supported column comments for SQLite
| * | | | tests(db): Add test case to ensure column comments workFerdinand Thiessen2023-03-021-0/+24
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Ferdinand Thiessen <rpm@fthiessen.de>
| * | | | fix(DB): Remove not supported column comments when using SQLiteFerdinand Thiessen2023-03-021-1/+5
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Ferdinand Thiessen <rpm@fthiessen.de>
* | | | | Fix(l10n): ๐Ÿ”  Update translations from TransifexNextcloud bot2023-03-148-6/+44
| |_|_|/ |/| | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | | Fix(l10n): ๐Ÿ”  Update translations from TransifexNextcloud bot2023-03-1320-28/+42
| | | | | | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | | Fix(l10n): ๐Ÿ”  Update translations from TransifexNextcloud bot2023-03-128-22/+28
| | | | | | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | | Fix(l10n): ๐Ÿ”  Update translations from TransifexNextcloud bot2023-03-1128-0/+80
| | | | | | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | | Merge pull request #37159 from nextcloud/backport/37070/stable24Simon L2023-03-101-4/+6
|\ \ \ \ | | | | | | | | | | [stable24] add a check for disk_free_space in Config.php
| * | | | add a check for disk_free_space in Config.phpSimon L2023-03-091-4/+6
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Simon L <szaimen@e.mail.de>
* | | | | Fix(l10n): ๐Ÿ”  Update translations from TransifexNextcloud bot2023-03-10104-140/+204
|/ / / / | | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | | Fix(l10n): ๐Ÿ”  Update translations from TransifexNextcloud bot2023-03-09230-284/+500
| | | | | | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | | Fix(l10n): ๐Ÿ”  Update translations from TransifexNextcloud bot2023-03-0840-4/+132
| | | | | | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | | Fix(l10n): ๐Ÿ”  Update translations from TransifexNextcloud bot2023-03-0710-4/+36
| | | | | | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | | Merge pull request #36888 from nextcloud/backport/36781/stable24Julius Hรคrtl2023-03-064-4/+29
|\ \ \ \ | | | | | | | | | | [stable24] fix(CI): Run repair steps against Oracle DB
| * | | | Neutralize action nameJoas Schilling2023-02-281-1/+1
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
| * | | | Fix appconfig compatibility with Oracle DBJoas Schilling2023-02-281-1/+2
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
| * | | | fix(OCC): Don't throw in the repair step for phone validationJoas Schilling2023-02-281-1/+2
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
| * | | | Fail the repair command when an error happenedJoas Schilling2023-02-281-1/+6
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
| * | | | First run unit tests so they don't failJoas Schilling2023-02-281-3/+17
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
| * | | | fix(CI): Run repair steps against Oracle DBJoas Schilling2023-02-281-0/+4
| | |_|/ | |/| | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | | Merge pull request #36586 from nextcloud/backport/36552/stable24Julius Hรคrtl2023-03-062-3/+32
|\ \ \ \ | | | | | | | | | | [stable24] fix(client-login-flow): Handle missing stateToken gracefully