summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* [tx-robot] updated from transifexNextcloud bot2022-10-1910-4/+18
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Merge pull request #34650 from nextcloud/bugfix/noid/fix-rebuildNavigationJoas Schilling2022-10-1810-129/+20
|\ | | | | Fix rebuild navigation
| * 🤖 RebuildJoas Schilling2022-10-188-12/+12
| | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
| * 🧭 Fix rebuilding the navigationJoas Schilling2022-10-182-117/+8
|/ | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Merge pull request #34614 from nextcloud/bugfix/34441/fix-search-in-regexpSimon L2022-10-183-7/+14
|\ | | | | Fix regexp for unified searching in apps
| * Fix regexp for unified searching in appsVincent Petry2022-10-143-7/+14
| | | | | | | | | | | | | | | | Use the correct match for operators. Prevent the dropdown to close itself when selecting an app to filter by. Signed-off-by: Vincent Petry <vincent@nextcloud.com>
* | Merge pull request #34632 from nextcloud/fix/rate-limit-recovery-emailsCôme Chilliet2022-10-183-11/+27
|\ \ | | | | | | Add rate limiting on lost password emails
| * | Fix LostController testCôme Chilliet2022-10-181-2/+7
| | | | | | | | | | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
| * | Add rate limiting on lost password emailsCôme Chilliet2022-10-182-9/+20
| | | | | | | | | | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
* | | Merge pull request #34625 from nextcloud/fix/filepicker-endtoendCarl Schwan2022-10-185-7/+12
|\ \ \ | |/ / |/| | Fix icon of encrypted folders in filepicker
| * | Fix icon of encrypted folders in filepickerCarl Schwan2022-10-175-7/+12
| | | | | | | | | | | | Signed-off-by: Carl Schwan <carl@carlschwan.eu>
* | | Merge pull request #34628 from nextcloud/fix/files_sharing_psalmCarl Schwan2022-10-1815-96/+28
|\ \ \ | | | | | | | | Various psalm fixes in files_sharing
| * | | Fix various other small psalm issuesCarl Schwan2022-10-178-80/+12
| | | | | | | | | | | | | | | | Signed-off-by: Carl Schwan <carl@carlschwan.eu>
| * | | Fix incorrect argument name in inherited methodCarl Schwan2022-10-171-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | The arguments now need to be the same as in the parent method Signed-off-by: Carl Schwan <carl@carlschwan.eu>
| * | | Fix checkpassword undocummented null parameterCarl Schwan2022-10-173-5/+5
| | | | | | | | | | | | | | | | Signed-off-by: Carl Schwan <carl@carlschwan.eu>
| * | | Fix permission not being intCarl Schwan2022-10-172-5/+5
| | | | | | | | | | | | | | | | Signed-off-by: Carl Schwan <carl@carlschwan.eu>
| * | | Fix exception getCode typeCarl Schwan2022-10-171-2/+2
| | | | | | | | | | | | | | | | Signed-off-by: Carl Schwan <carl@carlschwan.eu>
| * | | Fix type when getting appconfig with intCarl Schwan2022-10-172-2/+2
| |/ / | | | | | | | | | Signed-off-by: Carl Schwan <carl@carlschwan.eu>
* | | Merge pull request #34554 from nextcloud/fix/psalm-twofactor-registryCarl Schwan2022-10-184-26/+7
|\ \ \ | | | | | | | | Fix wrong types in phpdoc for twofactor registry
| * | | Fix the type of the return array in a few more placesCarl Schwan2022-10-183-15/+6
| | | | | | | | | | | | | | | | Signed-off-by: Carl Schwan <carl@carlschwan.eu>
| * | | Fix wrong types in phpdoc for twofactor registryCarl Schwan2022-10-122-11/+1
| | | | | | | | | | | | | | | | Signed-off-by: Carl Schwan <carl@carlschwan.eu>
* | | | Merge pull request #34379 from nextcloud/fix/transactional-session-token-renewalChristoph Wurst2022-10-182-25/+50
|\ \ \ \ | | | | | | | | | | Run session token renewals in a database transaction
| * | | | Run session token renewals in a database transactionChristoph Wurst2022-10-182-25/+50
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The session token renewal does 1) Read the old token 2) Write a new token 3) Delete the old token If two processes succeed to read the old token there can be two new tokens because the queries were not run in a transaction. This is particularly problematic on clustered DBs where 1) would go to a read node and 2) and 3) go to a write node. Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* | | | | Merge pull request #34636 from nextcloud/fix/user-status-dislexiaSimon L2022-10-183-3/+4
|\ \ \ \ \ | | | | | | | | | | | | Fix vertical alignment of user status icon
| * | | | | Make css rule importantCarl Schwan2022-10-183-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Co-authored-by: Joas Schilling <213943+nickvergessen@users.noreply.github.com> Signed-off-by: Carl Schwan <carl@carlschwan.eu> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
| * | | | | Fix vertical alignment of user status iconCarl Schwan2022-10-173-3/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Now it is properly centered even if the font size is bigger (when using the dislexia font) Signed-off-by: Carl Schwan <carl@carlschwan.eu>
* | | | | | Merge pull request #34620 from nextcloud/fix/cleanup-theming-cacheblizzz2022-10-182-1/+78
|\ \ \ \ \ \ | | | | | | | | | | | | | | Add a repair step to cleanup old theming cache
| * | | | | | Add a repair step to cleanup old theming cacheChristopher Ng2022-10-182-1/+78
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Christopher Ng <chrng8@gmail.com>
* | | | | | | Merge pull request #34634 from nextcloud/fix/focus-file-selectionCarl Schwan2022-10-183-5/+5
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Fix unnecessary highlighting of selected element
| * | | | | | | Fix unnecessary highlighting of selected elementCarl Schwan2022-10-173-5/+5
| | |/ / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use focus-visible to only show focus ring on keyboard navigation Fix #34589 Signed-off-by: Carl Schwan <carl@carlschwan.eu>
* | | | | | | Merge pull request #34609 from nextcloud/enh/noid/always-enable-themingblizzz2022-10-183-2/+13
|\ \ \ \ \ \ \ | |_|_|/ / / / |/| | | | | | set theming app to alwaysEnabled
| * | | | | | set theming app to alwaysEnabledszaimen2022-10-173-2/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: szaimen <szaimen@e.mail.de>
* | | | | | | [tx-robot] updated from transifexNextcloud bot2022-10-188-4/+10
| |_|/ / / / |/| | | | | | | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | | | | Merge pull request #34643 from ↵Pytal2022-10-172-9/+9
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | nextcloud/dependabot/npm_and_yarn/exports-loader-4.0.0
| * | | | | | Bump exports-loader from 3.1.0 to 4.0.0dependabot[bot]2022-10-172-9/+9
|/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [exports-loader](https://github.com/webpack-contrib/exports-loader) from 3.1.0 to 4.0.0. - [Release notes](https://github.com/webpack-contrib/exports-loader/releases) - [Changelog](https://github.com/webpack-contrib/exports-loader/blob/master/CHANGELOG.md) - [Commits](https://github.com/webpack-contrib/exports-loader/compare/v3.1.0...v4.0.0) --- updated-dependencies: - dependency-name: exports-loader dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
* | | | | | Merge pull request #33725 from nextcloud/dependabot/npm_and_yarn/webdav-4.11.0Louis2022-10-184-83/+84
|\ \ \ \ \ \ | | | | | | | | | | | | | | Bump webdav from 4.8.0 to 4.11.0
| * | | | | | Bump webdav from 4.8.0 to 4.11.0dependabot[bot]2022-10-174-83/+84
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [webdav](https://github.com/perry-mitchell/webdav-client) from 4.8.0 to 4.11.0. - [Release notes](https://github.com/perry-mitchell/webdav-client/releases) - [Changelog](https://github.com/perry-mitchell/webdav-client/blob/master/CHANGELOG.md) - [Commits](https://github.com/perry-mitchell/webdav-client/compare/v4.8.0...v4.11.0) --- updated-dependencies: - dependency-name: webdav dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
* | | | | | | Merge pull request #34631 from nextcloud/chore/no-automatic-dependabot-rebaseJohn Molakvoæ2022-10-171-0/+2
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | |
| * | | | | | Disable automatic Dependabot rebasesChristoph Wurst2022-10-171-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* | | | | | | Merge pull request #34622 from ↵Louis2022-10-175-62/+26
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | nextcloud/dependabot/npm_and_yarn/jquery-ui-dist-1.13.2 Bump jquery-ui-dist from 1.13.1 to 1.13.2
| * | | | | | | Bump jquery-ui-dist from 1.13.1 to 1.13.2dependabot[bot]2022-10-175-62/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [jquery-ui-dist](https://github.com/jquery/jquery-ui) from 1.13.1 to 1.13.2. - [Release notes](https://github.com/jquery/jquery-ui/releases) - [Commits](https://github.com/jquery/jquery-ui/compare/1.13.1...1.13.2) --- updated-dependencies: - dependency-name: jquery-ui-dist dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
* | | | | | | | Merge pull request #31499 from nextcloud/bugfix/empty-secretCarl Schwan2022-10-175-12/+70
|\ \ \ \ \ \ \ \ | |_|_|_|/ / / / |/| | | | | | | Add fallback routines for empty secret cases
| * | | | | | | Mark method as deprecatedCarl Schwan2022-09-132-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Co-authored-by: Joas Schilling <213943+nickvergessen@users.noreply.github.com> Signed-off-by: Carl Schwan <carl@carlschwan.eu>
| * | | | | | | Fix unit testsCarl Schwan2022-03-101-3/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Carl Schwan <carl@carlschwan.eu>
| * | | | | | | Fix decryption fallback after adding a secretJulius Härtl2022-03-101-5/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
| * | | | | | | Rotate token after fallbackJulius Härtl2022-03-101-2/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
| * | | | | | | Add fallback routines for empty secret casesJulius Härtl2022-03-104-5/+41
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | | | | | | | Merge pull request #34563 from nextcloud/debt/noid/carddav-too-many-argumentsChristoph Wurst2022-10-172-4/+1
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Fix TooManyArguments warning for carddav.php
| * | | | | | | | Fix TooManyArguments warning for carddav.phpDaniel Kesselberg2022-10-162-4/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
* | | | | | | | | Merge pull request #34565 from nextcloud/debt/noid/fakelocker-too-many-argumentsChristoph Wurst2022-10-172-6/+1
|\ \ \ \ \ \ \ \ \ | |_|_|_|/ / / / / |/| | | | | | | | Fix TooManyArguments for FakeLockerPlugin